56 lines
1.4 KiB
YAML
56 lines
1.4 KiB
YAML
|
---
|
||
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
name: meali
|
||
|
spec:
|
||
|
replicas: 2
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app.kubernetes.io/name: meali
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
app.kubernetes.io/name: meali
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: meali
|
||
|
image: meali
|
||
|
imagePullPolicy: Always
|
||
|
ports:
|
||
|
- containerPort: 9000
|
||
|
protocol: TCP
|
||
|
name: web
|
||
|
env:
|
||
|
- name: POSTGRES_URL_OVERRIDE
|
||
|
valueFrom:
|
||
|
secretKeyRef:
|
||
|
name: db-credentials-meali
|
||
|
key: POSTGRES_URL
|
||
|
envFrom:
|
||
|
- secretRef:
|
||
|
name: meali-config
|
||
|
resources:
|
||
|
limits:
|
||
|
cpu: 200m
|
||
|
memory: 200Mi
|
||
|
requests:
|
||
|
cpu: 50m
|
||
|
memory: 50Mi
|
||
|
securityContext:
|
||
|
runAsUser: 1001
|
||
|
runAsGroup: 1001
|
||
|
fsGroup: 1001
|
||
|
affinity:
|
||
|
podAntiAffinity:
|
||
|
preferredDuringSchedulingIgnoredDuringExecution:
|
||
|
- weight: 100
|
||
|
podAffinityTerm:
|
||
|
labelSelector:
|
||
|
matchExpressions:
|
||
|
- key: app.kubernetes.io/name
|
||
|
operator: In
|
||
|
values:
|
||
|
- fider
|
||
|
topologyKey: topology.kubernetes.io/zone
|