We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1350ef7 commit 07e41a7Copy full SHA for 07e41a7
charts/external-dns/templates/deployment.yaml
@@ -16,8 +16,8 @@ spec:
16
{{- include "external-dns.selectorLabels" . | nindent 6 }}
17
strategy:
18
{{- toYaml .Values.deploymentStrategy | nindent 4 }}
19
- {{- with .Values.revisionHistoryLimit }}
20
- revisionHistoryLimit: {{ . }}
+ {{- if or (kindIs "float64" .Values.revisionHistoryLimit) (kindIs "int64" .Values.revisionHistoryLimit) }}
+ revisionHistoryLimit: {{ .Values.revisionHistoryLimit | int64 }}
21
{{- end }}
22
template:
23
metadata:
0 commit comments