summaryrefslogtreecommitdiff
path: root/yaml/deployments/cas.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'yaml/deployments/cas.yaml')
-rw-r--r--yaml/deployments/cas.yaml73
1 files changed, 0 insertions, 73 deletions
diff --git a/yaml/deployments/cas.yaml b/yaml/deployments/cas.yaml
deleted file mode 100644
index 1b106ad..0000000
--- a/yaml/deployments/cas.yaml
+++ /dev/null
@@ -1,73 +0,0 @@
-apiVersion: apps/v1
-kind: Deployment
-metadata:
- name: cas-deployment
- labels:
- app: cas-app
-spec:
- replicas: 2
- selector:
- matchLabels:
- app: cas-app
- template:
- metadata:
- labels:
- app: cas-app
- spec:
- affinity:
- podAntiAffinity:
- requiredDuringSchedulingIgnoredDuringExecution:
- - labelSelector:
- matchLabels:
- app: cas-app
- topologyKey: "kubernetes.io/hostname"
- resources:
- requests:
- cpu: "200m"
- memory: "500Mi"
- limits:
- cpu: "500m"
- memory: "1Gi"
- 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
- - name: AUDIO_PATH
- valueFrom:
- configMapKeyRef:
- name: cas-config
- key: AUDIO_PATH
- ports:
- - containerPort: 8000
- restartPolicy: Always