You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* master:
docs(proposal): externaldns api graduation to beta (kubernetes-sigs#5079)
chore(code-cleanup): move logic away from main.go add tests (kubernetes-sigs#5222)
chore(deps): bump the dev-dependencies group across 1 directory with 17 updates
chore: add se for nlb, alb in thailand region
fix(node): logger test fixed (kubernetes-sigs#5232)
fix(chart): add missing types for empty values (kubernetes-sigs#5207)
docs: Fix typo: grcp → grpc.
removing reduntant code
renaming variable
added new tests to handle edge case
detailed documentation with no-expose
added warn log
edited docs and made new test
docs: added documentation in node source
fix: fixing ci lint
fix: removing fmt.Printf
feat: added expose internal ipv6 flag
Copy file name to clipboardexpand all lines: charts/external-dns/CHANGELOG.md
+8
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
18
18
19
19
## [UNRELEASED]
20
20
21
+
### Changed
22
+
23
+
- Set defaults for `automountServiceAccountToken` and `serviceAccount.automountServiceAccountToken` to `true` in helm chart values ([#5207](https://github.com/kubernetes-sigs/external-dns/pull/5207)) _@t3mi_
24
+
25
+
### Fixed
26
+
27
+
- Add missing types in the schema for empty values ([#5207](https://github.com/kubernetes-sigs/external-dns/pull/5207)) _@t3mi_
Copy file name to clipboardexpand all lines: charts/external-dns/README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -92,7 +92,7 @@ If `namespaced` is set to `true`, please ensure that `sources` my only contains
92
92
| Key | Type | Default | Description |
93
93
|-----|------|---------|-------------|
94
94
| affinity | object |`{}`| Affinity settings for `Pod`[scheduling](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/). If an explicit label selector is not provided for pod affinity or pod anti-affinity one will be created from the pod selector labels. |
95
-
| automountServiceAccountToken | bool |`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 `Pod`. |
95
+
| automountServiceAccountToken | bool |`true`| 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 `Pod`. |
96
96
| commonLabels | object |`{}`| Labels to add to all chart resources. |
97
97
| deploymentAnnotations | object |`{}`| Annotations to add to the `Deployment`. |
@@ -155,7 +155,7 @@ If `namespaced` is set to `true`, please ensure that `sources` my only contains
155
155
| service.ipFamilyPolicy | string |`nil`| Service IP family policy. |
156
156
| service.port | int |`7979`| Service HTTP port. |
157
157
| 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 }}`|
158
-
| 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`. |
158
+
| serviceAccount.automountServiceAccountToken |bool|`true`| 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`. |
159
159
| serviceAccount.create | bool |`true`| If `true`, create a new `ServiceAccount`. |
160
160
| serviceAccount.labels | object |`{}`| Labels to add to the service account. |
161
161
| serviceAccount.name | string |`nil`| 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. |
# -- 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 }}`
35
35
annotations: {}
36
36
# -- (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.
37
-
name:
37
+
name:# @schema type:[string, null]; default: null
38
38
# -- 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`.
39
-
automountServiceAccountToken:
39
+
automountServiceAccountToken:true
40
40
41
41
service:
42
42
# -- Service annotations.
@@ -76,7 +76,7 @@ podLabels: {}
76
76
podAnnotations: {}
77
77
78
78
# -- (bool) 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 `Pod`.
79
-
automountServiceAccountToken:
79
+
automountServiceAccountToken:true
80
80
81
81
# -- If `true`, the `Pod` will have [process namespace sharing](https://kubernetes.io/docs/tasks/configure-pod-container/share-process-namespace/) enabled.
# -- (string) [DNS policy](https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/#pod-s-dns-policy) for the pod, if not set the default will be used.
# -- (object) [DNS config](https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/#pod-dns-config) for the pod, if not set the default will be used.
# -- [Relabel configs](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config) to apply to samples before ingestion.
187
187
relabelings: []
188
188
# -- [Metric relabel configs](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#metric_relabel_configs) to apply to samples before ingestion.
@@ -243,9 +243,9 @@ provider:
243
243
webhook:
244
244
image:
245
245
# -- (string) Image repository for the `webhook` container.
# -- (string) Image tag for the `webhook` container.
248
-
tag:
248
+
tag:# @schema type:[string, null]; default: null
249
249
# -- Image pull policy for the `webhook` container.
250
250
pullPolicy: IfNotPresent
251
251
# -- [Environment variables](https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/) for the `webhook` container.
0 commit comments