-
Notifications
You must be signed in to change notification settings - Fork 2
/
postgres.yaml
56 lines (56 loc) · 1.27 KB
/
postgres.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
# Deployment
apiVersion: apps/v1
kind: Deployment
metadata:
name: postgres-deployment
labels:
app: postgres
spec:
replicas: 1
selector:
matchLabels:
app: postgres
template:
metadata:
labels:
app: postgres
spec:
containers:
- name: postgres
image: postgres:14
ports:
- containerPort: 5432
env:
- name: POSTGRES_PASSWORD
valueFrom:
secretKeyRef:
name: postgres-secret
key: psql-password
- name: PGDATA
value: /var/lib/postgresql/data/pgdata
# Volumes
volumeMounts:
- name: postgres-storage
mountPath: /var/lib/postgresql/data
- name: postgresql-initdb
mountPath: /docker-entrypoint-initdb.d
volumes:
- name: postgres-storage
persistentVolumeClaim:
claimName: postgres-pv-claim
- name: postgresql-initdb
configMap:
name: postgresql-initdb-config
---
# Service
apiVersion: v1
kind: Service
metadata:
name: postgres-service
spec:
selector:
app: postgres
ports:
- protocol: TCP
port: 5432 # can be any port (unused)
targetPort: 5432