Skip to content

Commit

Permalink
Merge pull request #2488 from 5kr1p7/helm-add-txt-suffix
Browse files Browse the repository at this point in the history
Add txtSuffix value to Helm chart
  • Loading branch information
k8s-ci-robot committed Jan 5, 2022
2 parents 7c97d70 + 842b173 commit 9d79e2a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/external-dns/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: external-dns
description: ExternalDNS synchronizes exposed Kubernetes Services and Ingresses with DNS providers.
type: application
version: 1.7.0
version: 1.7.1
appVersion: 0.10.2
keywords:
- kubernetes
Expand Down
3 changes: 3 additions & 0 deletions charts/external-dns/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@ spec:
{{- if .Values.txtPrefix }}
- --txt-prefix={{ .Values.txtPrefix }}
{{- end }}
{{- if and (eq .Values.txtPrefix "") (ne .Values.txtSuffix "") }}
- --txt-suffix={{ .Values.txtSuffix }}
{{- end }}
{{- end }}
{{- range .Values.domainFilters }}
- --domain-filter={{ . }}
Expand Down
1 change: 1 addition & 0 deletions charts/external-dns/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ policy: upsert-only
registry: txt
txtOwnerId: ""
txtPrefix: ""
txtSuffix: ""

domainFilters: []

Expand Down

0 comments on commit 9d79e2a

Please sign in to comment.