Skip to content

Commit 6d24c55

Browse files
committed
Added new Value and corresponding option in the deployment.yaml for using the new txt format
Signed-off-by: Max Anderson <[email protected]>
1 parent 8420d30 commit 6d24c55

File tree

4 files changed

+9
-1
lines changed

4 files changed

+9
-1
lines changed

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.10
32+
version: 8.8.0

bitnami/external-dns/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -348,6 +348,7 @@ helm install my-release \
348348
| `txtEncrypt.enabled` | Enable TXT record encryption | `false` |
349349
| `txtEncrypt.aesKey` | 32-byte AES-256-GCM encryption key. | `""` |
350350
| `txtEncrypt.secretName` | Use an existing secret with key "txt_aes_encryption_key" defined. | `""` |
351+
| `txtNewFormatOnly` | When using the TXT registry, use only the new format for ownership records (optional) | `false` |
351352
| `extraArgs` | Extra arguments to be passed to external-dns | `{}` |
352353
| `extraEnvVars` | An array to add extra env vars | `[]` |
353354
| `extraEnvVarsCM` | ConfigMap containing extra env vars | `""` |

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
@@ -858,6 +858,10 @@ txtEncrypt:
858858
## This ignores txtEncrypt.aesKey
859859
##
860860
secretName: ""
861+
## @param txtNewFormatOnly When using the TXT registry, use only the new format for ownership records (optional)
862+
## ref: https://github.com/kubernetes-sigs/external-dns/blob/master/docs/registry/txt.md#record-format-options
863+
##
864+
txtNewFormatOnly: false
861865
## @param extraArgs Extra arguments to be passed to external-dns
862866
##
863867
extraArgs: {}

0 commit comments

Comments
 (0)