mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-06-22 14:32:35 +00:00
🚑 Add initialDelaySeconds
to readiness and liveness probes of worker DaemonSet
This commit is contained in:
parent
b1feb4e33f
commit
f628192216
@ -37,14 +37,18 @@ spec:
|
|||||||
imagePullPolicy: {{ .Values.tap.docker.imagepullpolicy }}
|
imagePullPolicy: {{ .Values.tap.docker.imagepullpolicy }}
|
||||||
readinessProbe:
|
readinessProbe:
|
||||||
periodSeconds: 1
|
periodSeconds: 1
|
||||||
|
failureThreshold: 3
|
||||||
|
successThreshold: 1
|
||||||
initialDelaySeconds: 3
|
initialDelaySeconds: 3
|
||||||
tcpSocket:
|
tcpSocket:
|
||||||
port: 80
|
port: {{ .Values.tap.proxy.hub.srvport }}
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
periodSeconds: 1
|
periodSeconds: 1
|
||||||
|
failureThreshold: 3
|
||||||
|
successThreshold: 1
|
||||||
initialDelaySeconds: 3
|
initialDelaySeconds: 3
|
||||||
tcpSocket:
|
tcpSocket:
|
||||||
port: 80
|
port: {{ .Values.tap.proxy.hub.srvport }}
|
||||||
resources:
|
resources:
|
||||||
limits:
|
limits:
|
||||||
cpu: {{ .Values.tap.resources.hub.limits.cpu }}
|
cpu: {{ .Values.tap.resources.hub.limits.cpu }}
|
||||||
|
@ -32,15 +32,17 @@ spec:
|
|||||||
imagePullPolicy: {{ .Values.tap.docker.imagepullpolicy }}
|
imagePullPolicy: {{ .Values.tap.docker.imagepullpolicy }}
|
||||||
name: kubeshark-front
|
name: kubeshark-front
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
failureThreshold: 3
|
|
||||||
periodSeconds: 1
|
periodSeconds: 1
|
||||||
|
failureThreshold: 3
|
||||||
successThreshold: 1
|
successThreshold: 1
|
||||||
|
initialDelaySeconds: 3
|
||||||
tcpSocket:
|
tcpSocket:
|
||||||
port: 80
|
port: 80
|
||||||
readinessProbe:
|
readinessProbe:
|
||||||
failureThreshold: 3
|
|
||||||
periodSeconds: 1
|
periodSeconds: 1
|
||||||
|
failureThreshold: 3
|
||||||
successThreshold: 1
|
successThreshold: 1
|
||||||
|
initialDelaySeconds: 3
|
||||||
tcpSocket:
|
tcpSocket:
|
||||||
port: 80
|
port: 80
|
||||||
timeoutSeconds: 1
|
timeoutSeconds: 1
|
||||||
|
@ -73,12 +73,16 @@ spec:
|
|||||||
- ALL
|
- ALL
|
||||||
readinessProbe:
|
readinessProbe:
|
||||||
periodSeconds: 1
|
periodSeconds: 1
|
||||||
initialDelaySeconds: 1
|
failureThreshold: 3
|
||||||
|
successThreshold: 1
|
||||||
|
initialDelaySeconds: 5
|
||||||
tcpSocket:
|
tcpSocket:
|
||||||
port: {{ .Values.tap.proxy.worker.srvport }}
|
port: {{ .Values.tap.proxy.worker.srvport }}
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
periodSeconds: 1
|
periodSeconds: 1
|
||||||
initialDelaySeconds: 1
|
failureThreshold: 3
|
||||||
|
successThreshold: 1
|
||||||
|
initialDelaySeconds: 5
|
||||||
tcpSocket:
|
tcpSocket:
|
||||||
port: {{ .Values.tap.proxy.worker.srvport }}
|
port: {{ .Values.tap.proxy.worker.srvport }}
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
|
@ -255,12 +255,16 @@ spec:
|
|||||||
- ALL
|
- ALL
|
||||||
readinessProbe:
|
readinessProbe:
|
||||||
periodSeconds: 1
|
periodSeconds: 1
|
||||||
initialDelaySeconds: 1
|
failureThreshold: 3
|
||||||
|
successThreshold: 1
|
||||||
|
initialDelaySeconds: 5
|
||||||
tcpSocket:
|
tcpSocket:
|
||||||
port: 8897
|
port: 8897
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
periodSeconds: 1
|
periodSeconds: 1
|
||||||
initialDelaySeconds: 1
|
failureThreshold: 3
|
||||||
|
successThreshold: 1
|
||||||
|
initialDelaySeconds: 5
|
||||||
tcpSocket:
|
tcpSocket:
|
||||||
port: 8897
|
port: 8897
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
@ -337,14 +341,18 @@ spec:
|
|||||||
imagePullPolicy: Always
|
imagePullPolicy: Always
|
||||||
readinessProbe:
|
readinessProbe:
|
||||||
periodSeconds: 1
|
periodSeconds: 1
|
||||||
|
failureThreshold: 3
|
||||||
|
successThreshold: 1
|
||||||
initialDelaySeconds: 3
|
initialDelaySeconds: 3
|
||||||
tcpSocket:
|
tcpSocket:
|
||||||
port: 80
|
port: 8898
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
periodSeconds: 1
|
periodSeconds: 1
|
||||||
|
failureThreshold: 3
|
||||||
|
successThreshold: 1
|
||||||
initialDelaySeconds: 3
|
initialDelaySeconds: 3
|
||||||
tcpSocket:
|
tcpSocket:
|
||||||
port: 80
|
port: 8898
|
||||||
resources:
|
resources:
|
||||||
limits:
|
limits:
|
||||||
cpu: 750m
|
cpu: 750m
|
||||||
@ -389,15 +397,17 @@ spec:
|
|||||||
imagePullPolicy: Always
|
imagePullPolicy: Always
|
||||||
name: kubeshark-front
|
name: kubeshark-front
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
failureThreshold: 3
|
|
||||||
periodSeconds: 1
|
periodSeconds: 1
|
||||||
|
failureThreshold: 3
|
||||||
successThreshold: 1
|
successThreshold: 1
|
||||||
|
initialDelaySeconds: 3
|
||||||
tcpSocket:
|
tcpSocket:
|
||||||
port: 80
|
port: 80
|
||||||
readinessProbe:
|
readinessProbe:
|
||||||
failureThreshold: 3
|
|
||||||
periodSeconds: 1
|
periodSeconds: 1
|
||||||
|
failureThreshold: 3
|
||||||
successThreshold: 1
|
successThreshold: 1
|
||||||
|
initialDelaySeconds: 3
|
||||||
tcpSocket:
|
tcpSocket:
|
||||||
port: 80
|
port: 80
|
||||||
timeoutSeconds: 1
|
timeoutSeconds: 1
|
||||||
|
Loading…
Reference in New Issue
Block a user