浏览代码

Fix init command in Helm + Kustomize example (#15)

Alexander Matyushentsev 6 年之前
父节点
当前提交
826b3fa710
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      plugins/kustomized-helm/README.md

+ 2 - 1
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"]