Skip to content

Commit 0e9aab2

Browse files
authored
Merge pull request #230 from martinblascop/tpl-affinity
fix: use tpl function for affinity values
2 parents 3adf077 + db7cc1c commit 0e9aab2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

charts/coredns/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
22
name: coredns
3-
version: 1.43.2
3+
version: 1.43.3
44
appVersion: 1.12.3
55
home: https://coredns.io
66
icon: https://coredns.io/images/CoreDNS_Colour_Horizontal.png
@@ -20,4 +20,4 @@ type: application
2020
annotations:
2121
artifacthub.io/changes: |
2222
- kind: changed
23-
description: Bump to CoreDNS 1.12.3
23+
description: Use tpl function for affinity values

charts/coredns/templates/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ spec:
7474
{{- end }}
7575
{{- if .Values.affinity }}
7676
affinity:
77-
{{ toYaml .Values.affinity | indent 8 }}
77+
{{ tpl (toYaml .Values.affinity) $ | indent 8 }}
7878
{{- end }}
7979
{{- if .Values.topologySpreadConstraints }}
8080
topologySpreadConstraints:

0 commit comments

Comments
 (0)