-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpostgresql.yaml
47 lines (47 loc) · 986 Bytes
/
postgresql.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
---
# PostgreSQL StatefulSet
apiVersion: apps/v1
kind: StatefulSet
metadata:
name: postgresql-db
spec:
serviceName: postgresql-db-service
selector:
matchLabels:
app: postgresql-db
replicas: 1
template:
metadata:
labels:
app: postgresql-db
spec:
containers:
- name: postgresql-db
image: postgres:15.7
volumeMounts:
- name: initdb
mountPath: /docker-entrypoint-initdb.d
env:
- name: POSTGRES_PASSWORD
value: testpassword
volumes:
- name: initdb
configMap:
name: db-scripts
items:
- key: postgres_setup.sh
path: init.sh
- key: init-users-dbs.sh
path: init-users-dbs.sh
---
apiVersion: v1
kind: Service
metadata:
name: postgres-db
spec:
selector:
app: postgresql-db
type: LoadBalancer
ports:
- port: 5432
targetPort: 5432