This repository was archived by the owner on Mar 11, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +18
-3
lines changed Expand file tree Collapse file tree 5 files changed +18
-3
lines changed Original file line number Diff line number Diff line change 3131 {{- if not .Values.autoscaling.enabled }}
3232 replicas : {{ .Values.replicaCount }}
3333 {{- end }}
34+ {{- if .Values.revisionHistoryLimit }}
35+ revisionHistoryLimit : {{ .Values.revisionHistoryLimit }}
36+ {{- end }}
3437 selector :
3538 matchLabels :
3639 {{- include "common.labels.matchLabels" . | nindent 6 }}
Original file line number Diff line number Diff line change 9999 {{ toYaml . | nindent 12 }}
100100 {{- end }}
101101 spec :
102+ {{- with .Values.revisionHistoryLimit }}
103+ revisionHistoryLimit : {{ .Values.revisionHistoryLimit }}
104+ {{- end }}
102105 {{- with .Values.elasticsearch.affinity }}
103106 affinity :
104107 {{- tpl (toYaml .) $context | nindent 12 }}
@@ -144,4 +147,4 @@ spec:
144147 memory : 100Mi
145148 {{- end }}
146149 {{- end }}
147- {{- end }}
150+ {{- end }}
Original file line number Diff line number Diff line change 8686 {{ toYaml . | nindent 8 }}
8787 {{- end }}
8888 spec :
89+ {{- if .Values.revisionHistoryLimit }}
90+ revisionHistoryLimit : {{ .Values.revisionHistoryLimit }}
91+ {{- end }}
8992 {{- with .Values.kibana.affinity }}
9093 affinity :
9194 {{- tpl (toYaml .) $context | nindent 8 }}
@@ -170,4 +173,4 @@ spec:
170173 {{- end }}
171174 {{- if .Values.kibana.extraContainers }}
172175 {{- toYaml .Values.kibana.extraContainers | nindent 8 }}
173- {{- end }}
176+ {{- end }}
Original file line number Diff line number Diff line change @@ -30,6 +30,9 @@ metadata:
3030 name : {{ include "common.names.fullname" . }}-nginx
3131spec :
3232 replicas : 1
33+ {{- if .Values.revisionHistoryLimit }}
34+ revisionHistoryLimit : {{ .Values.revisionHistoryLimit }}
35+ {{- end }}
3336 selector :
3437 matchLabels :
3538 {{- include "common.labels.matchLabels" . | nindent 6 }}
8285 priorityClassName : {{ .Values.priorityClassName }}
8386 {{- end }}
8487
85- {{- end }}
88+ {{- end }}
Original file line number Diff line number Diff line change 11replicaCount : 1
22
3+ # -- The number of old ReplicaSets to retain to allow rollback.
4+ # revisionHistoryLimit: 10
5+
36image :
47 # -- The repository for the image. By default,
58 # this points to the Software AG container repository.
You can’t perform that action at this time.
0 commit comments