Skip to content

Commit 7a970a7

Browse files
authored
fix(http-add-on): use admin port for interceptor health probes (#817)
The interceptor's /livez and /readyz endpoints have moved from the proxy port to the admin port. Changes: - Update livenessProbe port from proxy to admin - Update readinessProbe port from proxy to admin Signed-off-by: Vincent Link <vlink@redhat.com>
1 parent 54497ae commit 7a970a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

http-add-on/templates/interceptor/deployment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,11 +110,11 @@ spec:
110110
livenessProbe:
111111
httpGet:
112112
path: /livez
113-
port: proxy
113+
port: admin
114114
readinessProbe:
115115
httpGet:
116116
path: /readyz
117-
port: proxy
117+
port: admin
118118
resources:
119119
{{- toYaml .Values.interceptor.resources | nindent 10 }}
120120
{{- if .Values.securityContext.interceptor }}

0 commit comments

Comments
 (0)