File tree 4 files changed +9
-1
lines changed
4 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -29,4 +29,4 @@ maintainers:
29
29
name : external-dns
30
30
sources :
31
31
- https://github.com/bitnami/charts/tree/main/bitnami/external-dns
32
- version : 8.7.10
32
+ version : 8.8.0
Original file line number Diff line number Diff line change @@ -348,6 +348,7 @@ helm install my-release \
348
348
| ` txtEncrypt.enabled ` | Enable TXT record encryption | ` false ` |
349
349
| ` txtEncrypt.aesKey ` | 32-byte AES-256-GCM encryption key. | ` "" ` |
350
350
| ` 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 ` |
351
352
| ` extraArgs ` | Extra arguments to be passed to external-dns | ` {} ` |
352
353
| ` extraEnvVars ` | An array to add extra env vars | ` [] ` |
353
354
| ` extraEnvVarsCM ` | ConfigMap containing extra env vars | ` "" ` |
Original file line number Diff line number Diff line change @@ -159,6 +159,9 @@ spec:
159
159
{{- if .Values.txtSuffix }}
160
160
- --txt-suffix={{ .Values.txtSuffix }}
161
161
{{- end }}
162
+ {{- if .Values.txtNewFormatOnly }}
163
+ - --txt-new-format-only
164
+ {{- end }}
162
165
{{- end }}
163
166
{{- if .Values.annotationFilter }}
164
167
- --annotation-filter={{ .Values.annotationFilter }}
Original file line number Diff line number Diff line change @@ -858,6 +858,10 @@ txtEncrypt:
858
858
# # This ignores txtEncrypt.aesKey
859
859
# #
860
860
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
861
865
# # @param extraArgs Extra arguments to be passed to external-dns
862
866
# #
863
867
extraArgs : {}
You can’t perform that action at this time.
0 commit comments