Skip to content

Commit 6063ea9

Browse files
authored
Added annotation filter (#10)
1 parent a4b2d6d commit 6063ea9

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

charts/external-dns/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: external-dns
33
description: ExternalDNS synchronizes exposed Kubernetes Services and Ingresses with DNS providers.
44
type: application
5-
version: 1.13.0-20230809-1331-adobe
5+
version: 1.13.0-20230821-1051-adobe
66
appVersion: 0.13.5-20230727-1700-adobe
77
keywords:
88
- kubernetes

charts/external-dns/templates/deployment.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,9 @@ spec:
9494
{{- if .Values.txtPrefix }}
9595
- --txt-prefix={{ .Values.txtPrefix }}
9696
{{- end }}
97+
{{- if .Values.annotationFilter }}
98+
- --annotationFilter={{ .Values.annotationFilter }}
99+
{{- end }}
97100
{{- if and (eq .Values.txtPrefix "") (ne .Values.txtSuffix "") }}
98101
- --txt-suffix={{ .Values.txtSuffix }}
99102
{{- end }}

charts/external-dns/values.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,9 @@ sources:
162162

163163
policy: upsert-only
164164

165+
# Filters out resources based on annotations
166+
annotationFilter: ""
167+
165168
# Specifies the registry for storing ownership and labels.
166169
# Valid values are "aws-sd", "noop", "dynamodb", and "txt".
167170
registry: txt

0 commit comments

Comments
 (0)