We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25f8242 commit b9c761dCopy full SHA for b9c761d
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:
charts/external-dns/values.yaml
@@ -228,3 +228,6 @@ secretConfiguration:
228
subPath:
229
# -- `Secret` data.
230
data: {}
231
+
232
+# Specifies the number of old ReplicaSets to retain to allow rollback with the Deployment.
233
+revisionHistoryLimit:
0 commit comments