Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add declarative syntax examples for helm #10764

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
19 changes: 19 additions & 0 deletions docs/user-guide/helm.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,15 @@ argocd app set helm-guestbook --values values-production.yaml
location in which case it can be accessed using a relative path relative to the root directory of
the Helm chart.

In the declarative syntax:

```yaml
source:
helm:
valueFiles:
- values-production.yaml
```

## Helm Parameters

Helm has the ability to set parameter values, which override any values in
Expand All @@ -53,6 +62,16 @@ in the form of `-p PARAM=VALUE`. For example:
argocd app set helm-guestbook -p service.type=LoadBalancer
```

In the declarative syntax:

```yaml
source:
helm:
parameters:
- name: "service.type"
value: LoadBalancer
```

## Helm Release Name

By default, the Helm release name is equal to the Application name to which it belongs. Sometimes, especially on a centralised ArgoCD,
Expand Down