argocd-example-apps/plugins/kustomized-helm
jannfis 5c2d89b897 Use apps/v1 API for Deployment resources (#38) 2019-09-27 10:58:45 -07:00
..
overlays Use apps/v1 API for Deployment resources (#38) 2019-09-27 10:58:45 -07:00
.gitignore Add config template plugin examples (#7) 2019-02-25 14:19:08 -08:00
Chart.yaml Add config template plugin examples (#7) 2019-02-25 14:19:08 -08:00
README.md Fix init command in Helm + Kustomize example (#15) 2019-03-11 08:47:04 -07:00
kustomization.yaml Add config template plugin examples (#7) 2019-02-25 14:19:08 -08:00
requirements.yaml Add config template plugin examples (#7) 2019-02-25 14:19:08 -08:00

README.md

Helm + Kustomize

Sometimes Helm chart don't have all required parameters and additional customization is required. This example application demonstrates how to combine Helm and Kustomize and use it as a config management plugin in Argo CD.

Use following steps to try the application:

  • configure kustomized-helm tool in argocd-cm ConfigMap:
  configManagementPlugins: |
    - name: kustomized-helm
      init:
        command: ["/bin/sh", "-c"]
        args: ["helm init --client-only && helm dependency build"]
      generate:
        command: [sh, -c]
        args: ["helm template . > all.yaml && kustomize build"]    
  • create application using kustomized-helm as a config management plugin name:
argocd app create kustomized-helm \
    --config-management-plugin kustomized-helm \
    --repo https://github.com/argoproj/argocd-example-apps \
    --path plugins/kustomized-helm \
    --dest-server https://kubernetes.default.svc \
    --dest-namespace default