Manage the dependencies of a chart.

    Helm charts store their dependencies in ‘charts/’. For chart developers, it is often easier to manage a single dependency file (‘requirements.yaml’) which declares all dependencies.

    A ‘requirements.yaml’ file is a YAML file in which developers can declare chart dependencies, along with the location of the chart and the desired version. For example, this requirements file declares two dependencies:

    The ‘name’ should be the name of a chart, where that name must match the name in that chart’s ‘Chart.yaml’ file.

    The ‘repository’ URL should point to a Chart Repository. Helm expects that by appending ‘/index.yaml’ to the URL, it should be able to retrieve the chart repository’s index. Note: ‘repository’ can be an alias. The alias must start with ‘alias:’ or ‘@’.

    Starting from 2.2.0, repository can be defined as the path to the directory of the dependency charts stored locally. The path should start with a prefix of “file://“. For example,

    • - rebuild the charts/ directory based on the requirements.lock file
    • helm dependency list - list the dependencies for the given chart
    Auto generated by spf13/cobra on 26-Mar-2019