Skip to content

Commit a336198

Browse files
committed
fix multiline-string docs
1 parent 5126e3a commit a336198

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

charts/external-dns/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ If `namespaced` is set to `true`, please ensure that `sources` my only contains
153153
| service.ipFamilies | list | `[]` | Service IP families. |
154154
| service.ipFamilyPolicy | string | `nil` | Service IP family policy. |
155155
| service.port | int | `7979` | Service HTTP port. |
156-
| serviceAccount.annotations | object | `{}` | Annotations to add to the service account. Templates are allowed here. Example: annotations: example.com/annotation: {{ .Values.nameOverride }} |
156+
| serviceAccount.annotations | object | `{}` | Annotations to add to the service account. Templates are allowed in both the key and the value. Example: `example.com/annotation/{{ .Values.nameOverride }}: {{ .Values.nameOverride }}` |
157157
| serviceAccount.automountServiceAccountToken | string | `nil` | Set this to `false` to [opt out of API credential automounting](https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/#opt-out-of-api-credential-automounting) for the `ServiceAccount`. |
158158
| serviceAccount.create | bool | `true` | If `true`, create a new `ServiceAccount`. |
159159
| serviceAccount.labels | object | `{}` | Labels to add to the service account. |

charts/external-dns/values.yaml

+1-3
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,7 @@ serviceAccount:
3131
create: true
3232
# -- Labels to add to the service account.
3333
labels: {}
34-
# -- Annotations to add to the service account. Templates are allowed here. Example:
35-
# annotations:
36-
# example.com/annotation: {{ .Values.nameOverride }}
34+
# -- Annotations to add to the service account. Templates are allowed in both the key and the value. Example: `example.com/annotation/{{ .Values.nameOverride }}: {{ .Values.nameOverride }}`
3735
annotations: {}
3836
# -- (string) If this is set and `serviceAccount.create` is `true` this will be used for the created `ServiceAccount` name, if set and `serviceAccount.create` is `false` then this will define an existing `ServiceAccount` to use.
3937
name:

0 commit comments

Comments
 (0)