# atmos helm values

Print the final values for one native Helm component as formatted YAML. The
output includes inherited stack values, component values\_files,
inline values, and any invocation-only Helm value overrides.

## Usage

```shell
atmos helm values <component> --stack <stack> [options]

# Show stack-resolved values.
atmos helm values monitoring -s plat-ue2-dev

# Inspect the exact values used by a preview or deployment.
atmos helm values monitoring -s plat-ue2-dev \
  -f incident-values.yaml \
  --set image.tag=2026.09.09
```

Values are written as masked YAML to stdout, making the command suitable for
inspection or piping into a YAML-aware tool. It does not contact Kubernetes,
resolve chart repositories, or modify component configuration.

## Flags

- **`--stack`, `-s` (required)**
  Atmos stack.
- **`-f` / `--values`, `--set`, `--set-string`, `--set-file`, `--set-json`, `--set-literal` (optional)**
  Repeatable Helm-compatible value overrides. They affect only this invocation. See 
  runtime value overrides
   for precedence.
