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

     1  ### Example: deploy helm charts with local dependencies
     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-deployment-dependencies)
     4  
     5  This example follows the [helm](../helm-deployment) example, but with a local chart as a dependency.
     6  
     7  The `skipBuildDependencies` option is used to skip the `helm dep build` command. This must be disabled for charts with local dependencies.
     8  
     9  The image can be passed to the subchart using the standard Helm format of `subchart-name.value`.
    10  
    11  ```yaml
    12  deploy:
    13    helm:
    14      releases:
    15      - name: skaffold-helm
    16        chartPath: skaffold-helm
    17        namespace: skaffold
    18        skipBuildDependencies: true # Skip helm dep build
    19        artifactOverrides :
    20          image: skaffold-helm
    21          "subchart.image": skaffold-helm # Set image for subchart
    22        valuesFiles:
    23          - helm-values-file.yaml
    24  ```