Skip to content

Commit 505557a

Browse files
Merge branch 'master' into feat-code-cleanup-0
* 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
2 parents b16775d + f67cc94 commit 505557a

20 files changed

+1474
-680
lines changed

charts/external-dns/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1818

1919
## [UNRELEASED]
2020

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_
28+
2129
## [v1.16.0] - 2025-03-20
2230

2331
### Added

charts/external-dns/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ If `namespaced` is set to `true`, please ensure that `sources` my only contains
9292
| Key | Type | Default | Description |
9393
|-----|------|---------|-------------|
9494
| 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`. |
9696
| commonLabels | object | `{}` | Labels to add to all chart resources. |
9797
| deploymentAnnotations | object | `{}` | Annotations to add to the `Deployment`. |
9898
| deploymentStrategy | object | `{"type":"Recreate"}` | [Deployment Strategy](https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#strategy). |
@@ -155,7 +155,7 @@ If `namespaced` is set to `true`, please ensure that `sources` my only contains
155155
| service.ipFamilyPolicy | string | `nil` | Service IP family policy. |
156156
| service.port | int | `7979` | Service HTTP port. |
157157
| 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`. |
159159
| serviceAccount.create | bool | `true` | If `true`, create a new `ServiceAccount`. |
160160
| serviceAccount.labels | object | `{}` | Labels to add to the service account. |
161161
| 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. |

charts/external-dns/tests/deployment-config_test.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,9 @@ tests:
1919
- equal:
2020
path: metadata.namespace
2121
value: default
22-
- notExists:
22+
- equal:
2323
path: spec.template.spec.automountServiceAccountToken
24+
value: true
2425

2526
- it: should provide expected defaults for securityContext
2627
asserts:

charts/external-dns/tests/serviceaccount_test.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ tests:
1212
count: 1
1313
- equal:
1414
path: automountServiceAccountToken
15-
value: null
15+
value: true
1616

1717
- it: should provide a way to disable service account
1818
set:

charts/external-dns/values.schema.json

+58-16
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"type": "object"
88
},
99
"automountServiceAccountToken": {
10-
"type": "null"
10+
"type": "boolean"
1111
},
1212
"commonLabels": {
1313
"properties": {},
@@ -33,10 +33,16 @@
3333
"type": "object"
3434
},
3535
"dnsConfig": {
36-
"type": "null"
36+
"type": [
37+
"object",
38+
"null"
39+
]
3740
},
3841
"dnsPolicy": {
39-
"type": "null"
42+
"type": [
43+
"string",
44+
"null"
45+
]
4046
},
4147
"domainFilters": {
4248
"type": "array"
@@ -68,7 +74,10 @@
6874
"type": "array"
6975
},
7076
"fullnameOverride": {
71-
"type": "null"
77+
"type": [
78+
"string",
79+
"null"
80+
]
7281
},
7382
"global": {
7483
"properties": {
@@ -188,7 +197,10 @@
188197
"uniqueItems": true
189198
},
190199
"nameOverride": {
191-
"type": "null"
200+
"type": [
201+
"string",
202+
"null"
203+
]
192204
},
193205
"namespaced": {
194206
"type": "boolean"
@@ -235,7 +247,10 @@
235247
]
236248
},
237249
"priorityClassName": {
238-
"type": "null"
250+
"type": [
251+
"string",
252+
"null"
253+
]
239254
},
240255
"provider": {
241256
"properties": {
@@ -259,10 +274,16 @@
259274
"type": "string"
260275
},
261276
"repository": {
262-
"type": "null"
277+
"type": [
278+
"string",
279+
"null"
280+
]
263281
},
264282
"tag": {
265-
"type": "null"
283+
"type": [
284+
"string",
285+
"null"
286+
]
266287
}
267288
},
268289
"type": "object"
@@ -594,7 +615,7 @@
594615
"type": "object"
595616
},
596617
"automountServiceAccountToken": {
597-
"type": "null"
618+
"type": "boolean"
598619
},
599620
"create": {
600621
"type": "boolean"
@@ -604,7 +625,10 @@
604625
"type": "object"
605626
},
606627
"name": {
607-
"type": "null"
628+
"type": [
629+
"string",
630+
"null"
631+
]
608632
}
609633
},
610634
"type": "object"
@@ -620,28 +644,43 @@
620644
"type": "object"
621645
},
622646
"bearerTokenFile": {
623-
"type": "null"
647+
"type": [
648+
"string",
649+
"null"
650+
]
624651
},
625652
"enabled": {
626653
"type": "boolean"
627654
},
628655
"interval": {
629-
"type": "null"
656+
"type": [
657+
"string",
658+
"null"
659+
]
630660
},
631661
"metricRelabelings": {
632662
"type": "array"
633663
},
634664
"namespace": {
635-
"type": "null"
665+
"type": [
666+
"string",
667+
"null"
668+
]
636669
},
637670
"relabelings": {
638671
"type": "array"
639672
},
640673
"scheme": {
641-
"type": "null"
674+
"type": [
675+
"string",
676+
"null"
677+
]
642678
},
643679
"scrapeTimeout": {
644-
"type": "null"
680+
"type": [
681+
"string",
682+
"null"
683+
]
645684
},
646685
"targetLabels": {
647686
"type": "array"
@@ -663,7 +702,10 @@
663702
"type": "array"
664703
},
665704
"terminationGracePeriodSeconds": {
666-
"type": "null"
705+
"type": [
706+
"integer",
707+
"null"
708+
]
667709
},
668710
"tolerations": {
669711
"type": "array"

charts/external-dns/values.yaml

+16-16
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ image: # @schema additionalProperties: false
1818
imagePullSecrets: [] # @schema item: object
1919

2020
# -- (string) Override the name of the chart.
21-
nameOverride:
21+
nameOverride: # @schema type:[string, null]; default: null
2222

2323
# -- (string) Override the full name of the chart.
24-
fullnameOverride:
24+
fullnameOverride: # @schema type:[string, null]; default: null
2525

2626
# -- Labels to add to all chart resources.
2727
commonLabels: {}
@@ -34,9 +34,9 @@ serviceAccount:
3434
# -- 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 }}`
3535
annotations: {}
3636
# -- (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
3838
# -- 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
4040

4141
service:
4242
# -- Service annotations.
@@ -76,7 +76,7 @@ podLabels: {}
7676
podAnnotations: {}
7777

7878
# -- (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
8080

8181
# -- If `true`, the `Pod` will have [process namespace sharing](https://kubernetes.io/docs/tasks/configure-pod-container/share-process-namespace/) enabled.
8282
shareProcessNamespace: false
@@ -90,16 +90,16 @@ podSecurityContext:
9090
type: RuntimeDefault
9191

9292
# -- (string) Priority class name for the `Pod`.
93-
priorityClassName:
93+
priorityClassName: # @schema type:[string, null]; default: null
9494

9595
# -- (int) Termination grace period for the `Pod` in seconds.
96-
terminationGracePeriodSeconds:
96+
terminationGracePeriodSeconds: # @schema type:[integer, null]
9797

9898
# -- (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.
99-
dnsPolicy:
99+
dnsPolicy: # @schema type:[string, null]; default: null
100100

101101
# -- (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.
102-
dnsConfig:
102+
dnsConfig: # @schema type:[object, null]; default: null
103103

104104
# -- [Init containers](https://kubernetes.io/docs/concepts/workloads/pods/init-containers/) to add to the `Pod` definition.
105105
initContainers: []
@@ -172,17 +172,17 @@ serviceMonitor:
172172
# -- Annotations to add to the `ServiceMonitor`.
173173
annotations: {}
174174
# -- (string) If set create the `ServiceMonitor` in an alternate namespace.
175-
namespace:
175+
namespace: # @schema type:[string, null]; default: null
176176
# -- (string) If set override the _Prometheus_ default interval.
177-
interval:
177+
interval: # @schema type:[string, null]; default: null
178178
# -- (string) If set override the _Prometheus_ default scrape timeout.
179-
scrapeTimeout:
179+
scrapeTimeout: # @schema type:[string, null]; default: null
180180
# -- (string) If set overrides the _Prometheus_ default scheme.
181-
scheme:
181+
scheme: # @schema type:[string, null]; default: null
182182
# -- Configure the `ServiceMonitor` [TLS config](https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#tlsconfig).
183183
tlsConfig: {}
184184
# -- (string) Provide a bearer token file for the `ServiceMonitor`.
185-
bearerTokenFile:
185+
bearerTokenFile: # @schema type:[string, null]; default: null
186186
# -- [Relabel configs](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config) to apply to samples before ingestion.
187187
relabelings: []
188188
# -- [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:
243243
webhook:
244244
image:
245245
# -- (string) Image repository for the `webhook` container.
246-
repository:
246+
repository: # @schema type:[string, null]; default: null
247247
# -- (string) Image tag for the `webhook` container.
248-
tag:
248+
tag: # @schema type:[string, null]; default: null
249249
# -- Image pull policy for the `webhook` container.
250250
pullPolicy: IfNotPresent
251251
# -- [Environment variables](https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/) for the `webhook` container.

0 commit comments

Comments
 (0)