Syed SaeedulHassan Ali
Syed SaeedulHassan Ali

Reputation: 594

Does Liveness probe verify certificate if scheme is set to HTTPS in kubernetes?

Does liveness probe in kubernetes verify Certificate for https request? I am using a self-signed certificate for my project.

Upvotes: 3

Views: 7737

Answers (1)

fatcook
fatcook

Reputation: 1026

No, as per the official documentation https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/

If scheme field is set to HTTPS, the kubelet sends an HTTPS request skipping the certificate verification.

Upvotes: 7

Related Questions