Helm dependency: Difference between revisions
Jump to navigation
Jump to search
Line 16: | Line 16: | ||
helm dep up | helm dep up | ||
When this command retrieves charts, it will store them as chart archives in the [[Helm_Concepts#charts.2F_Directory|charts/]] directory of the dependent chart. | When this command retrieves charts, it will store them as chart archives in the [[Helm_Concepts#charts.2F_Directory|charts/]] directory of the dependent chart: | ||
<syntaxhighlight lang='text'> | |||
helm dependency update postgresql-dynamic-dependency/ | |||
Hang tight while we grab the latest from your chart repositories... | |||
...Unable to get an update from the "local" chart repository (http://127.0.0.1:8879/charts): | |||
Get http://127.0.0.1:8879/charts/index.yaml: dial tcp 127.0.0.1:8879: connect: connection refused | |||
...Successfully got an update from the "incubator" chart repository | |||
...Successfully got an update from the "stable" chart repository | |||
Update Complete. | |||
Saving 1 charts | |||
Downloading postgresql from repo https://kubernetes-charts.storage.googleapis.com | |||
Deleting outdated charts | |||
</syntaxhighlight> |
Revision as of 04:17, 31 August 2019
External
Internal
Overview
Dependency Update
helm dependency update
helm dep up
When this command retrieves charts, it will store them as chart archives in the charts/ directory of the dependent chart:
helm dependency update postgresql-dynamic-dependency/
Hang tight while we grab the latest from your chart repositories...
...Unable to get an update from the "local" chart repository (http://127.0.0.1:8879/charts):
Get http://127.0.0.1:8879/charts/index.yaml: dial tcp 127.0.0.1:8879: connect: connection refused
...Successfully got an update from the "incubator" chart repository
...Successfully got an update from the "stable" chart repository
Update Complete.
Saving 1 charts
Downloading postgresql from repo https://kubernetes-charts.storage.googleapis.com
Deleting outdated charts