Signed-off-by: Andy Holtzmann <aholtzmann@equinix.com>
This commit is contained in:
Andy Holtzmann
2021-06-10 02:43:26 -06:00
committed by GitHub
parent 07168bb458
commit 2b3f4c9b4a
4 changed files with 11 additions and 1 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: 5.0.3
version: 5.0.4

View File

@@ -140,6 +140,7 @@ The following table lists the configurable parameters of the external-dns chart
| `infoblox.wapiConnectionPoolSize` | When using the Infoblox provider, specify the Infoblox WAPI request connection pool size (optional) | `""` |
| `infoblox.wapiHttpTimeout` | When using the Infoblox provider, specify the Infoblox WAPI request timeout in seconds (optional) | `""` |
| `linode.apiToken` | When using the Linode provider, `LINODE_TOKEN` to set (optional) | `""` |
| `ns1.minTTL` | When using the ns1 provider, specify minimal TTL, as an integer, for records | `10` |
| `rfc2136.host` | When using the rfc2136 provider, specify the RFC2136 host (required when provider=rfc2136) | `""` |
| `rfc2136.port` | When using the rfc2136 provider, specify the RFC2136 port (optional) | `53` |
| `rfc2136.zone` | When using the rfc2136 provider, specify the zone (required when provider=rfc2136) | `""` |

View File

@@ -201,6 +201,10 @@ spec:
- --infoblox-ssl-verify
{{- end }}
{{- end }}
{{- if eq .Values.provider "ns1" }}
# ns1 arguments
- --ns1-min-ttl={{ .Values.ns1.minTTL }}
{{- end }}
{{- if eq .Values.provider "rfc2136" }}
# RFC 2136 arguments
- --rfc2136-host={{ required "rfc2136.host must be supplied for provider 'rfc2136'" .Values.rfc2136.host }}

View File

@@ -327,6 +327,11 @@ linode:
##
# secretName:
## NS1 configuration to be set via arguments/env. variables
##
ns1:
minTTL: 10
## OVH configuration to be set via arguments/env. variables
##
ovh: