I would like some help to solve a particular Kubernetes + mTLS problem please.
How to make Kubernetes liveness probe work on a secure https mTLS health check endpoint please?
My application is a web application where a health check endpoint is exposed over a particular port, same port as other business endpoints.
Per security, audit and compliance review, I must secure all my endpoints over mTLS, even the simple and innocent health check endpoint.
Per security, audit and compliance review, I cannot expose any other ports like doing my business endpoints on https port 1, but health on http port 2.
Hence, this is failing and marking my app as down (since it is over simple http, the endpoint is https)
livenessProbe:
httpGet:
path: /health
port: 8080
scheme: HTTP
initialDelaySeconds: 10
periodSeconds: 10
Just to confirm during a test, we disabled https and mTLS, enabling plain old http, everything is working perfectly, but we simply cannot do that.
How to solve this problem please?
Thank you.
Can you try changing scheme: HTTP to HTTPS?
livenessProbe: httpGet: path: /health port: 8080 scheme: HTTPS initialDelaySeconds: 10 periodSeconds: 10
If scheme field is set to HTTPS, the kubelet sends an HTTPS request skipping the certificate verification.