Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 96d7f3d

Browse files
rahtrazun
authored andcommittedAug 21, 2023
Added annotation filter (#10)
1 parent a4b2d6d commit 96d7f3d

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed
 

‎charts/external-dns/Chart.yaml

+1-1
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-1134-adobe
66
appVersion: 0.13.5-20230727-1700-adobe
77
keywords:
88
- kubernetes

‎charts/external-dns/templates/deployment.yaml

+3
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+
- --annotation-filter={{ .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

+3
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)
Please sign in to comment.