chore(opencloud): Remove external OpenLDAP deployment #1
1 changed files with 21 additions and 9 deletions
|
|
@ -139,25 +139,37 @@ spec:
|
||||||
memory: "2Gi"
|
memory: "2Gi"
|
||||||
cpu: "2000m"
|
cpu: "2000m"
|
||||||
startupProbe:
|
startupProbe:
|
||||||
httpGet:
|
exec:
|
||||||
path: /healthz/live
|
command:
|
||||||
port: 8080
|
- curl
|
||||||
|
- -f
|
||||||
|
- --max-time
|
||||||
|
- "3"
|
||||||
|
- http://localhost:8080/healthz/live
|
||||||
initialDelaySeconds: 60
|
initialDelaySeconds: 60
|
||||||
periodSeconds: 10
|
periodSeconds: 10
|
||||||
timeoutSeconds: 5
|
timeoutSeconds: 5
|
||||||
failureThreshold: 6
|
failureThreshold: 6
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
httpGet:
|
exec:
|
||||||
path: /healthz/live
|
command:
|
||||||
port: 8080
|
- curl
|
||||||
|
- -f
|
||||||
|
- --max-time
|
||||||
|
- "3"
|
||||||
|
- http://localhost:8080/healthz/live
|
||||||
initialDelaySeconds: 30
|
initialDelaySeconds: 30
|
||||||
periodSeconds: 10
|
periodSeconds: 10
|
||||||
timeoutSeconds: 5
|
timeoutSeconds: 5
|
||||||
failureThreshold: 3
|
failureThreshold: 3
|
||||||
readinessProbe:
|
readinessProbe:
|
||||||
httpGet:
|
exec:
|
||||||
path: /healthz/ready
|
command:
|
||||||
port: 8080
|
- curl
|
||||||
|
- -f
|
||||||
|
- --max-time
|
||||||
|
- "3"
|
||||||
|
- http://localhost:8080/healthz/ready
|
||||||
initialDelaySeconds: 10
|
initialDelaySeconds: 10
|
||||||
periodSeconds: 5
|
periodSeconds: 5
|
||||||
timeoutSeconds: 3
|
timeoutSeconds: 3
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue