File tree Expand file tree Collapse file tree 4 files changed +8
-7
lines changed Expand file tree Collapse file tree 4 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ appVersion: v2.1.6
3
3
description : A Helm chart for Kubernetes
4
4
name : zot
5
5
type : application
6
- version : 0.1.76
6
+ version : 0.1.77
Original file line number Diff line number Diff line change 87
87
livenessProbe :
88
88
initialDelaySeconds : 5
89
89
httpGet :
90
- path : /v2/
90
+ path : /livez
91
91
port : 5000
92
92
scheme : {{ .Values.httpGet.scheme }}
93
93
{{- if .Values.authHeader }}
98
98
readinessProbe :
99
99
initialDelaySeconds : 5
100
100
httpGet :
101
- path : /v2/
101
+ path : /readyz
102
102
port : 5000
103
103
scheme : {{ .Values.httpGet.scheme }}
104
104
{{- if .Values.authHeader }}
@@ -111,7 +111,7 @@ spec:
111
111
periodSeconds : {{ .Values.startupProbe.periodSeconds }}
112
112
failureThreshold : {{ .Values.startupProbe.failureThreshold }}
113
113
httpGet :
114
- path : /v2/
114
+ path : /startupz
115
115
port : 5000
116
116
scheme : {{ .Values.httpGet.scheme }}
117
117
{{- if .Values.authHeader }}
Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ spec:
103
103
livenessProbe :
104
104
initialDelaySeconds : 5
105
105
httpGet :
106
- path : /v2/
106
+ path : /livez
107
107
port : 5000
108
108
scheme : {{ .Values.httpGet.scheme }}
109
109
{{- if .Values.authHeader }}
@@ -114,7 +114,7 @@ spec:
114
114
readinessProbe :
115
115
initialDelaySeconds : 5
116
116
httpGet :
117
- path : /v2/
117
+ path : /readyz
118
118
port : 5000
119
119
scheme : {{ .Values.httpGet.scheme }}
120
120
{{- if .Values.authHeader }}
@@ -127,7 +127,7 @@ spec:
127
127
periodSeconds : {{ .Values.startupProbe.periodSeconds }}
128
128
failureThreshold : {{ .Values.startupProbe.failureThreshold }}
129
129
httpGet :
130
- path : /v2/
130
+ path : /startupz
131
131
port : 5000
132
132
scheme : {{ .Values.httpGet.scheme }}
133
133
{{- if .Values.authHeader }}
Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ ingress:
58
58
# in configuration, to prevent failures, the scheme must be set to 'HTTPS'.
59
59
httpGet :
60
60
scheme : HTTP
61
+ port : 5000
61
62
# By default, Kubernetes considers a Pod healthy if the liveness probe returns
62
63
# successfully. However, sometimes applications need additional startup time on
63
64
# their first initialization. By defining a startupProbe, we can allow the
You can’t perform that action at this time.
0 commit comments