argocd-example-apps/helm-dependency
Jesse Suen 58594acf36
Add helm-dependency example demonstrating customization of OTS chart
2018-12-29 17:23:04 -08:00
..
Chart.yaml Add helm-dependency example demonstrating customization of OTS chart 2018-12-29 17:23:04 -08:00
README.md Add helm-dependency example demonstrating customization of OTS chart 2018-12-29 17:23:04 -08:00
requirements.yaml Add helm-dependency example demonstrating customization of OTS chart 2018-12-29 17:23:04 -08:00
values.yaml Add helm-dependency example demonstrating customization of OTS chart 2018-12-29 17:23:04 -08:00

README.md

Helm Dependencies

This example application demonstrates how an OTS (off-the-shelf) helm chart can be retrieved and pinned to a specific helm sem version from an upstream helm repository, and customized using a custom values.yaml in the private git repository.

In this example, the wordpress application is pulled from the stable helm repo, and pinned to v5.0.2:

dependencies:
- name: wordpress
  version: 5.0.2
  repository: https://kubernetes-charts.storage.googleapis.com

A custom values.yaml is used to customize the parameters of the wordpress helm chart:

wordpress:
  wordpressPassword: foo
  mariadb:
    db:
      password: bar
    rootUser:
      password: baz