Merge pull request #47839 from aleksandra-malinowska/autoscaler-liveness-probe

Automatic merge from submit-queue (batch tested with PRs 47380, 47839)

Add liveness probe for cluster autoscaler

Configure a liveness probe for cluster autoscaler.
This commit is contained in:
Kubernetes Submit Queue
2017-06-22 08:38:12 -07:00
committed by GitHub

View File

@@ -26,6 +26,14 @@
{ {
"name": "cluster-autoscaler", "name": "cluster-autoscaler",
"image": "gcr.io/google_containers/cluster-autoscaler:v0.6.0-beta1", "image": "gcr.io/google_containers/cluster-autoscaler:v0.6.0-beta1",
"livenessProbe": {
"httpGet": {
"path": "/health-check",
"port": 8085
},
"initialDelaySeconds": 600,
"periodSeconds": 60
},
"command": [ "command": [
"./run.sh", "./run.sh",
"--kubernetes=http://127.0.0.1:8080?inClusterConfig=f", "--kubernetes=http://127.0.0.1:8080?inClusterConfig=f",