mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[stable/external-dns] Add support for AWS Zone tags filter (#15867)
* [stable/external-dns] Add support for AWS Zone tags filter Signed-off-by: Alex Gavrisco <alexxg.tmd@gmail.com> * Fix chart version Signed-off-by: Alex Gavrisco <alexxg.tmd@gmail.com>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
d0f76ef2a2
commit
fccba1bc27
@@ -1,6 +1,6 @@
|
||||
apiVersion: v1
|
||||
name: external-dns
|
||||
version: 2.3.3
|
||||
version: 2.4.0
|
||||
appVersion: 0.5.15
|
||||
description: ExternalDNS is a Kubernetes addon that configures public DNS servers with information about exposed Kubernetes services to make them discoverable.
|
||||
keywords:
|
||||
|
||||
@@ -66,6 +66,7 @@ The following table lists the configurable parameters of the external-dns chart
|
||||
| `aws.zoneType` | When using the AWS provider, filter for zones of this type (optional, options: public, private) | `""` |
|
||||
| `aws.assumeRoleArn` | When using the AWS provider, assume role by specifying --aws-assume-role to the external-dns daemon | `""` |
|
||||
| `aws.batchChangeSize` | When using the AWS provider, set the maximum number of changes that will be applied in each batch | `1000` |
|
||||
| `aws.zoneTags` | When using the AWS provider, filter for zones with these tags | `[]` |
|
||||
| `azure.secretName` | When using the Azure provider, set the secret containing the `azure.json` file | `""` |
|
||||
| `azure.resourceGroup` | When using the Azure provider, set the Azure Resource Group | `""` |
|
||||
| `cloudflare.apiKey` | When using the Cloudflare provider, `CF_API_KEY` to set (optional) | `""` |
|
||||
|
||||
@@ -104,6 +104,9 @@ spec:
|
||||
- --aws-batch-change-size={{ .Values.aws.batchChangeSize }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- range .Values.aws.zoneTags }}
|
||||
- --aws-zone-tags={{ . }}
|
||||
{{- end }}
|
||||
# Azure Arguments
|
||||
{{- if eq .Values.provider "azure" }}
|
||||
{{- if .Values.azure.resourceGroup }}
|
||||
|
||||
@@ -71,6 +71,9 @@ aws:
|
||||
## Maximum number of changes that will be applied in each batch
|
||||
##
|
||||
batchChangeSize: 1000
|
||||
## Zone Tag Filter
|
||||
##
|
||||
zoneTags: []
|
||||
|
||||
## Azure configuration to be set via arguments/env. variables
|
||||
##
|
||||
|
||||
@@ -71,6 +71,9 @@ aws:
|
||||
## Maximum number of changes that will be applied in each batch
|
||||
##
|
||||
batchChangeSize: 1000
|
||||
## AWS Zone tags
|
||||
##
|
||||
zoneTags: []
|
||||
|
||||
## Azure configuration to be set via arguments/env. variables
|
||||
##
|
||||
|
||||
Reference in New Issue
Block a user