github.com/GoogleContainerTools/skaffold/v2@v2.13.2/examples/helm-deployment-dependencies/README.md (about) 1 ### Example: deploy helm charts with local dependencies 2 3 [](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 ```yaml 10 deploy: 11 helm: 12 releases: 13 - name: skaffold-helm 14 chartPath: skaffold-helm 15 namespace: skaffold 16 skipBuildDependencies: true # Skip helm dep build 17 valuesFiles: 18 - helm-values-file.yaml 19 ```