Mount opencloud-config ConfigMap to /etc/opencloud
Added volume mount for opencloud-config ConfigMap at /etc/opencloud so OpenCloud services can read the opencloud.yaml configuration file. This follows OpenCloud's standard configuration pattern: - opencloud.yaml provides global defaults - Environment variables override file configuration - ConfigMap mounted at /etc/opencloud (container default) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
f0e4df95a1
commit
1e22b74a55
1 changed files with 5 additions and 0 deletions
|
|
@ -448,6 +448,8 @@ spec:
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- name: opencloud-data
|
- name: opencloud-data
|
||||||
mountPath: /var/lib/opencloud
|
mountPath: /var/lib/opencloud
|
||||||
|
- name: opencloud-config
|
||||||
|
mountPath: /etc/opencloud
|
||||||
resources:
|
resources:
|
||||||
requests:
|
requests:
|
||||||
memory: "512Mi"
|
memory: "512Mi"
|
||||||
|
|
@ -474,6 +476,9 @@ spec:
|
||||||
- name: opencloud-data
|
- name: opencloud-data
|
||||||
persistentVolumeClaim:
|
persistentVolumeClaim:
|
||||||
claimName: opencloud-data
|
claimName: opencloud-data
|
||||||
|
- name: opencloud-config
|
||||||
|
configMap:
|
||||||
|
name: opencloud-config
|
||||||
---
|
---
|
||||||
# Ingress
|
# Ingress
|
||||||
apiVersion: networking.k8s.io/v1
|
apiVersion: networking.k8s.io/v1
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue