Helm pull: Difference between revisions
Jump to navigation
Jump to search
m (Ovidiu moved page Helm fetch to Helm pull without leaving a redirect) |
|||
(8 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
=External= | =External= | ||
=Internal= | =Internal= | ||
* [[Helm Operations# | * [[Helm Operations#pull|Helm Operations]] | ||
* [[Helm Concepts#Dependency_Operations|Helm Concepts]] | * [[Helm Concepts#Dependency_Operations|Helm Concepts]] | ||
=Overview= | =Overview= | ||
Used to retrieve individual chart archives and store them on the local filesystem. | |||
For locally added repository: | |||
<syntaxhighlight lang='bash'> | |||
helm pull stable/postgresql | |||
helm pull yunikorn/yunikorn --version 1.4.0 | |||
</syntaxhighlight> | |||
For a remote chart URL: | |||
<syntaxhighlight lang='bash'> | |||
helm pull https://example.com/charts/cassandra-1.0.0.tgz | |||
</syntaxhighlight> | |||
This command writes <code>cassandra-1.0.0.tgz</code> in the current directory. |
Latest revision as of 22:19, 8 December 2023
External
Internal
Overview
Used to retrieve individual chart archives and store them on the local filesystem.
For locally added repository:
helm pull stable/postgresql
helm pull yunikorn/yunikorn --version 1.4.0
For a remote chart URL:
helm pull https://example.com/charts/cassandra-1.0.0.tgz
This command writes cassandra-1.0.0.tgz
in the current directory.