[stable/external-dns] add azure cloud in configuration. (#18898)

* [stable/external-dns] add azure cloud in configuration.

Signed-off-by: Eric Yang <ericyang879@gmail.com>

* [stable/external-dns] bump version to 2.10.4.

Signed-off-by: Eric Yang <ericyang879@gmail.com>

* [stable/external-dns] bump the minor version not the patch one.

Signed-off-by: Eric Yang <ericyang879@gmail.com>
This commit is contained in:
Eric Yang
2019-11-28 01:07:03 -08:00
committed by Kubernetes Prow Robot
parent 7a8fe65c4f
commit cba89db7f1
5 changed files with 11 additions and 1 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
apiVersion: v1
name: external-dns
version: 2.10.3
version: 2.11.0
appVersion: 0.5.17
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
@@ -70,6 +70,7 @@ The following table lists the configurable parameters of the external-dns chart
| `aws.zoneTags` | When using the AWS provider, filter for zones with these tags | `[]` |
| `aws.preferCNAME` | When using the AWS provider, replaces Alias recors with CNAME (options: true, false) | `[]` |
| `azure.secretName` | When using the Azure provider, set the secret containing the `azure.json` file | `""` |
| `azure.cloud` | When using the Azure provider, set the Azure Clound | `""` |
| `azure.resourceGroup` | When using the Azure provider, set the Azure Resource Group | `""` |
| `azure.tenantId` | When using the Azure provider, set the Azure Tenant ID | `""` |
| `azure.subscriptionId` | When using the Azure provider, set the Azure Subscription ID | `""` |
@@ -124,6 +124,9 @@ source_profile = default
{{- define "external-dns.azure-credentials" -}}
{
{{- if .Values.azure.cloud }}
"cloud": "{{ .Values.azure.cloud }}",
{{- end}}
"tenantId": "{{ .Values.azure.tenantId }}",
"subscriptionId": "{{ .Values.azure.subscriptionId }}",
"resourceGroup": "{{ .Values.azure.resourceGroup }}",
@@ -89,6 +89,9 @@ azure:
secretName: ""
## Azure resource group to use
##
cloud: ""
## Azure Cloud to use
##
resourceGroup: ""
## Azure tenant ID to use
##
+3
View File
@@ -88,6 +88,9 @@ azure:
secretName: ""
## Azure resource group to use
##
cloud: ""
## Azure Cloud to use
##
resourceGroup: ""
## Azure tenant ID to use
##