Helm pull: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
 
(One intermediate revision by the same user not shown)
Line 9: Line 9:
=Overview=
=Overview=


Used to retrieve individual chart archives.
Used to retrieve individual chart archives and store them on the local filesystem.


For locally added repository:
For locally added repository:
Line 15: Line 15:
<syntaxhighlight lang='bash'>
<syntaxhighlight lang='bash'>
helm pull stable/postgresql
helm pull stable/postgresql
helm pull yunikorn/yunikorn --version 1.4.0
</syntaxhighlight>
</syntaxhighlight>



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.