mirror of
https://github.com/bitnami/charts.git
synced 2026-03-08 17:27:20 +08:00
[bitnami/external-dns] Add support to configure a txtSuffix (#6098)
This commit is contained in:
@@ -24,4 +24,4 @@ sources:
|
||||
- https://github.com/kubernetes-sigs/external-dns
|
||||
- https://github.com/bitnami/bitnami-docker-external-dns
|
||||
- https://github.com/kubernetes-sigs/external-dns
|
||||
version: 4.10.0
|
||||
version: 4.11.0
|
||||
|
||||
@@ -174,6 +174,7 @@ The following table lists the configurable parameters of the external-dns chart
|
||||
| `registry` | Registry method to use (options: txt, noop) | `txt` |
|
||||
| `txtOwnerId` | When using the TXT registry, a name that identifies this instance of ExternalDNS (optional) | `"default"` |
|
||||
| `txtPrefix` | When using the TXT registry, a prefix for ownership records that avoids collision with CNAME entries (optional) | `""` |
|
||||
| `txtSuffix` | When using the TXT registry, a suffix for ownership records that avoids collision with CNAME entries (optional) | `""` |
|
||||
| `extraArgs` | Extra arguments to be passed to external-dns | `{}` |
|
||||
| `extraEnv` | Extra environment variables to be passed to external-dns | `[]` |
|
||||
| `replicas` | Desired number of ExternalDNS replicas | `1` |
|
||||
|
||||
@@ -106,6 +106,9 @@ spec:
|
||||
{{- if .Values.txtPrefix }}
|
||||
- --txt-prefix={{ .Values.txtPrefix }}
|
||||
{{- end }}
|
||||
{{- if .Values.txtSuffix }}
|
||||
- --txt-suffix={{ .Values.txtSuffix }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- if .Values.annotationFilter }}
|
||||
- --annotation-filter={{ .Values.annotationFilter }}
|
||||
|
||||
@@ -429,9 +429,12 @@ registry: "txt"
|
||||
## TXT Registry Identifier
|
||||
##
|
||||
txtOwnerId: ""
|
||||
## Prefix to create a TXT record with a name following the pattern prefix.<CNAME record>
|
||||
## Prefix to create a TXT record with a name following the pattern prefix.<CNAME record> (Mutual exclusive with txt-suffix)
|
||||
##
|
||||
# txtPrefix: ""
|
||||
## Suffix to create a TXT record with a name following the pattern <CNAME record>.suffix (Mutual exclusive with txt-prefix)
|
||||
##
|
||||
# txtSuffix: ""
|
||||
|
||||
## Extra Arguments to passed to external-dns
|
||||
##
|
||||
|
||||
Reference in New Issue
Block a user