We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8f408b commit dc3f03cCopy full SHA for dc3f03c
charts/external-dns/templates/deployment.yaml
@@ -16,6 +16,9 @@ spec:
16
{{- include "external-dns.selectorLabels" . | nindent 6 }}
17
strategy:
18
{{- toYaml .Values.deploymentStrategy | nindent 4 }}
19
+ {{- with .Values.revisionHistoryLimit }}
20
+ revisionHistoryLimit: {{ . }}
21
+ {{- end }}
22
template:
23
metadata:
24
labels:
charts/external-dns/values.yaml
@@ -197,5 +197,8 @@ secretConfiguration:
197
deploymentStrategy:
198
type: Recreate
199
200
+# Optional field that specifies the number of old ReplicaSets to retain to allow rollback with the Deployment.
201
+revisionHistoryLimit:
202
+
203
# opt out of the service account token automounting (at the pod level)
204
automountServiceAccountToken:
0 commit comments