Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 494 Bytes

File metadata and controls

20 lines (15 loc) · 494 Bytes

Example: deploy remote helm chart

This example shows how to deploy a remote helm chart from a remote repo. This can be helpfulf or consuming other helm packages as part of your app.

deploy:
  helm:
    releases:
    - name: redis-release
      repo: https://charts.bitnami.com/bitnami 
      remoteChart: redis

This is the equivalent of the following on helm CLI:

helm repo add bitnami https://charts.bitnami.com/bitnami
helm install redis-release bitnami/redis