Browse Source

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

pull/19/head
Alexander Matyushentsev 6 years ago
committed by GitHub
parent
commit
826b3fa710
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      plugins/kustomized-helm/README.md

3
plugins/kustomized-helm/README.md

@ -11,7 +11,8 @@ Use following steps to try the application:
configManagementPlugins: | configManagementPlugins: |
- name: kustomized-helm - name: kustomized-helm
init: init:
command: [helm, dependency, build] command: ["/bin/sh", "-c"]
args: ["helm init --client-only && helm dependency build"]
generate: generate:
command: [sh, -c] command: [sh, -c]
args: ["helm template . > all.yaml && kustomize build"] args: ["helm template . > all.yaml && kustomize build"]

Loading…
Cancel
Save