Helm Dependencies
Jump to navigation
Jump to search
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
...