Skip to content

Added helm remote repo example #5640

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Apr 7, 2021
20 changes: 20 additions & 0 deletions integration/examples/helm-remote-repo/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
### 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.


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

This is the equivalent of the following on helm CLI:

```bash
helm repo add bitnami https://charts.bitnami.com/bitnami
helm install redis-release bitnami/redis
```
8 changes: 8 additions & 0 deletions integration/examples/helm-remote-repo/skaffold.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
apiVersion: skaffold/v2beta13
kind: Config
deploy:
helm:
releases:
- name: redis-release
repo: https://charts.bitnami.com/bitnami
remoteChart: redis