Skip to content

Commit

Permalink
Removed unnecessary command flag from example. Minor text edits.
Browse files Browse the repository at this point in the history
Signed-off-by: Didrik Finnøy <djfinnoy@protonmail.com>
  • Loading branch information
djfinnoy committed Jul 1, 2022
1 parent 5919867 commit 15e09f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/user-guide/kustomize.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ It's possible to [render Helm charts with Kustomize](https://github.com/kubernet
Doing so requires that you pass the `--enable-helm` flag to the `kustomize build` command.
This flag is not part of the Kustomize options within ArgoCD.
If you would like to render Helm charts through Kustomize in an ArgoCD application, you have two options:
You can either create a [custom plugin](https://argo-cd.readthedocs.io/en/stable/user-guide/config-management-plugins/), or modify the `argocd-cm` configmap, activating the `--enable-helm` flag globally for all Kustomize applications:
You can either create a [custom plugin](https://argo-cd.readthedocs.io/en/stable/user-guide/config-management-plugins/), or modify the `argocd-cm` ConfigMap to include the `--enable-helm` flag globally for all Kustomize applications:

```
apiVersion: v1
Expand All @@ -101,6 +101,6 @@ metadata:
name: argocd-cm
namespace: argocd
data:
kustomize.buildOptions: --load-restrictor LoadRestrictionsNone --enable-helm
kustomize.buildOptions: --enable-helm
```

0 comments on commit 15e09f7

Please sign in to comment.