update deployment for multi-environment setup

This commit is contained in:
2024-09-20 22:09:48 +02:00
parent c9df181256
commit d9d8aa8e8e
14 changed files with 78 additions and 32 deletions

45
base/deployment.yaml Normal file
View File

@@ -0,0 +1,45 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: anyway-backend
spec:
replicas: 1
selector:
matchLabels:
app: anyway-backend
template:
metadata:
labels:
app: anyway-backend
spec:
containers:
- name: worker
securityContext:
allowPrivilegeEscalation: false
image: backend-image
imagePullPolicy: Always
ports:
- containerPort: 8000
env:
- name: NUM_WORKERS
value: "3"
- name: OSM_CACHE_DIR
value: "/osm-cache"
- name: MEMCACHED_HOST_PATH
value: "memcached:11211"
volumeMounts:
- name: osm-cache
mountPath: /osm-cache
resources:
requests:
cpu: 100m
memory: 100Mi
limits:
cpu: 4
memory: 10Gi
volumes:
- name: osm-cache
persistentVolumeClaim:
claimName: osm-cache