-
Notifications
You must be signed in to change notification settings - Fork 0
/
postgres.deployment.yaml
45 lines (45 loc) · 1.05 KB
/
postgres.deployment.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
apiVersion: apps/v1
kind: Deployment
metadata:
name: postgres-deployment
namespace: default
labels:
app: postgres
spec:
replicas: 1
selector:
matchLabels:
app: postgres
template:
metadata:
labels:
app: postgres
spec:
restartPolicy: Always
containers:
- name: postrgres
image: postgres:12
envFrom:
- secretRef:
name: postgres-secret
- configMapRef:
name: postgres-configmap
volumeMounts:
- mountPath: /var/lib/postgresql/data
name: postgres-volume
ports:
- containerPort: 5432
volumes:
- name: postgres-volume
persistentVolumeClaim:
claimName: postgres-claim
affinity:
podAntiAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: app
operator: In
values:
- epitech-s4qe
topologyKey: "kubernetes.io/hostname"