You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I recently switched some services from protocol HTTPS to HTTP2 and noticed that health checks stopped being sent to the path defined in the deployment config, but are just sent to the root path.
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository.
I recently switched some services from protocol HTTPS to HTTP2 and noticed that health checks stopped being sent to the path defined in the deployment config, but are just sent to the root path.
The deployment config is identical for
If svc is HTTPS, the health check uses the path
If svc is HTTP2, the health check does not
The issue seems to be because of comparing the string
HTTP2
toHTTPS
, as kube API does not support the schemeHTTP2
.The text was updated successfully, but these errors were encountered: