github.com/GoogleContainerTools/skaffold@v1.39.18/examples/helm-remote-repo/README.md (about)

     1  ### Example: deploy remote helm chart
     2  
     3  [![Open in Cloud Shell](https://gstatic.com/cloudssh/images/open-btn.svg)](https://ssh.cloud.google.com/cloudshell/editor?cloudshell_git_repo=https://github.com/GoogleContainerTools/skaffold&cloudshell_open_in_editor=README.md&cloudshell_workspace=examples/helm-remote-repo)
     4  
     5  This example shows how to deploy a remote helm chart from a remote repo. This can be helpful for consuming other helm packages as part of your app.
     6  
     7  
     8  ```yaml
     9  deploy:
    10    helm:
    11      releases:
    12      - name: redis-release
    13        repo: https://charts.bitnami.com/bitnami 
    14        remoteChart: redis
    15  ```
    16  
    17  This is the equivalent of the following on helm CLI:
    18  
    19  ```bash
    20  helm repo add bitnami https://charts.bitnami.com/bitnami
    21  helm install redis-release bitnami/redis
    22  ```