From 4aeb0ff6f2b0d14431f61a9decd06c3d29ef21c3 Mon Sep 17 00:00:00 2001 From: stoned Date: Tue, 18 Apr 2023 23:56:29 +0200 Subject: [PATCH] Fix inherit examples following #674 (#815) --- docs/builtin-objects.md | 8 ++++---- docs/writing-helmfile.md | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/builtin-objects.md b/docs/builtin-objects.md index ccb7a2d2..96d45c5d 100644 --- a/docs/builtin-objects.md +++ b/docs/builtin-objects.md @@ -27,11 +27,11 @@ releases: - name: heapster version: 0.3.2 inherit: - template: default + - template: default - name: kubernetes-dashboard version: 0.10.0 inherit: - template: default + - template: default ``` 2. release values template @@ -40,7 +40,7 @@ releases: - name: some-release chart: my-chart values: - # This is a template file can use the built-in objects + # This is a template file can use the built-in objects - path/to/values.gotmpl ``` @@ -62,4 +62,4 @@ releases: The built-in values always begin with a capital letter. This is in keeping with Go's naming convention. When you define your own values and template variables, you are free to use a -convention that suits your team. \ No newline at end of file +convention that suits your team. diff --git a/docs/writing-helmfile.md b/docs/writing-helmfile.md index b6bead20..b2156bd7 100644 --- a/docs/writing-helmfile.md +++ b/docs/writing-helmfile.md @@ -103,11 +103,11 @@ releases: - name: heapster version: 0.3.2 inherit: - template: default + - template: default - name: kubernetes-dashboard version: 0.10.0 inherit: - template: default + - template: default ``` Release Templating supports the following parts of release definition: