Compare commits
2 commits
2e8e8ee3eb
...
39600eab34
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
39600eab34 | ||
|
|
fa5343ca23 |
2 changed files with 21 additions and 16 deletions
|
|
@ -290,13 +290,6 @@ spec:
|
|||
name: opencloud-config-secrets
|
||||
key: ldap-bind-password
|
||||
|
||||
# External OpenLDAP admin password (for user/group storage)
|
||||
- name: OPENLDAP_ADMIN_PASSWORD
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
name: openldap-admin-secret
|
||||
key: admin-password
|
||||
|
||||
# IDM service user passwords
|
||||
- name: OC_IDM_ADMIN_PASSWORD
|
||||
valueFrom:
|
||||
|
|
|
|||
|
|
@ -139,25 +139,37 @@ spec:
|
|||
memory: "2Gi"
|
||||
cpu: "2000m"
|
||||
startupProbe:
|
||||
httpGet:
|
||||
path: /healthz/live
|
||||
port: 8080
|
||||
exec:
|
||||
command:
|
||||
- curl
|
||||
- -f
|
||||
- --max-time
|
||||
- "3"
|
||||
- http://localhost:8080/healthz/live
|
||||
initialDelaySeconds: 60
|
||||
periodSeconds: 10
|
||||
timeoutSeconds: 5
|
||||
failureThreshold: 6
|
||||
livenessProbe:
|
||||
httpGet:
|
||||
path: /healthz/live
|
||||
port: 8080
|
||||
exec:
|
||||
command:
|
||||
- curl
|
||||
- -f
|
||||
- --max-time
|
||||
- "3"
|
||||
- http://localhost:8080/healthz/live
|
||||
initialDelaySeconds: 30
|
||||
periodSeconds: 10
|
||||
timeoutSeconds: 5
|
||||
failureThreshold: 3
|
||||
readinessProbe:
|
||||
httpGet:
|
||||
path: /healthz/ready
|
||||
port: 8080
|
||||
exec:
|
||||
command:
|
||||
- curl
|
||||
- -f
|
||||
- --max-time
|
||||
- "3"
|
||||
- http://localhost:8080/healthz/ready
|
||||
initialDelaySeconds: 10
|
||||
periodSeconds: 5
|
||||
timeoutSeconds: 3
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue