[bitnami/external-dns] Remove chart since we're using the one synced from 'helm/charts' repo

This commit is contained in:
juan131
2019-07-03 17:25:56 +02:00
parent 85819b9567
commit 52bb8d29aa
13 changed files with 1 additions and 1036 deletions
+1 -1
View File
@@ -13,6 +13,7 @@ $ helm search bitnami
- [Dokuwiki](https://github.com/helm/charts/tree/master/stable/dokuwiki)
- [Drupal](https://github.com/helm/charts/tree/master/stable/drupal)
- [ExternalDNS](https://github.com/helm/charts/tree/master/stable/external-dns)
- [Ghost](https://github.com/helm/charts/tree/master/stable/ghost)
- [JasperReports](https://github.com/helm/charts/tree/master/stable/jasperreports)
- [Joomla!](https://github.com/helm/charts/tree/master/stable/joomla)
@@ -47,7 +48,6 @@ $ helm search bitnami
- [Apache Spark](https://github.com/bitnami/charts/tree/master/bitnami/spark)
- [Cassandra](https://github.com/bitnami/charts/tree/master/bitnami/cassandra)
- [Elasticsearch](https://github.com/bitnami/charts/tree/master/bitnami/elasticsearch)
- [ExternalDNS](https://github.com/bitnami/charts/tree/master/bitnami/external-dns)
- [etcd](https://github.com/bitnami/charts/tree/master/bitnami/etcd)
- [HashiCorp Consul](https://github.com/bitnami/charts/tree/master/bitnami/consul)
- [Jenkins](https://github.com/bitnami/charts/tree/master/bitnami/jenkins)
-17
View File
@@ -1,17 +0,0 @@
apiVersion: v1
name: external-dns
version: 1.5.9
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:
- external-dns
- network
- dns
home: https://github.com/kubernetes-incubator/external-dns
sources:
- https://github.com/bitnami/bitnami-docker-external-dns
maintainers:
- name: Bitnami
email: containers@bitnami.com
engine: gotpl
icon: https://bitnami.com/assets/stacks/external-dns/img/external-dns-stack-110x117.png
-183
View File
@@ -1,183 +0,0 @@
# external-dns
[ExternalDNS](https://github.com/kubernetes-incubator/external-dns) is a Kubernetes addon that configures public DNS servers with information about exposed Kubernetes services to make them discoverable.
## TL;DR;
```console
$ helm install bitnami/external-dns
```
## Introduction
This chart bootstraps a [ExternalDNS](https://github.com/bitnami/bitnami-docker-external-dns) deployment on a [Kubernetes](http://kubernetes.io) cluster using the [Helm](https://helm.sh) package manager.
Bitnami charts can be used with [Kubeapps](https://kubeapps.com/) for deployment and management of Helm Charts in clusters. This Helm chart has been tested on top of [Bitnami Kubernetes Production Runtime](https://kubeprod.io/) (BKPR). Deploy BKPR to get automated TLS certificates, logging and monitoring for your applications.
## Prerequisites
- Kubernetes 1.4+ with Beta APIs enabled
- PV provisioner support in the underlying infrastructure
## Installing the Chart
To install the chart with the release name `my-release`:
```console
$ helm install --name my-release bitnami/external-dns
```
The command deploys ExternalDNS on the Kubernetes cluster in the default configuration. The [configuration](#configuration) section lists the parameters that can be configured during installation.
> **Tip**: List all releases using `helm list`
## Uninstalling the Chart
To uninstall/delete the `my-release` deployment:
```console
$ helm delete my-release
```
The command removes all the Kubernetes components associated with the chart and deletes the release.
## Configuration
The following table lists the configurable parameters of the external-dns chart and their default values.
| Parameter | Description | Default |
| ------------------------------------- | -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------- |
| `global.imageRegistry` | Global Docker image registry | `nil` |
| `global.imagePullSecrets` | Global Docker registry secret names as an array | `[]` (does not add image pull secrets to deployed pods) |
| `image.registry` | ExternalDNS image registry | `docker.io` |
| `image.repository` | ExternalDNS Image name | `bitnami/external-dns` |
| `image.tag` | ExternalDNS Image tag | `{TAG_NAME}` |
| `image.pullPolicy` | ExternalDNS image pull policy | `IfNotPresent` |
| `image.pullSecrets` | Specify docker-registry secret names as an array | `[]` (does not add image pull secrets to deployed pods) |
| `image.debug` | Specify if debug values should be set | `false` |
| `sources` | List of resource types to be observed for new DNS entries by ExternalDNS | `[service, ingress]` |
| `provider` | DNS provider where the DNS records will be created (mandatory). E.g.: aws, azure, google, ... | `nil` |
| `publishInternalServices` | Whether to publish DNS records for ClusterIP services or not | `false` |
| `policy` | Method to synchronise DNS records between sources and providers (accepted values: sync, upsert-only) | `upsert-only` |
| `registry` | Registry type (accepted values: txt, noop) | `txt` |
| `txtOwnerId` | TXT Registry Identifier | `"default"` |
| `txtPrefix` | Prefix to create a TXT record with a name following the pattern prefix.<CNAME record> | `nil` |
| `logLevel` | Verbosity of the ExternalDNS logs (accepted values: panic, debug, info, warn, error, fatal) | `info` |
| `domainFilters` | Limit possible target zones by domain suffixes | `[]` |
| `annotationFilter` | Filter sources managed by external-dns via annotation using label selector semantics | `nil` |
| `extraArgs` | Extra Arguments to passed to external-dns | `{}` |
| `extraEnv` | Extra env. variable to set on external-dns container | `{}` |
| `aws.accessKey` | `AWS_ACCESS_KEY_ID` to set (only if provider == 'aws') | `""` |
| `aws.secretKey` | `AWS_SECRET_ACCESS_KEY` to set (only if provider == 'aws') | `""` |
| `aws.region` | `AWS_DEFAULT_REGION` to set (only if provider == 'aws') | `us-east-1` |
| `aws.roleArn` | Use this `role_arn` if role credentials are used (only if provider == 'aws') | `""` |
| `aws.zoneType` | Filter for zones of this type (only if provider == 'aws', accepted values: public, private) | `""` |
| `azure.resoureGroup` | Azure Resource Group (only if provider == 'azure') | `""` |
| `cloudflare.apiKey` | `CF_API_KEY` to set in the environment (only if provider == 'cloudflare') | `""` |
| `cloudflare.email` | `CF_API_EMAIL` to set in the environment (only if provider == 'cloudflare') | `""` |
| `google.project` | Google project (only if provider == 'google') | `""` |
| `google.serviceAccountSecret` | Secret which contains credentials.json for Google (only if provider == 'google') | `""` |
| `service.type` | Kubernetes Service type | `ClusterIP` |
| `service.port` | ExternalDNS client port | `7979` |
| `service.nodePort` | Port to bind to for NodePort service type (client port) | `nil` |
| `service.annotations` | Annotations for ExternalDNS service | {} |
| `service.loadBalancerIP` | loadBalancerIP if ExternalDNS service type is `LoadBalancer` | `nil` |
| `rbac.create` | Wether to create & use RBAC resources or not | `false` |
| `rbac.serviceAccountName` | ServiceAccount (ignored if rbac.create == true) | `default` |
| `rbac.apiVersion` | Version of the RBAC API | `v1beta1` |
| `securityContext.enabled` | Enable security context | `true` |
| `securityContext.fsGroup` | Group ID for the container | `1001` |
| `securityContext.runAsUser` | User ID for the container | `1001` |
| `nodeSelector` | Node labels for pod assignment | `{}` |
| `tolerations` | Toleration labels for pod assignment | `[]` |
| `podAnnotations` | Additional annotations to apply to the pod. | `{}` |
| `replicas` | Desired number of ExternalDNS replicas | `1` |
| `resources` | CPU/Memory resource requests/limits | Memory: `256Mi`, CPU: `250m` |
| `livenessProbe.enabled` | Turn on and off liveness probe | `true` |
| `livenessProbe.initialDelaySeconds` | Delay before liveness probe is initiated | 10 |
| `livenessProbe.periodSeconds` | How often to perform the probe | 10 |
| `livenessProbe.timeoutSeconds` | When the probe times out | 5 |
| `livenessProbe.failureThreshold` | Minimum consecutive failures for the probe to be considered failed after having succeeded. | 2 |
| `livenessProbe.successThreshold` | Minimum consecutive successes for the probe to be considered successful after having failed | 1 |
| `readinessProbe.enabled` | Turn on and off readiness probe | `true` |
| `readinessProbe.initialDelaySeconds` | Delay before liveness probe is initiated | 5 |
| `readinessProbe.periodSeconds` | How often to perform the probe | 10 |
| `readinessProbe.timeoutSeconds` | When the probe times out | 5 |
| `readinessProbe.failureThreshold` | Minimum consecutive failures for the probe to be considered failed after having succeeded. | 6 |
| `readinessProbe.successThreshold` | Minimum consecutive successes for the probe to be considered successful after having failed | 1 |
| `metrics.enabled` | Enable prometheus to access external-dns metrics endpoint | `false` |
| `metrics.podAnnotations` | Annotations for enabling prometheus to access the metrics endpoint | {`prometheus.io/scrape: "true",prometheus.io/port: "7979"`} |
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
```console
$ helm install --name my-release \
--set auth.rootPassword=secretpassword bitnami/external-dns
```
Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,
```bash
$ helm install --name my-release -f values.yaml bitnami/external-dns
```
> **Tip**: You can use the default [values.yaml](values.yaml)
### Production configuration
This chart includes a `values-production.yaml` file where you can find some parameters oriented to production configuration in comparison to the regular `values.yaml`.
```console
$ helm install --name my-release -f ./values-production.yaml bitnami/external-dns
```
- Desired number of ExternalDNS replicas:
```diff
- replicas: 1
+ replicas: 3
```
- Enable prometheus to access external-dns metrics endpoint:
```diff
- metrics.enabled: false
+ metrics.enabled: true
```
### [Rolling VS Immutable tags](https://docs.bitnami.com/containers/how-to/understand-rolling-tags-containers/)
It is strongly recommended to use immutable tags in a production environment. This ensures your deployment does not change automatically if the same tag is updated with a different image.
Bitnami will release a new chart updating its containers if a new version of the main container, significant changes, or critical vulnerabilities exist.
## Tutorials
Find information about the requirements for each DNS provider on the link below:
- [ExternalDNS Tutorials](https://github.com/kubernetes-incubator/external-dns/tree/master/docs/tutorials)
For instance, to install ExternalDNS on AWS, you need to:
- Provide the K8s worker node which runs the cluster autoscaler with a minimum IAM policy (check [IAM permissions docs](https://github.com/kubernetes-incubator/external-dns/blob/master/docs/tutorials/aws.md#iam-permissions) for more information).
- Setup a hosted zone on Route53 and annotate the Hosted Zone ID and its associated "nameservers" as described on [these docs](https://github.com/kubernetes-incubator/external-dns/blob/master/docs/tutorials/aws.md#set-up-a-hosted-zone).
- Install ExternalDNS chart using the command below:
> Note: replace the placeholder HOSTED_ZONE_NAME with your hosted zoned name.
```bash
$ helm install --name my-release \
--set provider=aws \
--set aws.zoneType=public \
--set domainFilters=HOSTED_ZONE_NAME \
bitnami/external-dns
```
## Upgrading
### To 1.0.0
Backwards compatibility is not guaranteed unless you modify the labels used on the chart's deployments.
Use the workaround below to upgrade from versions previous to 1.0.0. The following example assumes that the release name is external-dns:
```console
$ kubectl patch deployment externaldns --type=json -p='[{"op": "remove", "path": "/spec/selector/matchLabels/chart"}]'
```
-52
View File
@@ -1,52 +0,0 @@
{{- if eq .Values.provider "aws" }}
{{- if or (empty .Values.aws.accessKey) (empty .Values.aws.secretKey) }}
###############################################################################
### ERROR: You chose 'aws' as your DNS provider and you did not set the ###
### AWS access&secret keys ###
###############################################################################
Indicate your AWS access&secret keys by installing this chart as shown below:
$ helm upgrade my-release bitnami/external-dns --set provider='aws',aws.accessKey='YOUR_ACCESS_KEY',aws.secretKey='YOUR_SECRET_KEY'
{{- end }}
{{- end }}
{{- if and (eq .Values.provider "google") (empty .Values.google.project) }}
###############################################################################
### ERROR: You chose 'google' as your DNS provider and you did not set ###
### the project (--set google.project="YOUR_GOOGLE_PROJECT" ###
###############################################################################
Indicate your Google Project by installing this chart as shown below:
$ helm upgrade my-release bitnami/external-dns --set provider='google',google.project='YOUR_GOOGLE_PROJECT'
{{- end }}
{{- if and (eq .Values.provider "cloudflare") (empty .Values.cloudflare.apiKey) }}
###############################################################################
### ERROR: You chose 'cloudflare' as your DNS provider and you did not set ###
### the ApiKey ###
###############################################################################
Indicate your ApiKey by installing this chart as shown below:
$ helm upgrade my-release bitnami/external-dns --set provider='cloudflare',cloudflare.apiKey='YOUR_API_KEY'
{{- end }}
{{- if empty .Values.provider }}
##############################################################################
### ERROR: You did not choose any DNS provider.
###############################################################################
Indicate your DNS provider by installing this chart as shown below:
$ helm upgrade my-release bitnami/external-dns --set provider='YOUR_DNS_PROVIDER'
Replace the placeholder YOUR_DNS_PROVIDER with a valid DNS provider (aws, azure, cloudflare, google, ...)
{{- end }}
** Please be patient while the chart is being deployed **
{{- if and (contains "bitnami/" .Values.image.repository) (not (.Values.image.tag | toString | regexFind "-r\\d+$|sha256:")) }}
WARNING: Rolling tag detected ({{ .Values.image.repository }}:{{ .Values.image.tag }}), please note that it is strongly recommended to avoid using rolling tags in a production environment.
+info https://docs.bitnami.com/containers/how-to/understand-rolling-tags-containers/
{{- end }}
@@ -1,96 +0,0 @@
{{/* vim: set filetype=mustache: */}}
{{/*
Expand the name of the chart.
*/}}
{{- define "external-dns.name" -}}
{{- default .Chart.Name .Values.nameOverride | trunc 24 -}}
{{- end -}}
{{/*
Create a default fully qualified app name.
We truncate at 24 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
*/}}
{{- define "external-dns.fullname" -}}
{{- $name := default .Chart.Name .Values.nameOverride -}}
{{- printf "%s-%s" .Release.Name $name | trunc 24 -}}
{{- end -}}
{{/*
Create chart name and version as used by the chart label.
*/}}
{{- define "external-dns.chart" -}}
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}}
{{- end -}}
{{/*
Return the proper external-dns image name
*/}}
{{- define "external-dns.image" -}}
{{- $registryName := .Values.image.registry -}}
{{- $repositoryName := .Values.image.repository -}}
{{- $tag := .Values.image.tag | toString -}}
{{/*
Helm 2.11 supports the assignment of a value to a variable defined in a different scope,
but Helm 2.9 and 2.10 doesn't support it, so we need to implement this if-else logic.
Also, we can't use a single if because lazy evaluation is not an option
*/}}
{{- if .Values.global }}
{{- if .Values.global.imageRegistry }}
{{- printf "%s/%s:%s" .Values.global.imageRegistry $repositoryName $tag -}}
{{- else -}}
{{- printf "%s/%s:%s" $registryName $repositoryName $tag -}}
{{- end -}}
{{- else -}}
{{- printf "%s/%s:%s" $registryName $repositoryName $tag -}}
{{- end -}}
{{- end -}}
{{/*
Return the AWS credentials file
*/}}
{{- define "external-dns.aws-credentials" }}
[default]
aws_access_key_id = {{ .Values.aws.accessKey }}
aws_secret_access_key = {{ .Values.aws.secretKey }}
{{ end }}
{{/*
Return the AWS configuration file
*/}}
{{- define "external-dns.aws-config" }}
[profile default]
{{- if .Values.aws.roleArn }}
role_arn = {{ .Values.aws.roleArn }}
{{- end }}
region = {{ .Values.aws.region }}
source_profile = default
{{ end }}
{{/*
Return the proper Docker Image Registry Secret Names
*/}}
{{- define "external-dns.imagePullSecrets" -}}
{{/*
Helm 2.11 supports the assignment of a value to a variable defined in a different scope,
but Helm 2.9 and 2.10 does not support it, so we need to implement this if-else logic.
Also, we can not use a single if because lazy evaluation is not an option
*/}}
{{- if .Values.global }}
{{- if .Values.global.imagePullSecrets }}
imagePullSecrets:
{{- range .Values.global.imagePullSecrets }}
- name: {{ . }}
{{- end }}
{{- else if .Values.image.pullSecrets }}
imagePullSecrets:
{{- range .Values.image.pullSecrets }}
- name: {{ . }}
{{- end }}
{{- end -}}
{{- else if .Values.image.pullSecrets }}
imagePullSecrets:
{{- range .Values.image.pullSecrets }}
- name: {{ . }}
{{- end }}
{{- end -}}
{{- end -}}
@@ -1,23 +0,0 @@
{{- if .Values.rbac.create }}
kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/{{ .Values.rbac.apiVersion }}
metadata:
name: {{ template "external-dns.fullname" . }}
labels:
app: {{ template "external-dns.name" . }}
chart: {{ template "external-dns.chart" . }}
release: {{ .Release.Name | quote }}
heritage: {{ .Release.Service | quote }}
rules:
- apiGroups:
- ""
- extensions
resources:
- ingresses
- services
- pods
verbs:
- get
- list
- watch
{{- end -}}
@@ -1,19 +0,0 @@
{{- if .Values.rbac.create }}
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/{{ .Values.rbac.apiVersion }}
metadata:
name: {{ template "external-dns.fullname" . }}
labels:
app: {{ template "external-dns.name" . }}
chart: {{ template "external-dns.chart" . }}
release: {{ .Release.Name | quote }}
heritage: {{ .Release.Service | quote }}
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: {{ template "external-dns.fullname" . }}
subjects:
- kind: ServiceAccount
name: {{ template "external-dns.fullname" . }}
namespace: {{ .Release.Namespace }}
{{- end -}}
@@ -1,219 +0,0 @@
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: {{ template "external-dns.fullname" . }}
labels:
app: {{ template "external-dns.name" . }}
chart: {{ template "external-dns.chart" . }}
release: {{ .Release.Name | quote }}
heritage: {{ .Release.Service | quote }}
spec:
selector:
matchLabels:
app: {{ template "external-dns.name" . }}
release: "{{ .Release.Name }}"
replicas: {{ .Values.replicas }}
template:
metadata:
name: {{ template "external-dns.fullname" . }}
labels:
app: {{ template "external-dns.name" . }}
chart: {{ template "external-dns.chart" . }}
release: {{ .Release.Name | quote }}
heritage: {{ .Release.Service | quote }}
{{- if or .Values.podAnnotations .Values.metrics.enabled }}
annotations:
{{- if .Values.podAnnotations }}
{{ toYaml .Values.podAnnotations | indent 8 }}
{{- end }}
{{- if .Values.metrics.podAnnotations }}
{{ toYaml .Values.metrics.podAnnotations | indent 8 }}
{{- end }}
{{- end }}
spec:
{{- include "external-dns.imagePullSecrets" . | indent 6 }}
{{- if .Values.securityContext.enabled }}
securityContext:
fsGroup: {{ .Values.securityContext.fsGroup }}
runAsUser: {{ .Values.securityContext.runAsUser }}
{{- end }}
{{- if .Values.nodeSelector }}
nodeSelector:
{{ toYaml .Values.nodeSelector | indent 8 }}
{{- end }}
{{- if .Values.tolerations }}
tolerations:
{{ toYaml .Values.tolerations | indent 8 }}
{{- end }}
{{- if .Values.rbac.create }}
serviceAccountName: {{ template "external-dns.fullname" . }}
{{- else }}
serviceAccountName: {{ .Values.rbac.serviceAccountName | quote }}
{{- end }}
containers:
- name: {{ template "external-dns.name" . }}
image: "{{ template "external-dns.image" . }}"
imagePullPolicy: {{ .Values.image.pullPolicy | quote }}
args:
# Generic arguments
- --policy={{ .Values.policy }}
- --provider={{ required "A provider is required to deploy the chart" .Values.provider }}
- --registry={{ .Values.registry }}
{{- if .Values.logLevel }}
- --log-level={{ .Values.logLevel }}
{{- end }}
{{- if .Values.publishInternalServices }}
- --publish-internal-services
{{- end }}
{{- if eq .Values.registry "txt" }}
- --txt-owner-id={{ .Values.txtOwnerId }}
{{- if .Values.txtPrefix }}
- --txt-prefix={{ .Values.txtPrefix }}
{{- end }}
{{- end }}
{{- range .Values.sources }}
- --source={{ . }}
{{- end }}
{{- range .Values.domainFilters }}
- --domain-filter={{ . }}
{{- end }}
{{- if .Values.annotationFilter }}
- --annotation-filter={{ .Values.annotationFilter }}
{{- end }}
{{- range $key, $value := .Values.extraArgs }}
{{- if $value }}
- --{{ $key }}={{ $value }}
{{- else }}
- --{{ $key }}
{{- end }}
{{- end }}
{{- if eq .Values.provider "aws" }}
{{- if .Values.aws.zoneType }}
- --aws-zone-type={{ .Values.aws.zoneType }}
{{- end }}
{{- end }}
{{- if eq .Values.provider "azure" }}
{{- if .Values.azure.resoureGroup }}
--azure-resource-group={{ .Values.azure.resoureGroup }}
{{- end }}
{{- end }}
{{- if eq .Values.provider "google" }}
{{- if .Values.google.project }}
- --google-project={{ .Values.google.project }}
{{- end }}
{{- end }}
env:
{{- if .Values.image.debug }}
- name: BASH_DEBUG
value: "1"
- name: NAMI_DEBUG
value: "1"
- name: NAMI_LOG_LEVEL
value: "trace8"
{{- end }}
{{- $root := . -}}
{{- range $key, $value := .Values.extraEnv }}
- name: {{ $key }}
valueFrom:
secretKeyRef:
name: {{ template "external-dns.fullname" $root }}
key: {{ $key }}
{{- end }}
{{- if eq .Values.provider "aws" }}
- name: AWS_DEFAULT_REGION
value: {{ .Values.aws.region }}
- name: AWS_CONFIG_FILE
value: /etc/secrets/aws/config
- name: AWS_SHARED_CREDENTIALS_FILE
value: /etc/secrets/aws/credentials
{{- end }}
{{- if eq .Values.provider "cloudflare" }}
- name: CF_API_KEY
valueFrom:
secretKeyRef:
name: {{ template "external-dns.fullname" . }}
key: cloudflare_api_key
- name: CF_API_EMAIL
value: {{ .Values.cloudflare.email | quote }}
{{- end }}
{{- if eq .Values.provider "google" }}
{{- if .Values.google.serviceAccountSecret }}
- name: GOOGLE_APPLICATION_CREDENTIALS
value: /etc/secrets/service-account/credentials.json
{{- end }}
{{- end }}
ports:
- containerPort: {{ .Values.service.port }}
{{- if .Values.livenessProbe.enabled }}
livenessProbe:
httpGet:
path: /healthz
port: {{ .Values.service.port }}
initialDelaySeconds: {{ .Values.livenessProbe.initialDelaySeconds }}
periodSeconds: {{ .Values.livenessProbe.periodSeconds }}
timeoutSeconds: {{ .Values.livenessProbe.timeoutSeconds }}
successThreshold: {{ .Values.livenessProbe.successThreshold }}
failureThreshold: {{ .Values.livenessProbe.failureThreshold }}
{{- end }}
{{- if .Values.readinessProbe.enabled }}
readinessProbe:
httpGet:
path: /healthz
port: {{ .Values.service.port }}
initialDelaySeconds: {{ .Values.readinessProbe.initialDelaySeconds }}
periodSeconds: {{ .Values.readinessProbe.periodSeconds }}
timeoutSeconds: {{ .Values.readinessProbe.timeoutSeconds }}
successThreshold: {{ .Values.readinessProbe.successThreshold }}
failureThreshold: {{ .Values.readinessProbe.failureThreshold }}
{{- end }}
resources:
{{ toYaml .Values.resources | indent 10 }}
volumeMounts:
{{- if eq .Values.provider "aws" }}
- name: aws-credentials
mountPath: /etc/secrets/aws/
readOnly: true
{{- end }}
{{- if eq .Values.provider "azure" }}
- name: azure-config-file
mountPath: /etc/kubernetes/azure.json
readOnly: true
{{- end }}
{{- if eq .Values.provider "google" }}
{{- if .Values.google.serviceAccountSecret }}
- name: google-service-account
mountPath: /etc/secrets/service-account/
{{- end }}
{{- end }}
volumes:
{{- if eq .Values.provider "aws" }}
- name: aws-credentials
secret:
secretName: {{ template "external-dns.fullname" . }}
{{- end }}
{{- if eq .Values.provider "azure" }}
- name: azure-config-file
hostPath:
path: /etc/kubernetes/azure.json
type: File
{{- end }}
{{- if eq .Values.provider "google" }}
{{- if .Values.google.serviceAccountSecret }}
- name: google-service-account
secret:
secretName: {{ .Values.google.serviceAccountSecret | quote }}
{{- end}}
{{- end}}
@@ -1,23 +0,0 @@
{{- if or (and .Values.aws.secretKey .Values.aws.accessKey) .Values.cloudflare.apiKey .Values.extraEnv -}}
apiVersion: v1
kind: Secret
metadata:
name: {{ template "external-dns.fullname" . }}
labels:
app: {{ template "external-dns.name" . }}
chart: {{ template "external-dns.chart" . }}
release: {{ .Release.Name | quote }}
heritage: {{ .Release.Service | quote }}
type: Opaque
data:
{{- if eq .Values.provider "aws" }}
credentials: {{ include "external-dns.aws-credentials" . | b64enc | quote }}
config: {{ include "external-dns.aws-config" . | b64enc | quote }}
{{- end}}
{{- if eq .Values.provider "cloudflare" }}
cloudflare_api_key: {{ .Values.cloudflare.apiKey | b64enc | quote }}
{{- end }}
{{- range $key, $value := .Values.extraEnv }}
{{ $key }}: {{ $value | b64enc | quote }}
{{- end }}
{{- end }}
@@ -1,11 +0,0 @@
{{- if .Values.rbac.create }}
apiVersion: v1
kind: ServiceAccount
metadata:
name: {{ template "external-dns.fullname" . }}
labels:
app: {{ template "external-dns.name" . }}
chart: {{ template "external-dns.chart" . }}
release: {{ .Release.Name | quote }}
heritage: {{ .Release.Service | quote }}
{{- end }}
-28
View File
@@ -1,28 +0,0 @@
apiVersion: v1
kind: Service
metadata:
name: {{ template "external-dns.fullname" . }}
labels:
app: {{ template "external-dns.name" . }}
chart: {{ template "external-dns.chart" . }}
release: {{ .Release.Name | quote }}
heritage: {{ .Release.Service | quote }}
{{- if .Values.service.annotations }}
annotations:
{{ toYaml .Values.service.annotations | indent 4 }}
{{- end }}
spec:
type: {{ .Values.service.type }}
{{- if and (eq .Values.service.type "LoadBalancer") .Values.service.loadBalancerIP }}
loadBalancerIP: {{ .Values.service.loadBalancerIP }}
{{- end }}
ports:
- port: {{ .Values.service.port }}
protocol: TCP
targetPort: {{ .Values.service.port }}
{{- if and (eq .Values.service.type "NodePort") (not (empty .Values.service.nodePort)) }}
nodePort: {{ .Values.service.nodePort }}
{{- end }}
selector:
app: {{ template "external-dns.name" . }}
release: {{ .Release.Name | quote }}
-182
View File
@@ -1,182 +0,0 @@
## Global Docker image parameters
## Please, note that this will override the image parameters, including dependencies, configured to use the global value
## Current available global Docker image parameters: imageRegistry and imagePullSecrets
##
# global:
# imageRegistry: myRegistryName
# imagePullSecrets:
# - myRegistryKeySecretName
## Bitnami external-dns image version
## ref: https://hub.docker.com/r/bitnami/external-dns/tags/
##
image:
registry: docker.io
repository: bitnami/external-dns
tag: 0.5.14-debian-9-r28
## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images
##
pullPolicy: IfNotPresent
## Optionally specify an array of imagePullSecrets.
## Secrets must be manually created in the namespace.
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
##
# pullSecrets:
# - myRegistryKeySecretName
## Set to true if you would like to see extra information on logs
## It turns BASH and NAMI debugging in minideb
## ref: https://github.com/bitnami/minideb-extras/#turn-on-bash-debugging
debug: false
## K8s resources type to be observed for new DNS entries by ExternalDNS
sources:
- service
- ingress
## DNS provider where the DNS records will be created. Available providers are:
## - aws, azure, cloudflare, google
# provider: aws
# Whether to publish DNS records for ClusterIP services or not (optional)
publishInternalServices: false
## Method to syncrhonise DNS records between sources and providers. Available methos are:
## - sync, upsert-only
policy: upsert-only
## Registry Type. Available types are: txt, noop
## ref: https://github.com/kubernetes-incubator/external-dns/blob/master/docs/proposal/registry.md
registry: "txt"
## TXT Registry Identifier
txtOwnerId: "default"
## Prefix to create a TXT record with a name following the pattern prefix.<CNAME record>
# txtPrefix: ""
## Verbosity of the ExternalDNS logs. Available values are:
## - panic, debug, info, warn, error, fatal
logLevel: info
## Limit possible target zones by domain suffixes (optional)
domainFilters: []
## Filter sources managed by external-dns via annotation using label selector semantics (optional)
# annotationFilter: ""
## Extra Arguments to passed to external-dns
extraArgs: {}
## Extra env. variable to set on external-dns container
extraEnv: {}
# AWS credentials to be set via arguments/env. variables
aws:
secretKey: ""
accessKey: ""
roleArn: ""
region: "us-east-1"
# Zone Filter. Available values are: public, private
zoneType: ""
# Azure credentials to be set via arguments/env. variables
azure:
resoureGroup: ""
# Cloudflare credentials to be set via env. variables
cloudflare:
apiKey: ""
email: ""
# GCE credentials to be set via arguments/env. variables
google:
project: ""
serviceAccountSecret: ""
## Kubernetes svc configutarion
##
service:
## Kubernetes svc type
##
type: ClusterIP
port: 7979
## Specify the nodePort value for the LoadBalancer and NodePort service types for the client port
## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport
##
# nodePort:
## Provide any additional annotations which may be required. This can be used to
## set the LoadBalancer service type to internal only.
## ref: https://kubernetes.io/docs/concepts/services-networking/service/#internal-load-balancer
##
annotations: {}
## Use loadBalancerIP to request a specific static IP,
## otherwise leave blank
##
# loadBalancerIP:
## RBAC parameteres
## https://kubernetes.io/docs/reference/access-authn-authz/rbac/
##
rbac:
create: false
## Service Account for pods
## https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/
##
serviceAccountName: default
## RBAC API version
apiVersion: v1beta1
## Kubernetes Security Context
## https://kubernetes.io/docs/tasks/configure-pod-container/security-context/
##
securityContext:
enabled: true
fsGroup: 1001
runAsUser: 1001
## Node labels and tolerations for pod assignment
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#taints-and-tolerations-beta-feature
nodeSelector: {}
tolerations: []
## Annotations for external-dns pods
podAnnotations: {}
## Configure resource requests and limits
## ref: http://kubernetes.io/docs/user-guide/compute-resources/
##
resources: {}
# limits:
# cpu: 50m
# memory: 100Mi
# requests:
# memory: 50Mi
# cpu: 10m
## Replica count
replicas: 3
## Configure extra options for liveness and readiness probes
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes)
livenessProbe:
enabled: true
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 2
successThreshold: 1
readinessProbe:
enabled: true
initialDelaySeconds: 5
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 6
successThreshold: 1
metrics:
enabled: true
podAnnotations:
prometheus.io/scrape: "true"
prometheus.io/port: "7979"
-182
View File
@@ -1,182 +0,0 @@
## Global Docker image parameters
## Please, note that this will override the image parameters, including dependencies, configured to use the global value
## Current available global Docker image parameters: imageRegistry and imagePullSecrets
##
# global:
# imageRegistry: myRegistryName
# imagePullSecrets:
# - myRegistryKeySecretName
## Bitnami external-dns image version
## ref: https://hub.docker.com/r/bitnami/external-dns/tags/
##
image:
registry: docker.io
repository: bitnami/external-dns
tag: 0.5.14-debian-9-r28
## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images
##
pullPolicy: IfNotPresent
## Optionally specify an array of imagePullSecrets.
## Secrets must be manually created in the namespace.
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
##
# pullSecrets:
# - myRegistryKeySecretName
## Set to true if you would like to see extra information on logs
## It turns BASH and NAMI debugging in minideb
## ref: https://github.com/bitnami/minideb-extras/#turn-on-bash-debugging
debug: false
## K8s resources type to be observed for new DNS entries by ExternalDNS
sources:
- service
- ingress
## DNS provider where the DNS records will be created. Available providers are:
## - aws, azure, cloudflare, google
# provider: aws
# Whether to publish DNS records for ClusterIP services or not (optional)
publishInternalServices: false
## Method to syncrhonise DNS records between sources and providers. Available methos are:
## - sync, upsert-only
policy: upsert-only
## Registry Type. Available types are: txt, noop
## ref: https://github.com/kubernetes-incubator/external-dns/blob/master/docs/proposal/registry.md
registry: "txt"
## TXT Registry Identifier
txtOwnerId: "default"
## Prefix to create a TXT record with a name following the pattern prefix.<CNAME record>
# txtPrefix: ""
## Verbosity of the ExternalDNS logs. Available values are:
## - panic, debug, info, warn, error, fatal
logLevel: info
## Limit possible target zones by domain suffixes (optional)
domainFilters: []
## Filter sources managed by external-dns via annotation using label selector semantics (optional)
# annotationFilter: ""
## Extra Arguments to passed to external-dns
extraArgs: {}
## Extra env. variable to set on external-dns container
extraEnv: {}
# AWS credentials to be set via arguments/env. variables
aws:
secretKey: ""
accessKey: ""
roleArn: ""
region: "us-east-1"
# Zone Filter. Available values are: public, private
zoneType: ""
# Azure credentials to be set via arguments/env. variables
azure:
resoureGroup: ""
# Cloudflare credentials to be set via env. variables
cloudflare:
apiKey: ""
email: ""
# GCE credentials to be set via arguments/env. variables
google:
project: ""
serviceAccountSecret: ""
## Kubernetes svc configutarion
##
service:
## Kubernetes svc type
##
type: ClusterIP
port: 7979
## Specify the nodePort value for the LoadBalancer and NodePort service types for the client port
## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport
##
# nodePort:
## Provide any additional annotations which may be required. This can be used to
## set the LoadBalancer service type to internal only.
## ref: https://kubernetes.io/docs/concepts/services-networking/service/#internal-load-balancer
##
annotations: {}
## Use loadBalancerIP to request a specific static IP,
## otherwise leave blank
##
# loadBalancerIP:
## RBAC parameteres
## https://kubernetes.io/docs/reference/access-authn-authz/rbac/
##
rbac:
create: false
## Service Account for pods
## https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/
##
serviceAccountName: default
## RBAC API version
apiVersion: v1beta1
## Kubernetes Security Context
## https://kubernetes.io/docs/tasks/configure-pod-container/security-context/
##
securityContext:
enabled: true
fsGroup: 1001
runAsUser: 1001
## Node labels and tolerations for pod assignment
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#taints-and-tolerations-beta-feature
nodeSelector: {}
tolerations: []
## Annotations for external-dns pods
podAnnotations: {}
## Configure resource requests and limits
## ref: http://kubernetes.io/docs/user-guide/compute-resources/
##
resources: {}
# limits:
# cpu: 50m
# memory: 100Mi
# requests:
# memory: 50Mi
# cpu: 10m
## Replica count
replicas: 1
## Configure extra options for liveness and readiness probes
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes)
livenessProbe:
enabled: true
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 2
successThreshold: 1
readinessProbe:
enabled: true
initialDelaySeconds: 5
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 6
successThreshold: 1
metrics:
enabled: false
podAnnotations:
prometheus.io/scrape: "true"
prometheus.io/port: "7979"