Browse Source

Merge pull request #127 from ansibl8s/increase_timeout

Increase liveness timeout
pull/128/head
Antoine Legrand 8 years ago
parent
commit
bf5582b01f
2 changed files with 4 additions and 4 deletions
  1. 4
      roles/kubernetes/master/templates/manifests/kube-controller-manager.manifest.j2
  2. 4
      roles/kubernetes/master/templates/manifests/kube-scheduler.manifest.j2

4
roles/kubernetes/master/templates/manifests/kube-controller-manager.manifest.j2

@ -20,8 +20,8 @@ spec:
host: 127.0.0.1 host: 127.0.0.1
path: /healthz path: /healthz
port: 10252 port: 10252
initialDelaySeconds: 15
timeoutSeconds: 1
initialDelaySeconds: 30
timeoutSeconds: 10
volumeMounts: volumeMounts:
- mountPath: {{ kube_cert_dir }} - mountPath: {{ kube_cert_dir }}
name: ssl-certs-kubernetes name: ssl-certs-kubernetes

4
roles/kubernetes/master/templates/manifests/kube-scheduler.manifest.j2

@ -18,5 +18,5 @@ spec:
host: 127.0.0.1 host: 127.0.0.1
path: /healthz path: /healthz
port: 10251 port: 10251
initialDelaySeconds: 15
timeoutSeconds: 1
initialDelaySeconds: 30
timeoutSeconds: 10
Loading…
Cancel
Save