summaryrefslogtreecommitdiff
path: root/yaml/deployments/cas.yaml
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2024-09-18 11:20:04 +0200
committerSanto Cariotti <santo@dcariotti.me>2024-09-18 11:20:04 +0200
commit9e3aff2e2a88f7b95b4c785a1af6084c09621d53 (patch)
tree56330c2110a23c7b01233025b58c668f9e243bf1 /yaml/deployments/cas.yaml
parent64a6d5dd87f892536d9b52350fd30e66c722ed8a (diff)
Reorganize files in folders
Diffstat (limited to 'yaml/deployments/cas.yaml')
-rw-r--r--yaml/deployments/cas.yaml52
1 files changed, 52 insertions, 0 deletions
diff --git a/yaml/deployments/cas.yaml b/yaml/deployments/cas.yaml
new file mode 100644
index 0000000..fc0289a
--- /dev/null
+++ b/yaml/deployments/cas.yaml
@@ -0,0 +1,52 @@
+apiVersion: apps/v1
+kind: Deployment
+metadata:
+ name: cas-deployment
+spec:
+ replicas: 1
+ selector:
+ matchLabels:
+ app: cas
+ template:
+ metadata:
+ labels:
+ app: cas
+ spec:
+ containers:
+ - name: cas
+ image: ghcr.io/cas-4/backend:latest
+ imagePullPolicy: Always
+ env:
+ - name: RUST_LOG
+ valueFrom:
+ configMapKeyRef:
+ name: cas-config
+ key: RUST_LOG
+ - name: DATABASE_URL
+ valueFrom:
+ configMapKeyRef:
+ name: cas-config
+ key: DATABASE_URL
+ - name: JWT_SECRET
+ valueFrom:
+ secretKeyRef:
+ name: cas-secret
+ key: JWT_SECRET
+ - name: EXPO_ACCESS_TOKEN
+ valueFrom:
+ secretKeyRef:
+ name: cas-secret
+ key: EXPO_ACCESS_TOKEN
+ - name: UNREALSPEECH_TOKEN
+ valueFrom:
+ secretKeyRef:
+ name: cas-secret
+ key: UNREALSPEECH_TOKEN
+ - name: ALLOWED_HOST
+ valueFrom:
+ configMapKeyRef:
+ name: cas-config
+ key: ALLOWED_HOST
+ ports:
+ - containerPort: 8000
+ restartPolicy: Always