Skip to content
Merged
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
13 changes: 8 additions & 5 deletions manifest/kubernetes/rhel/ncp-rhel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -649,12 +649,15 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.namespace
# liveness.DEFAULT_LIVENESS_TIMEOUT bounds the in-process deep check
# below timeoutSeconds, so a wedged check surfaces as a probe
# failure rather than a kubelet client timeout.
livenessProbe:
exec:
command:
- /bin/sh
- -c
- check_pod_liveness nsx-ncp 30
httpGet:
path: /healthz
port: 8086
host: 127.0.0.1
scheme: HTTP
initialDelaySeconds: 5
timeoutSeconds: 30
periodSeconds: 10
Expand Down
13 changes: 8 additions & 5 deletions manifest/kubernetes/ubuntu/ncp-ubuntu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -649,12 +649,15 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.namespace
# liveness.DEFAULT_LIVENESS_TIMEOUT bounds the in-process deep check
# below timeoutSeconds, so a wedged check surfaces as a probe
# failure rather than a kubelet client timeout.
livenessProbe:
exec:
command:
- /bin/sh
- -c
- check_pod_liveness nsx-ncp 30
httpGet:
path: /healthz
port: 8086
host: 127.0.0.1
scheme: HTTP
initialDelaySeconds: 5
timeoutSeconds: 30
periodSeconds: 10
Expand Down
13 changes: 8 additions & 5 deletions manifest/openshift4/coreos/ncp-openshift4.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -587,12 +587,15 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.namespace
# liveness.DEFAULT_LIVENESS_TIMEOUT bounds the in-process deep check
# below timeoutSeconds, so a wedged check surfaces as a probe
# failure rather than a kubelet client timeout.
livenessProbe:
exec:
command:
- /bin/sh
- -c
- check_pod_liveness nsx-ncp 30
httpGet:
path: /healthz
port: 8086
host: 127.0.0.1
scheme: HTTP
initialDelaySeconds: 5
timeoutSeconds: 30
periodSeconds: 10
Expand Down
Loading