Skip to content

Commit

Permalink
fix: yaml examples with bad doc separator
Browse files Browse the repository at this point in the history
Signed-off-by: Terry Howe <[email protected]>
  • Loading branch information
TerryHowe committed Dec 21, 2024
1 parent a417fec commit 2de9350
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions content/en/docs/chart_template_guide/accessing_files.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,7 @@ conjunction with the `Glob` method.
Given the directory structure from the [Glob](#glob-patterns) example above:

```yaml
---
apiVersion: v1
kind: ConfigMap
metadata:
Expand Down
2 changes: 1 addition & 1 deletion content/en/docs/chart_template_guide/variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ in a range and you need to know the chart's release name.
An example illustrating this:
```yaml
{{- range .Values.tlsSecrets }}
---
apiVersion: v1
kind: Secret
metadata:
Expand All @@ -146,7 +147,6 @@ type: kubernetes.io/tls
data:
tls.crt: {{ .certificate }}
tls.key: {{ .key }}
---
{{- end }}
```

Expand Down

0 comments on commit 2de9350

Please sign in to comment.