Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -380,12 +380,18 @@ spec:
value: nmstate
image: quay.io/nmstate/kubernetes-nmstate-operator:latest
imagePullPolicy: IfNotPresent
startupProbe:
httpGet:
path: /readyz
port: healthprobe
initialDelaySeconds: 10
periodSeconds: 10
failureThreshold: 18
livenessProbe:
failureThreshold: 3
httpGet:
path: /healthz
port: healthprobe
initialDelaySeconds: 10
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
Expand All @@ -398,7 +404,6 @@ spec:
httpGet:
path: /readyz
port: healthprobe
initialDelaySeconds: 10
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
Expand Down
9 changes: 7 additions & 2 deletions charts/kubernetes-nmstate/templates/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,20 +54,25 @@ spec:
capabilities:
drop:
- ALL
readinessProbe:
startupProbe:
httpGet:
path: /readyz
port: healthprobe
initialDelaySeconds: 10
periodSeconds: 10
failureThreshold: 18
readinessProbe:
httpGet:
path: /readyz
port: healthprobe
periodSeconds: 10
timeoutSeconds: 1
successThreshold: 1
failureThreshold: 3
livenessProbe:
httpGet:
path: /healthz
port: healthprobe
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 1
successThreshold: 1
Expand Down