diff --git a/cluster/gce/manifests/kube-apiserver.manifest b/cluster/gce/manifests/kube-apiserver.manifest index a8a74722ebb..4be27c81b20 100644 --- a/cluster/gce/manifests/kube-apiserver.manifest +++ b/cluster/gce/manifests/kube-apiserver.manifest @@ -34,11 +34,19 @@ "httpGet": { "host": "127.0.0.1", "port": 8080, - "path": "/healthz" + "path": "/healthz?exclude=etcd" }, "initialDelaySeconds": {{liveness_probe_initial_delay}}, "timeoutSeconds": 15 }, + "readinessProbe": { + "httpGet": { + "host": "127.0.0.1", + "port": 8080, + "path": "/healthz" + }, + "timeoutSeconds": 15 + }, "ports":[ { "name": "https", "containerPort": {{secure_port}},