Helm Chart requirements.yaml: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 11: | Line 11: | ||
requirements.yaml is an optional metadata file that contains dynamic dependencies for the chart. For a general discussion on chart dependencies, see [[Helm_Concepts#Dependencies|Helm Dependencies]]. | requirements.yaml is an optional metadata file that contains dynamic dependencies for the chart. For a general discussion on chart dependencies, see [[Helm_Concepts#Dependencies|Helm Dependencies]]. | ||
=Example= | |||
dependencies: | |||
- name: blue | |||
version: 1.2.3 | |||
repository: http://example.com/charts | |||
- name: green | |||
version 3.2.1 | |||
repository: http://another.example.com/charts |
Revision as of 20:59, 28 August 2019
External
Internal
Overview
requirements.yaml is an optional metadata file that contains dynamic dependencies for the chart. For a general discussion on chart dependencies, see Helm Dependencies.
Example
dependencies: - name: blue version: 1.2.3 repository: http://example.com/charts - name: green version 3.2.1 repository: http://another.example.com/charts