Skip to content

Commit

Permalink
Merge pull request #1516 from deads2k/etcd-timeout-01
Browse files Browse the repository at this point in the history
update probes for best practices and consistency
  • Loading branch information
deads2k committed Jun 26, 2023
2 parents 49c86ab + a9ba13a commit bd568eb
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions bindata/assets/kube-apiserver/pod.yaml
Expand Up @@ -103,15 +103,31 @@ spec:
scheme: HTTPS
port: 6443
path: livez
initialDelaySeconds: 45
initialDelaySeconds: 0
periodSeconds: 10
timeoutSeconds: 10
successThreshold: 1
failureThreshold: 3
readinessProbe:
httpGet:
scheme: HTTPS
port: 6443
path: readyz
initialDelaySeconds: 10
initialDelaySeconds: 0
periodSeconds: 5
timeoutSeconds: 10
successThreshold: 1
failureThreshold: 1
startupProbe:
httpGet:
scheme: HTTPS
port: 6443
path: healthz
initialDelaySeconds: 0
periodSeconds: 5
timeoutSeconds: 10
successThreshold: 1
failureThreshold: 30
env:
- name: POD_NAME
valueFrom:
Expand Down

0 comments on commit bd568eb

Please sign in to comment.