summaryrefslogtreecommitdiff
path: root/k8s/cas-deployment.yaml
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2024-09-06 16:09:25 +0200
committerSanto Cariotti <santo@dcariotti.me>2024-09-06 16:09:25 +0200
commitff68c8cd24baef66ebb038d237b8f501c84edde5 (patch)
treea719191dce466a03244a705337f58c8f83f6f926 /k8s/cas-deployment.yaml
parentc4ef50c1f566b86c8892fa344ade8d5ca66fb93b (diff)
Add script and configuration for Kubernetes
Diffstat (limited to 'k8s/cas-deployment.yaml')
-rw-r--r--k8s/cas-deployment.yaml47
1 files changed, 47 insertions, 0 deletions
diff --git a/k8s/cas-deployment.yaml b/k8s/cas-deployment.yaml
new file mode 100644
index 0000000..f070fe4
--- /dev/null
+++ b/k8s/cas-deployment.yaml
@@ -0,0 +1,47 @@
+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: ALLOWED_HOST
+ valueFrom:
+ configMapKeyRef:
+ name: cas-config
+ key: ALLOWED_HOST
+ ports:
+ - containerPort: 8000
+ restartPolicy: Always