Generate config for portal

This commit is contained in:
Micke Nordin 2024-11-14 11:01:20 +01:00
parent 70c3f1537b
commit 32afc32ebb
Signed by untrusted user: Micke
GPG key ID: 0DA0A7A5708FE257

View file

@ -17,11 +17,36 @@ spec:
creationTimestamp:
labels:
app: portal-node
volumeClaimTemplates:
- metadata:
name: init-config
spec:
storageClassName: csi-sc-cinderplugin
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi
spec:
containers:
- name: portal
image: docker.sunet.se/drive/portal:0.1.0-2
image: docker.sunet.se/drive/portal:0.1.0-3
imagePullPolicy: Always
volumeMounts:
- name: config-volume
mountPath: /config
subPath: config
resources: {}
initContainers:
- image: docker.sunet.se/drive/portal:0.1.0-3
name: init-config
volumeMounts:
- name: config-volume
mountPath: /config
subPath: config
env:
- name: DRIVE_DOMAIN
value: "https://drive.test.sunet.se"
command: ["/bin/bash", "-c", "/app/metadata.py > /config/config.yaml"]
strategy: {}
status: {}