From 826b3fa710e76b20ea16ff55228ed84ac4d996c7 Mon Sep 17 00:00:00 2001 From: Alexander Matyushentsev Date: Mon, 11 Mar 2019 08:47:04 -0700 Subject: [PATCH] Fix init command in Helm + Kustomize example (#15) --- plugins/kustomized-helm/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/kustomized-helm/README.md b/plugins/kustomized-helm/README.md index dbfe9a9..ddc7505 100644 --- a/plugins/kustomized-helm/README.md +++ b/plugins/kustomized-helm/README.md @@ -11,7 +11,8 @@ Use following steps to try the application: configManagementPlugins: | - name: kustomized-helm init: - command: [helm, dependency, build] + command: ["/bin/sh", "-c"] + args: ["helm init --client-only && helm dependency build"] generate: command: [sh, -c] args: ["helm template . > all.yaml && kustomize build"]