github.com/koderover/helm@v2.17.0+incompatible/docs/helm/helm_dependency_update.md (about) 1 ## helm dependency update 2 3 Update charts/ based on the contents of requirements.yaml 4 5 ### Synopsis 6 7 8 Update the on-disk dependencies to mirror the requirements.yaml file. 9 10 This command verifies that the required charts, as expressed in 'requirements.yaml', 11 are present in 'charts/' and are at an acceptable version. It will pull down 12 the latest charts that satisfy the dependencies, and clean up old dependencies. 13 14 On successful update, this will generate a lock file that can be used to 15 rebuild the requirements to an exact version. 16 17 Dependencies are not required to be represented in 'requirements.yaml'. For that 18 reason, an update command will not remove charts unless they are (a) present 19 in the requirements.yaml file, but (b) at the wrong version. 20 21 22 ``` 23 helm dependency update [flags] CHART 24 ``` 25 26 ### Options 27 28 ``` 29 -h, --help help for update 30 --keyring string Keyring containing public keys (default "~/.gnupg/pubring.gpg") 31 --skip-refresh Do not refresh the local repository cache 32 --verify Verify the packages against signatures 33 ``` 34 35 ### Options inherited from parent commands 36 37 ``` 38 --debug Enable verbose output 39 --home string Location of your Helm config. Overrides $HELM_HOME (default "~/.helm") 40 --host string Address of Tiller. Overrides $HELM_HOST 41 --kube-context string Name of the kubeconfig context to use 42 --kubeconfig string Absolute path of the kubeconfig file to be used 43 --tiller-connection-timeout int The duration (in seconds) Helm will wait to establish a connection to Tiller (default 300) 44 --tiller-namespace string Namespace of Tiller (default "kube-system") 45 ``` 46 47 ### SEE ALSO 48 49 * [helm dependency](helm_dependency.md) - Manage a chart's dependencies 50 51 ###### Auto generated by spf13/cobra on 16-May-2019