Skip to content

Commit

Permalink
docs: add helm values declarative syntax (argoproj#13661)
Browse files Browse the repository at this point in the history
The Helm section of the user guide is missing an example of using `source.helm.values`.

Signed-off-by: Nicholas Morey <nicholas@morey.tech>
  • Loading branch information
morey-tech authored and xiaowu.zhu committed Aug 9, 2023
1 parent d9e992f commit faf21e3
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions docs/user-guide/helm.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,29 @@ source:
- values-production.yaml
```

## Values

Argo CD supports the equivalent of a values file directly in the Application manifest using the `source.helm.values` key.

```
source:
helm:
values: |
ingress:
enabled: true
path: /
hosts:
- mydomain.example.com
annotations:
kubernetes.io/ingress.class: nginx
kubernetes.io/tls-acme: "true"
labels: {}
tls:
- secretName: mydomain-tls
hosts:
- mydomain.example.com
```
## Helm Parameters
Helm has the ability to set parameter values, which override any values in
Expand Down

0 comments on commit faf21e3

Please sign in to comment.