mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[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:
committed by
Kubernetes Prow Robot
parent
7a8fe65c4f
commit
cba89db7f1
@@ -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:
|
||||
|
||||
@@ -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
|
||||
##
|
||||
|
||||
@@ -88,6 +88,9 @@ azure:
|
||||
secretName: ""
|
||||
## Azure resource group to use
|
||||
##
|
||||
cloud: ""
|
||||
## Azure Cloud to use
|
||||
##
|
||||
resourceGroup: ""
|
||||
## Azure tenant ID to use
|
||||
##
|
||||
|
||||
Reference in New Issue
Block a user