From fbbb6956ab21b3c93a2ac74a538e8afe088d7f41 Mon Sep 17 00:00:00 2001 From: Eli Polonsky Date: Tue, 3 Oct 2023 19:32:49 +0300 Subject: [PATCH] fix(website): notes are malformed in helm synthesis docs (#1533) --- docs/cli/synth.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/cli/synth.md b/docs/cli/synth.md index 05c37031fb..637b8aa203 100644 --- a/docs/cli/synth.md +++ b/docs/cli/synth.md @@ -175,7 +175,7 @@ dist/ ``` !!! note - CRDs are not supported when `--chart-api-version` is set to `v1`. + CRDs are not supported when `--chart-api-version` is set to `v1`. You can use the synthesized chart to deploy using helm: @@ -184,4 +184,4 @@ cdk8s synth --format helm --chart-version 1.0.0 && helm install . ``` !!! note - Templates within the generated Helm chart are pure and static Kubernetes manifests; they don't contain any helm template directives. This means they cannot be customized with a values.yaml file or the release name. One important implication of this is that you cannot deploy two different releases of the same chart, as resource names will collide. If you need customization, you can do this within the cdk8s application (for example by explicitly reading a values.yaml file). \ No newline at end of file + Templates within the generated Helm chart are pure and static Kubernetes manifests; they don't contain any helm template directives. This means they cannot be customized with a values.yaml file or the release name. One important implication of this is that you cannot deploy two different releases of the same chart, as resource names will collide. If you need customization, you can do this within the cdk8s application (for example by explicitly reading a values.yaml file). \ No newline at end of file