-
Notifications
You must be signed in to change notification settings - Fork 129
/
local-cr.yaml
126 lines (126 loc) · 3.03 KB
/
local-cr.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
apiVersion: v1
kind: Namespace
metadata:
name: postgres-db
---
apiVersion: v1
kind: ConfigMap
metadata:
name: postgres-custom-config
namespace: postgres-db
data:
custom.pg_hba.conf: |
# TYPE DATABASE USER ADDRESS METHOD
# "local" is for Unix domain socket connections only
local all all trust
# IPv4 local connections:
host all all all trust
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: postgres-deployment
namespace: postgres-db
spec:
selector:
matchLabels:
app: postgres
replicas: 1
template:
metadata:
labels:
app: postgres
type: postgres-database-server
spec:
nodeSelector:
kubernetes.io/hostname: "master-0"
terminationGracePeriodSeconds: 10
containers:
- name: postgres
image: centos/postgresql-10-centos8:latest
imagePullPolicy: "IfNotPresent"
ports:
- containerPort: 5432
resources:
requests:
cpu: 200m
memory: 100Mi
limits:
cpu: 4
memory: 16Gi
env:
- name: POSTGRESQL_USER
value: "test"
- name: POSTGRESQL_PASSWORD
value: "test"
- name: POSTGRESQL_DATABASE
value: "test"
- name: POSTGRESQL_ADMIN_PASSWORD
value: "postgres"
securityContext:
privileged: true
volumeMounts:
- name: postgres-custom-config
mountPath: /var/lib/pgsql/data/pg_hba.conf
subPath: custom.pg_hba.conf #should be the name used in the ConfigMap
- name: postgres-persistent-storage
mountPath: /var/lib/pgsql/data
readOnly: false
volumes:
- name: postgres-custom-config
configMap:
name: postgres-custom-config
- name: postgres-persistent-storage
persistentVolumeClaim:
claimName: postgres-persistent-storage
---
apiVersion: v1
kind: PersistentVolume
metadata:
name: pvdb
spec:
capacity:
storage: 10Gi
volumeMode: Filesystem
accessModes:
- ReadWriteOnce
persistentVolumeReclaimPolicy: Delete
storageClassName: localblock
local:
# mkdir inside node
path: /var/lib/pgsql/data
nodeAffinity:
required:
nodeSelectorTerms:
- matchExpressions:
- key: kubernetes.io/hostname
operator: In
values:
- master-0
---
kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: postgres-persistent-storage
namespace: postgres-db
spec:
storageClassName: localblock
accessModes:
- ReadWriteOnce
volumeMode: Filesystem
resources:
requests:
storage: 10Gi
---
apiVersion: v1
kind: Service
metadata:
name: postgres-deployment
namespace: postgres-db
spec:
selector:
app: postgres
ports:
- protocol: TCP
port: 5432
targetPort: 5432