From a12c7e37d149e8e2841242538fc8bf81bcad518d Mon Sep 17 00:00:00 2001 From: John Win Date: Fri, 2 Sep 2022 09:30:36 -0700 Subject: [PATCH] Updating example args in README.md Updating the `helm template` command with a more complete example. This command more resembles the helm command that is executed by the built-in helm tooling. Signed-off-by: John Win --- plugins/kustomized-helm/README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/plugins/kustomized-helm/README.md b/plugins/kustomized-helm/README.md index e93b202..342cca8 100644 --- a/plugins/kustomized-helm/README.md +++ b/plugins/kustomized-helm/README.md @@ -14,10 +14,14 @@ Use following steps to try the application: command: ["/bin/sh", "-c"] args: ["helm dependency build"] generate: - command: [sh, -c] - args: ["helm template --release-name release-name . > all.yaml && kustomize build"] + command: ["/bin/sh", "-c"] + args: ["helm template . --name-template $ARGOCD_APP_NAME --namespace $ARGOCD_APP_NAMESPACE --kube-version $KUBE_VERSION > all.yaml && kustomize build"] ``` +Notes: +- `$ARGOCD_APP_NAME`, `$ARGOCD_APP_NAMESPACE` and `$KUBE_VERSION` are environment variables that exists in the context of the plugin. +- setting `--kube-version` is important as helm template can mock up data which may not match the actual cluster version. + * create application using `kustomized-helm` as a config management plugin name: