Merge pull request #4053 from bodgit/fix-revision-history-limit

fix: Allow revisionHistoryLimit to be set to 0
This commit is contained in:
Kubernetes Prow Robot 2023-12-12 19:28:02 +01:00 committed by GitHub
commit 5a8a9f914a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,8 +16,8 @@ spec:
{{- include "external-dns.selectorLabels" . | nindent 6 }} {{- include "external-dns.selectorLabels" . | nindent 6 }}
strategy: strategy:
{{- toYaml .Values.deploymentStrategy | nindent 4 }} {{- toYaml .Values.deploymentStrategy | nindent 4 }}
{{- with .Values.revisionHistoryLimit }} {{- if or (kindIs "float64" .Values.revisionHistoryLimit) (kindIs "int64" .Values.revisionHistoryLimit) }}
revisionHistoryLimit: {{ . }} revisionHistoryLimit: {{ .Values.revisionHistoryLimit | int64 }}
{{- end }} {{- end }}
template: template:
metadata: metadata: