-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpostgres-deployment.yaml
56 lines (56 loc) · 1.36 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
46
47
48
49
50
51
52
53
54
55
56
apiVersion: apps/v1
kind: Deployment
metadata:
annotations:
kompose.cmd: kompose convert -f docker-compose.yml
kompose.version: 1.34.0 (cbf2835db)
labels:
io.kompose.service: postgres
name: postgres
spec:
replicas: 1
selector:
matchLabels:
io.kompose.service: postgres
strategy:
type: Recreate
template:
metadata:
annotations:
kompose.cmd: kompose convert -f docker-compose.yml
kompose.version: 1.34.0 (cbf2835db)
labels:
io.kompose.service: postgres
spec:
containers:
- args:
- postgres
- -c
- wal_level=logical
env:
- name: POSTGRES_PASSWORD
- name: POSTGRES_USER
image: 'postgres:'
livenessProbe:
exec:
command:
- psql
- -U
- postgres
- -c
- SELECT 1
failureThreshold: 5
periodSeconds: 10
timeoutSeconds: 5
name: aat-postgres
ports:
- containerPort: 5432
protocol: TCP
volumeMounts:
- mountPath: /var/lib/postgresql/data
name: aat-postgres
restartPolicy: Always
volumes:
- name: aat-postgres
persistentVolumeClaim:
claimName: aat-postgres