diff options
author | Santo Cariotti <santo@dcariotti.me> | 2025-01-17 11:41:55 +0100 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2025-01-17 11:41:55 +0100 |
commit | 6cfd0194f65d7730fedcf4ac100f0c3aa28ad06d (patch) | |
tree | 51ef1435683788985a83f1bef00e35532735d045 /yaml/deployments/cas.yaml | |
parent | a8a948998cd12c5bfbb24a1fcf123901c70cb1c0 (diff) |
Use only three files
Diffstat (limited to 'yaml/deployments/cas.yaml')
-rw-r--r-- | yaml/deployments/cas.yaml | 73 |
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 |