Skip to content

Commit ecd3223

Browse files
MaxAnderson95bitnami-botcarrodherjotamartos
authored
[bitnami/external-dns] Add support for --txt-new-format-only (#32880)
* Added new Value and corresponding option in the deployment.yaml for using the new txt format Signed-off-by: Max Anderson <[email protected]> * Update CHANGELOG.md Signed-off-by: Bitnami Bot <[email protected]> * Update CHANGELOG.md Signed-off-by: Bitnami Bot <[email protected]> * Re-arranged order of new parameter in values.yaml and README.md Signed-off-by: Max Anderson <[email protected]> * Update CHANGELOG.md Signed-off-by: Bitnami Bot <[email protected]> * Update CHANGELOG.md Signed-off-by: Bitnami Bot <[email protected]> --------- Signed-off-by: Max Anderson <[email protected]> Signed-off-by: Bitnami Bot <[email protected]> Signed-off-by: Carlos Rodríguez Hernández <[email protected]> Signed-off-by: Juan José Martos <[email protected]> Co-authored-by: Bitnami Bot <[email protected]> Co-authored-by: Carlos Rodríguez Hernández <[email protected]> Co-authored-by: Juan José Martos <[email protected]>
1 parent 79e0e18 commit ecd3223

File tree

5 files changed

+15
-3
lines changed

5 files changed

+15
-3
lines changed

bitnami/external-dns/CHANGELOG.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
# Changelog
22

3-
## 8.7.12 (2025-04-22)
3+
## 8.8.0 (2025-04-23)
44

5-
* [bitnami/external-dns] Release 8.7.12 ([#33113](https://github.com/bitnami/charts/pull/33113))
5+
* [bitnami/external-dns] Add support for --txt-new-format-only ([#32880](https://github.com/bitnami/charts/pull/32880))
6+
7+
## <small>8.7.12 (2025-04-22)</small>
8+
9+
* [bitnami/external-dns] Release 8.7.12 (#33113) ([7ca15cc](https://github.com/bitnami/charts/commit/7ca15cc04465c25d12da0fc28124ea998c5a013e)), closes [#33113](https://github.com/bitnami/charts/issues/33113)
610

711
## <small>8.7.11 (2025-04-09)</small>
812

bitnami/external-dns/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ maintainers:
2929
name: external-dns
3030
sources:
3131
- https://github.com/bitnami/charts/tree/main/bitnami/external-dns
32-
version: 8.7.12
32+
version: 8.8.0

bitnami/external-dns/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -343,6 +343,7 @@ helm install my-release \
343343
| `registry` | Registry method to use (options: txt, aws-sd, dynamodb, noop) | `txt` |
344344
| `txtPrefix` | When using the TXT registry, a prefix for ownership records that avoids collision with CNAME entries (optional)<CNAME record> (Mutual exclusive with txt-suffix) | `""` |
345345
| `txtSuffix` | When using the TXT registry, a suffix for ownership records that avoids collision with CNAME entries (optional)<CNAME record>.suffix (Mutual exclusive with txt-prefix) | `""` |
346+
| `txtNewFormatOnly` | When using the TXT registry, use only the new format for ownership records (optional) | `false` |
346347
| `txtOwnerId` | A name that identifies this instance of ExternalDNS. Currently used by registry types: txt & aws-sd (optional) | `""` |
347348
| `forceTxtOwnerId` | (backward compatibility) When using the non-TXT registry, it will pass the value defined by `txtOwnerId` down to the application (optional) | `false` |
348349
| `txtEncrypt.enabled` | Enable TXT record encryption | `false` |

bitnami/external-dns/templates/deployment.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,9 @@ spec:
159159
{{- if .Values.txtSuffix }}
160160
- --txt-suffix={{ .Values.txtSuffix }}
161161
{{- end }}
162+
{{- if .Values.txtNewFormatOnly }}
163+
- --txt-new-format-only
164+
{{- end }}
162165
{{- end }}
163166
{{- if .Values.annotationFilter }}
164167
- --annotation-filter={{ .Values.annotationFilter }}

bitnami/external-dns/values.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -822,6 +822,10 @@ txtPrefix: ""
822822
## @param txtSuffix When using the TXT registry, a suffix for ownership records that avoids collision with CNAME entries (optional)<CNAME record>.suffix (Mutual exclusive with txt-prefix)
823823
##
824824
txtSuffix: ""
825+
## @param txtNewFormatOnly When using the TXT registry, use only the new format for ownership records (optional)
826+
## ref: https://github.com/kubernetes-sigs/external-dns/blob/master/docs/registry/txt.md#record-format-options
827+
##
828+
txtNewFormatOnly: false
825829
## @param txtOwnerId A name that identifies this instance of ExternalDNS. Currently used by registry types: txt & aws-sd (optional)
826830
## But other registry types might be added in the future.
827831
##

0 commit comments

Comments
 (0)