File tree Expand file tree Collapse file tree 3 files changed +13
-1
lines changed
charts/multi-service-deployment Expand file tree Collapse file tree 3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ type: application
7
7
# This is the chart version. This version number should be incremented each time you make changes
8
8
# to the chart and its templates, including the app version.
9
9
# Versions are expected to follow Semantic Versioning (https://semver.org/)
10
- version : 0.1.8
10
+ version : 0.1.9
11
11
12
12
# This is the version number of the application being deployed. This version number should be
13
13
# incremented each time you make changes to the application. Versions are not expected to
Original file line number Diff line number Diff line change 10
10
replicas : {{ .Values.replicaCount }}
11
11
{{- end }}
12
12
{{- end }}
13
+ minReadySeconds : {{ .Values.minReadySeconds | default 30 }}
14
+ revisionHistoryLimit : {{ .Values.revisionHistoryLimit | default 3 }}
13
15
selector :
14
16
matchLabels :
15
17
{{- include "multi-service-deployment.selectorLabels" . | nindent 6 }}
25
27
{{- toYaml .Values.podLabels | nindent 8 }}
26
28
{{- end }}
27
29
spec :
30
+ terminationGracePeriodSeconds : {{ .Values.terminationGracePeriodSeconds | default 60 }}
28
31
{{- with .Values.imagePullSecrets }}
29
32
imagePullSecrets :
30
33
{{- toYaml . | nindent 8 }}
53
56
{{- toYaml .Values.livenessProbe | nindent 12 }}
54
57
readinessProbe :
55
58
{{- toYaml .Values.readinessProbe | nindent 12 }}
59
+ startupProbe :
60
+ {{- toYaml .Values.startupProbe | nindent 12 }}
56
61
resources :
57
62
{{- toYaml .Values.resources | nindent 12 }}
58
63
{{- with .Values.nodeSelector }}
Original file line number Diff line number Diff line change @@ -150,3 +150,10 @@ prometheusRule:
150
150
# severity: page
151
151
# annotations:
152
152
# summary: High request latency
153
+
154
+ revisionHistoryLimit : 3
155
+ minReadySeconds : 30
156
+ terminationGracePeriodSeconds : 60
157
+ livenessProbe : {}
158
+ readinessProbe : {}
159
+ startupProbe : {}
You can’t perform that action at this time.
0 commit comments