mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[stable/external-dns] Add support for multiple Istio IngressGateway LoadBalancer Services (#15077)
* add multiple istio gateway args Signed-off-by: Craig Huber <ch@hellofresh.com> * update readme Signed-off-by: Craig Huber <ch@hellofresh.com> * [stable/external-dns] add multiple istio gateway args Signed-off-by: Craig Huber <ch@hellofresh.com> * [stable/external-dns] add new line Signed-off-by: Craig Huber <ch@hellofresh.com> * [stable/external-dns] bump minor version Signed-off-by: Craig Huber <ch@hellofresh.com>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
ec69eb9090
commit
3ea5519bcf
@@ -1,6 +1,6 @@
|
||||
apiVersion: v1
|
||||
name: external-dns
|
||||
version: 1.8.3
|
||||
version: 1.9.0
|
||||
appVersion: 0.5.14
|
||||
description: ExternalDNS is a Kubernetes addon that configures public DNS servers with information about exposed Kubernetes services to make them discoverable.
|
||||
keywords:
|
||||
|
||||
@@ -63,6 +63,7 @@ The following table lists the configurable parameters of the external-dns chart
|
||||
| `infoblox.wapiVersion` | When using the Infoblox provider, optionally specify the Infoblox WAPI version. | `""` |
|
||||
| `infoblox.wapiConnectionPoolSize` | When using the Infoblox provider, optionally specify the Infoblox WAPI request connection pool size. | `""` |
|
||||
| `infoblox.wapiHttpTimeout` | When using the Infoblox provider, optionally specify the Infoblox WAPI request timeout in seconds. | `""` |
|
||||
| `istioIngressGateways` | The fully-qualified name of the Istio ingress gateway services . | `""` |
|
||||
| `rfc2136.host` | When using the rfc2136 provider, specify the RFC2136 host. | `""` |
|
||||
| `rfc2136.port` | When using the rfc2136 provider, optionally specify the RFC2136 port. | `53` |
|
||||
| `rfc2136.zone` | When using the rfc2136 provider, specify the zone. | `""` |
|
||||
|
||||
@@ -60,6 +60,9 @@ spec:
|
||||
{{- range .Values.sources }}
|
||||
- --source={{ . }}
|
||||
{{- end }}
|
||||
{{- range .Values.istioIngressGateways }}
|
||||
- --istio-ingress-gateway={{ . }}
|
||||
{{- end }}
|
||||
{{ if .Values.dryRun }}
|
||||
- --dry-run
|
||||
{{- end }}
|
||||
|
||||
@@ -185,3 +185,7 @@ crd:
|
||||
create: false
|
||||
apiversion: ""
|
||||
kind: ""
|
||||
|
||||
## Load balancer service to be used; ie: custom-istio-namespace/custom-istio-ingressgateway.
|
||||
## Omit to use the default (istio-system/istio-ingressgateway)
|
||||
istioIngressGateways: []
|
||||
|
||||
Reference in New Issue
Block a user