Compare commits
No commits in common. "39600eab34fa8c4b7b8d3cc41eec21bb22c149eb" and "2e8e8ee3ebb4762f476a79aa317f7c785628a00f" have entirely different histories.
39600eab34
...
2e8e8ee3eb
2 changed files with 16 additions and 21 deletions
|
|
@ -290,6 +290,13 @@ spec:
|
||||||
name: opencloud-config-secrets
|
name: opencloud-config-secrets
|
||||||
key: ldap-bind-password
|
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
|
# IDM service user passwords
|
||||||
- name: OC_IDM_ADMIN_PASSWORD
|
- name: OC_IDM_ADMIN_PASSWORD
|
||||||
valueFrom:
|
valueFrom:
|
||||||
|
|
|
||||||
|
|
@ -139,37 +139,25 @@ spec:
|
||||||
memory: "2Gi"
|
memory: "2Gi"
|
||||||
cpu: "2000m"
|
cpu: "2000m"
|
||||||
startupProbe:
|
startupProbe:
|
||||||
exec:
|
httpGet:
|
||||||
command:
|
path: /healthz/live
|
||||||
- curl
|
port: 8080
|
||||||
- -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:
|
||||||
exec:
|
httpGet:
|
||||||
command:
|
path: /healthz/live
|
||||||
- curl
|
port: 8080
|
||||||
- -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:
|
||||||
exec:
|
httpGet:
|
||||||
command:
|
path: /healthz/ready
|
||||||
- curl
|
port: 8080
|
||||||
- -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