[bitnami/external-dns] Add support to configure a txtSuffix (#6098)

This commit is contained in:
Niklas Wagner
2021-04-14 12:27:18 +02:00
committed by GitHub
parent e324e3c36a
commit 33785f6484
4 changed files with 9 additions and 2 deletions

View File

@@ -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

View File

@@ -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` |

View File

@@ -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 }}

View File

@@ -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
##