-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpostgresql.yaml
More file actions
69 lines (68 loc) · 1.43 KB
/
postgresql.yaml
File metadata and controls
69 lines (68 loc) · 1.43 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: postgres-claim
spec:
volumeName: "iscsi-postgres"
storageClassName: "manual"
accessModes:
- ReadWriteMany
resources:
requests:
storage: 10Gi
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: postgres
spec:
replicas: 1
selector:
matchLabels:
app: postgres
strategy:
type: Recreate
template:
metadata:
labels:
app: postgres
spec:
restartPolicy: Always
initContainers:
# only start if the filesystem is accessible
- name: init-postgres
image: postgres:alpine
command: ['sh', '-c', 'mkdir -p /var/lib/postgresql/data/pgdata']
containers:
- name: postgres
image: postgres:alpine
imagePullPolicy: IfNotPresent
envFrom:
- secretRef:
name: psql-secrets
volumeMounts:
- mountPath: "/var/lib/postgresql/data"
name: sql-storage
ports:
- containerPort: 5432
protocol: TCP
volumes:
- name: sql-storage
persistentVolumeClaim:
claimName: postgres-claim
---
# this exposes the containers 5432 port to the network on 32432 on each node in the deployment
apiVersion: v1
kind: Service
metadata:
name: postgres
labels:
app: postgres
spec:
type: NodePort
ports:
- port: 5432
nodePort: 32432
name: psql
selector:
app: postgres