From 15e09f79f9ee897a5efa72779db23f7c57417416 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Didrik=20Finn=C3=B8y?= Date: Fri, 1 Jul 2022 07:03:32 +0200 Subject: [PATCH] Removed unnecessary command flag from example. Minor text edits. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Didrik Finnøy --- docs/user-guide/kustomize.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/user-guide/kustomize.md b/docs/user-guide/kustomize.md index f8f220827bfd2..cecfc4b89eb10 100644 --- a/docs/user-guide/kustomize.md +++ b/docs/user-guide/kustomize.md @@ -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 @@ -101,6 +101,6 @@ metadata: name: argocd-cm namespace: argocd data: - kustomize.buildOptions: --load-restrictor LoadRestrictionsNone --enable-helm + kustomize.buildOptions: --enable-helm ```