mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-03 00:57:27 +00:00
Merge pull request #26734 from bprashanth/glbc_limits
Automatic merge from submit-queue Increase failure threshold for glbc liveness probe This pod fails a liveness probe on occasion, probably because the failure thresholds are too strict. Simple enough that either reviewer can review.
This commit is contained in:
commit
15c9ecb5be
@ -21,7 +21,9 @@ spec:
|
|||||||
initialDelaySeconds: 30
|
initialDelaySeconds: 30
|
||||||
# healthz reaches out to GCE
|
# healthz reaches out to GCE
|
||||||
periodSeconds: 30
|
periodSeconds: 30
|
||||||
timeoutSeconds: 5
|
timeoutSeconds: 15
|
||||||
|
successThreshold: 1
|
||||||
|
failureThreshold: 5
|
||||||
name: l7-lb-controller
|
name: l7-lb-controller
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- mountPath: /etc/gce.conf
|
- mountPath: /etc/gce.conf
|
||||||
@ -34,7 +36,7 @@ spec:
|
|||||||
# Request and limits are set to accomodate this pod alongside the other
|
# Request and limits are set to accomodate this pod alongside the other
|
||||||
# master components on a single core master.
|
# master components on a single core master.
|
||||||
limits:
|
limits:
|
||||||
cpu: 50m
|
cpu: 100m
|
||||||
memory: 100Mi
|
memory: 100Mi
|
||||||
requests:
|
requests:
|
||||||
cpu: 10m
|
cpu: 10m
|
||||||
|
Loading…
Reference in New Issue
Block a user