File tree Expand file tree Collapse file tree 3 files changed +24
-1
lines changed
charts/ext-postgres-operator Expand file tree Collapse file tree 3 files changed +24
-1
lines changed Original file line number Diff line number Diff line change @@ -8,5 +8,5 @@ description: |
88
99type : application
1010
11- version : 2.0.1
11+ version : 2.1.0
1212appVersion : " 2.0.0"
Original file line number Diff line number Diff line change 5656 - name : {{ $key }}
5757 value : {{ $value | quote }}
5858 {{- end }}
59+ {{- if .Values.livenessProbe }}
60+ livenessProbe :
61+ {{- toYaml .Values.livenessProbe | nindent 12 }}
62+ {{- end }}
63+ {{- if .Values.readinessProbe }}
64+ readinessProbe :
65+ {{- toYaml .Values.readinessProbe | nindent 12 }}
66+ {{- end }}
5967 {{- if .Values.resources }}
6068 resources :
6169 {{- toYaml .Values.resources | nindent 12 }}
Original file line number Diff line number Diff line change @@ -58,6 +58,21 @@ resources:
5858 # cpu: 100m
5959 # memory: 128Mi
6060
61+
62+ # Define liveness and readiness Probes
63+ livenessProbe :
64+ httpGet :
65+ path : /healthz
66+ port : 8081
67+ initialDelaySeconds : 15
68+ periodSeconds : 20
69+ readinessProbe :
70+ httpGet :
71+ path : /readyz
72+ port : 8081
73+ initialDelaySeconds : 5
74+ periodSeconds : 10
75+
6176# Which namespace to watch in kubernetes, empty string means all namespaces
6277watchNamespace : " "
6378
You can’t perform that action at this time.
0 commit comments