Synchronize upstreamed folder to fccba1bc2

This commit is contained in:
bitnami-bot
2019-07-26 12:35:02 +00:00
parent dcecd521d0
commit ac2e0a2007
5 changed files with 11 additions and 1 deletions
+1 -1
View File
@@ -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:
+1
View File
@@ -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
##
+3
View File
@@ -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
##