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