From 1293349e9ee1fad92435f50f9e5de52b8ae28b5b Mon Sep 17 00:00:00 2001 From: Vinayak Kukreja Date: Wed, 9 Aug 2023 16:36:57 -0700 Subject: [PATCH 1/2] chore(docs): add repo authentication disclaimer to helm documentation Signed-off-by: Vinayak Kukreja --- docs/basics/helm.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/basics/helm.md b/docs/basics/helm.md index ad809478cd..e767b0d3d7 100644 --- a/docs/basics/helm.md +++ b/docs/basics/helm.md @@ -12,6 +12,8 @@ The following example adds the Helm chart with sentinel containers enabled: > The Bitnami helm repo needs to be added through: `helm repo add bitnami https://charts.bitnami.com/bitnami` +> For accessing private helm repositories, you must be authenticated to the repository in a way that the `helm template` +> command recognizes. ```ts class MyChart extends cdk8s.Chart { From 5195afa14af7cd945cece0da200187fc369a0ad9 Mon Sep 17 00:00:00 2001 From: Vinayak Kukreja Date: Wed, 9 Aug 2023 16:39:30 -0700 Subject: [PATCH 2/2] add a new line Signed-off-by: Vinayak Kukreja --- docs/basics/helm.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/basics/helm.md b/docs/basics/helm.md index e767b0d3d7..8c2ff9b617 100644 --- a/docs/basics/helm.md +++ b/docs/basics/helm.md @@ -12,6 +12,7 @@ The following example adds the Helm chart with sentinel containers enabled: > The Bitnami helm repo needs to be added through: `helm repo add bitnami https://charts.bitnami.com/bitnami` + > For accessing private helm repositories, you must be authenticated to the repository in a way that the `helm template` > command recognizes.