Helm Chart requirements.yaml: Difference between revisions
Jump to navigation
Jump to search
(→Fields) |
|||
Line 30: | Line 30: | ||
====version==== | ====version==== | ||
The dependency chart version. | The dependency [[Helm_Concepts#Chart_Version|chart version]]. | ||
====repository==== | ====repository==== | ||
The dependency chart repository URL. Note that [[helm repo|helm repo add]] must be used to add the repository locally. | The dependency chart repository URL. Note that [[helm repo|helm repo add]] must be used to add the repository locally. |
Revision as of 21:02, 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
Fields
name
The dependency chart name.
version
The dependency chart version.
repository
The dependency chart repository URL. Note that helm repo add must be used to add the repository locally.