Exec healthz server
The exec healthz server is a sidecar container meant to serve as a liveness-exec-over-http bridge. It isolates pods from the idiosyncracies of container runtime exec implemetations.
Examples:
Run the healthz server directly on localhost:
$ make server
$ ./exechealthz -cmd "ls /tmp/test"
$ curl http://localhost:8080/healthz
Healthz probe error: Result of last exec: ls: cannot access /tmp/test: No such file or directory
, at 2015-07-08 17:59:45.698036238 -0700 PDT, error exit status 2
$ touch /tmp/test
$ curl http://localhost:8080/healthz
ok
Run the healthz server in a docker container:
The docker daemon needs to be running on your host.
$ make container PREFIX=mycontainer/test
$ docker run -itP -p 8080:8080 mycontainer/test:0.0 -cmd "ls /tmp/test"
$ curl http://localhost:8080/healthz
Healthz probe error: Result of last exec: ls: cannot access /tmp/test: No such file or directory
, at 2015-07-08 18:00:57.698103532 -0700 PDT, error exit status 2
$ docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
8e86f8accfa6 mycontainer/test:0.0 "/exechealthz -cm" 27 seconds ago Up 26 seconds 0.0.0.0:8080->8080/tcp loving_albattani
$ docker exec -it 8e86f8accfa6 touch /tmp/test
$ curl http://localhost:8080/healthz
ok
Run the healthz server in a kubernetes pod:
You need a running kubernetes cluster.
Create a pod.json that looks like:
{
"kind": "Pod",
"apiVersion": "v1",
"metadata": {
"name": "simple"
},
"spec": {
"containers": [
{
"name": "healthz",
"image": "gcr.io/google_containers/exechealthz:1.0",
"args": [
"-cmd=nslookup localhost"
],
"ports": [
{
"containerPort": 8080,
"protocol": "TCP"
}
]
}
]
}
}
And run the pod on your cluster using kubectl:
$ kubectl create -f pod.json
pods/simple
$ kubectl get pods -o wide
NAME READY STATUS RESTARTS AGE NODE
simple 0/1 Pending 0 3s node
SSH into the node (note that the recommended way to access a server in a container is through a service, the example that follows is just to illustrate how the kubelet performs an http liveness probe):
node$ kubectl get pods simple -o json | grep podIP
"podIP": "10.1.0.2",
node$ curl http://10.1.0.2:8080/healthz
ok
Run the healthz server as a sidecar container for liveness probes of another container:
Create a pod.json with 2 containers, one of which is the healthz probe and the other, the container being health checked. The
pod.json example file in this directory does exactly that. If you create the pod the same way you created the pod in the previous
example, the kubelet on the node will periodically perform a health check similar to what you did manually and restart the container
when it fails. Explore liveness probes.
Limitations:
- Doesn't handle sigterm, which means docker stop on this container can take longer than it needs to.
- Doesn't sanity check the probe command. You should set the -period and -latency parameters of exechealthz appropriately.
- Only ever returns 503 or 200.