forked from cloud-bulldozer/benchmark-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hostpath-cr.yaml
117 lines (117 loc) · 2.79 KB
/
hostpath-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
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
labels:
type: local
spec:
persistentVolumeReclaimPolicy: Delete
storageClassName: manual
capacity:
storage: 10Gi
accessModes:
- ReadWriteOnce
hostPath:
path: /tmp
---
kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: postgres-persistent-storage
namespace: postgres-db
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 10Gi
storageClassName: manual
---
apiVersion: v1
kind: Service
metadata:
name: postgres-deployment
namespace: postgres-db
spec:
selector:
app: postgres
ports:
- protocol: TCP
port: 5432
targetPort: 5432