Merge pull request #70676 from logicalhan/exclude-checks

add ability to disable health checks on kube-apiserver for healthz using query-params
This commit is contained in:
k8s-ci-robot
2018-11-14 11:37:48 -08:00
committed by GitHub
4 changed files with 82 additions and 1 deletions

View File

@@ -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}},