From 94b9b8dc27c55729a0510ec9267ba2a6bd773239 Mon Sep 17 00:00:00 2001 From: Anastasia Reitz Date: Thu, 28 Mar 2019 12:36:11 -0400 Subject: [PATCH] Clarified where "dependencies" reside Removed reference to a dependency file, I believe the author meant "dependencies" field in the "requirements.yaml" file. --- docs/charts.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/charts.md b/docs/charts.md index 6137898c2..382467608 100644 --- a/docs/charts.md +++ b/docs/charts.md @@ -158,7 +158,8 @@ the preferred method of declaring dependencies is by using a `requirements.yaml` file inside of your chart. **Note:** The `dependencies:` section of the `Chart.yaml` from Helm -Classic has been completely removed. +Classic has been completely removed. Dependencies are now specified +in the `dependencies` field of the `requirements.yaml` file. ### Managing Dependencies with `requirements.yaml` @@ -181,7 +182,7 @@ dependencies: that you must also use `helm repo add` to add that repo locally. Once you have a dependencies file, you can run `helm dependency update` -and it will use your dependency file to download all the specified +and it will use the `dependencies` field of your `requirements.yaml` file to download all the specified charts into your `charts/` directory for you. ```console