File tree Expand file tree Collapse file tree 3 files changed +11
-1
lines changed
Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ type: application
1515# This is the chart version. This version number should be incremented each time you make changes
1616# to the chart and its templates, including the app version.
1717# Versions are expected to follow Semantic Versioning (https://semver.org/)
18- version : 3.32.0
18+ version : 3.32.1
1919
2020# This is the version number of the application being deployed. This version number should be
2121# incremented each time you make changes to the application. Versions are not expected to
Original file line number Diff line number Diff line change @@ -123,14 +123,18 @@ spec:
123123 containerPort : {{ .port }}
124124 protocol : {{ .protocol }}
125125 {{- end }}
126+ {{- if ne .Values.livenessProbe.enabled false }}
126127 livenessProbe :
127128 httpGet :
128129 path : /healthz
129130 port : http
131+ {{- end }}
132+ {{- if ne .Values.readinessProbe.enabled false }}
130133 readinessProbe :
131134 httpGet :
132135 path : /healthz
133136 port : http
137+ {{- end }}
134138 resources :
135139 {{- toYaml .Values.resources | nindent 12 }}
136140 {{- with .Values.nodeSelector }}
Original file line number Diff line number Diff line change @@ -111,6 +111,12 @@ resources: {}
111111 # cpu: 100m
112112 # memory: 1000Mi
113113
114+ livenessProbe :
115+ enabled : true
116+
117+ readinessProbe :
118+ enabled : true
119+
114120nodeSelector : {}
115121
116122tolerations : []
You can’t perform that action at this time.
0 commit comments