We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4676e7f commit 7498b0cCopy full SHA for 7498b0c
charts/kubechecks/templates/deployment.yaml
@@ -7,6 +7,7 @@ metadata:
7
{{- end}}
8
labels: {{- include "kubechecks.labels" . | nindent 4 }}
9
spec:
10
+ revisionHistoryLimit: {{ .Values.deployment.revisionHistoryLimit }}
11
replicas: {{ .Values.deployment.replicaCount }}
12
selector:
13
matchLabels:
charts/kubechecks/values.schema.json
@@ -93,6 +93,9 @@
93
"readinessProbe": {
94
"type": "object"
95
},
96
+ "revisionHistoryLimit": {
97
+ "type": "integer"
98
+ },
99
"replicaCount": {
100
"type": "integer"
101
charts/kubechecks/values.yaml
@@ -40,6 +40,7 @@ deployment:
40
memory: 256Mi
41
cpu: 200m
42
43
+ revisionHistoryLimit: 10
44
replicaCount: 1
45
46
image:
0 commit comments