Helm Dependencies: Difference between revisions
Jump to navigation
Jump to search
Line 18: | Line 18: | ||
<syntaxhighlight lang='yaml'> | <syntaxhighlight lang='yaml'> | ||
... | |||
dependencies: | dependencies: | ||
- name: # The name of the dependency | - name: # The name of the dependency | ||
version: # The version of the dependency | version: # The version of the dependency | ||
repository: # Repository URL | repository: # Repository URL | ||
... | |||
</syntaxhighlight> | </syntaxhighlight> | ||
Example: | Example: | ||
<syntaxhighlight lang='yaml'> | <syntaxhighlight lang='yaml'> | ||
... | |||
dependencies: | dependencies: | ||
- name: c | - name: c | ||
version: 1.0.0 | version: 1.0.0 | ||
repository: # Repository URL | repository: # Repository URL | ||
... | |||
</syntaxhighlight> | </syntaxhighlight> | ||
=Dependencies and Values= | =Dependencies and Values= | ||
=Dependency Operations= | =Dependency Operations= |
Revision as of 17:06, 15 December 2019
External
Internal
Overview
Revised for Helm 3
To Deplete
How Helm Dependencies Work
Dependency Declaration
Dependencies are declared in Chart.yaml 'dependencies' section.
...
dependencies:
- name: # The name of the dependency
version: # The version of the dependency
repository: # Repository URL
...
Example:
...
dependencies:
- name: c
version: 1.0.0
repository: # Repository URL
...