Health Checking of Istio Services
Kubernetes liveness and readiness probes1 offer three different options:
- Command
- TCP request
- HTTP request
This guide shows how to use these approaches in Istio with mutual TLS enabled.
Command and TCP type probes work with Istio regardless of whether or not mutual TLS is enabled. The HTTP request approach requires different Istio configuration with mutual TLS enabled.
Before you begin
Understand Kubernetes liveness and readiness probes1, Istio authentication policy and mutual TLS authentication concepts.
Have a Kubernetes cluster with Istio installed, without global mutual TLS enabled.
Liveness and readiness probes with command option
First, you need to configure health checking with mutual TLS enabled.
To enable mutual TLS for services in the default namespace, you must configure an authentication policy and a destination rule. Follow these steps to complete the configuration:
To configure the authentication policy, run:
To configure the destination rule, run:
Run the following command to deploy the service:
Repeat the check status command to verify that the liveness probes work:
Liveness and readiness probes with HTTP request option
This section shows how to configure health checking with the HTTP request option when mutual TLS is enabled.
Kubernetes HTTP health check request is sent from Kubelet, which does not have Istio issued certificate to the liveness-http
service. So when mutual TLS is enabled, the health check request will fail.
We have two options to solve the problem: probe rewrites and separate ports.
Probe rewrite
This approach rewrites the application PodSpec
readiness/liveness probe, such that the probe request will be sent to
Pilot agent3. Pilot agent then redirects the
request to application, and strips the response body only returning the response code.
You have two ways to enable Istio to rewrite the liveness HTTP probes.
Enable globally via install option
Install Istio4 with --set values.sidecarInjectorWebhook.rewriteAppHTTPProbe=true
.
Alternatively, update the configuration map of Istio sidecar injection:
The above installation option and configuration map, each instruct the sidecar injection process to automatically rewrite the Kubernetes pod’s spec, so health checks are able to work under mutual TLS. No need to update your app or pod spec by yourself.
Use annotations on pod
Rather than install Istio with different options, you can annotate the pod5 with sidecar.istio.io/rewriteAppHTTPProbers: "true"
. Make sure you add the annotation to the pod resource6 because it will be ignored anywhere else (for example, on an enclosing deployment resource).
This approach allows you to enable the health check prober rewrite gradually on each deployment without reinstalling Istio.
Re-deploy the liveness health check app
Instructions below assume you turn on the feature globally via install option. Annotations works the same.
This feature is not currently turned on by default. We’d like to hear your feedback8 on whether we should change this to default behavior for Istio installation.
Separate port
Another alternative is to use separate port for health checking and regular traffic.
Run these commands to re-deploy the service:
Wait for a minute and check the pod status to make sure the liveness probes work with ‘0’ in the ‘RESTARTS’ column.
Note that the image in liveness-http9 exposes two ports: 8001 and 8002 (source code10). In this deployment, port 8001 serves the regular traffic while port 8002 is used for liveness probes.
Cleanup
Remove the mutual TLS policy and corresponding destination rule added in the steps above: