Helm Chart requirements.yaml: Difference between revisions
Jump to navigation
Jump to search
Line 34: | Line 34: | ||
====repository==== | ====repository==== | ||
The dependency chart [[Helm_Concepts#Repository_URL|repository URL]]. Note that [[ | The dependency chart [[Helm_Concepts#Repository_URL|repository URL]]. Note that [[Helm_repo#Add_a_New_Repository|helm repo add]] must be used to add the repository locally. |
Revision as of 21:04, 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.