-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathondat-postgres.yml
82 lines (81 loc) · 2.18 KB
/
ondat-postgres.yml
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
kind: Namespace
apiVersion: v1
metadata:
name: postgres
---
apiVersion: storage.k8s.io/v1
kind: StorageClass
metadata:
name: ondat-replicated
provisioner: csi.storageos.com # Provisioner when using CSI
parameters:
csi.storage.k8s.io/fstype: ext4
storageos.com/replicas: "1" # Enforces 1 replica for the Volume
# Change the Namespace below if Ondat doesn't run in kube-system
csi.storage.k8s.io/node-publish-secret-namespace: storageos # Namespace that runs Ondat Daemonset
csi.storage.k8s.io/provisioner-secret-namespace: storageos # Namespace that runs Ondat Daemonset
csi.storage.k8s.io/controller-publish-secret-namespace: storageos # Namespace that runs Ondat Daemonset
csi.storage.k8s.io/node-publish-secret-name: csi-node-publish-secret
csi.storage.k8s.io/provisioner-secret-name: csi-provisioner-secret
csi.storage.k8s.io/controller-publish-secret-name: csi-controller-publish-secret
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: postgres-ondat
namespace: postgres
labels:
storageos.com/replicas: "1"
spec:
storageClassName: "ondat-replicated"
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 5Gi
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: postgres
namespace: postgres
spec:
selector:
matchLabels:
app: postgres
strategy:
rollingUpdate:
maxSurge: 1
maxUnavailable: 1
type: RollingUpdate
replicas: 1
template:
metadata:
labels:
app: postgres
spec:
schedulerName: stork
containers:
- name: postgres
image: postgres:9.5
imagePullPolicy: "IfNotPresent"
ports:
- containerPort: 5432
env:
- name: POSTGRES_USER
value: pgbench
- name: PGUSER
value: pgbench
- name: POSTGRES_PASSWORD
value: superpostgres
- name: PGBENCH_PASSWORD
value: superpostgres
- name: PGDATA
value: /var/lib/postgresql/data/pgdata
volumeMounts:
- mountPath: /var/lib/postgresql/data
name: postgres-data
volumes:
- name: postgres-data
persistentVolumeClaim:
claimName: postgres-ondat