forked from sorintlab/stolon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstolon-keeper.yaml
178 lines (178 loc) · 5.04 KB
/
stolon-keeper.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
apiVersion: apps/v1beta1
kind: StatefulSet
metadata:
name: stolon-keeper
namespace: ${namespace:?}
spec:
serviceName: "stolon-keeper"
replicas: 3
volumeClaimTemplates:
- metadata:
name: data
annotations:
volume.beta.kubernetes.io/storage-class: slow
spec:
accessModes: [ "ReadWriteOnce" ]
resources:
requests:
storage: 50G
- metadata:
name: borg
annotations:
volume.beta.kubernetes.io/storage-class: not-important
spec:
accessModes: [ "ReadWriteOnce" ]
resources:
requests:
storage: 50G
template:
metadata:
labels:
app: stolon-keeper
annotations:
pod.alpha.kubernetes.io/initialized: "true"
pod.boostport.com/vault-approle: ${namespace:?}-stolon
pod.boostport.com/vault-init-container: install
pod.beta.kubernetes.io/init-containers: '[
{
"name": "install",
"image": "boostport/kubernetes-vault-init:0.2.0",
"imagePullPolicy": "IfNotPresent",
"env": [
{
"name": "VAULT_ROLE_ID",
"value": "bf049e69-8a58-7c87-3497-4d29b71e6e30"
},
{
"name": "CREDENTIALS_PATH",
"value": "/secrets"
}
],
"volumeMounts": [
{
"name": "vault-token",
"mountPath": "/secrets"
}
]
},
{
"name": "backup-restore",
"args": ["restore"],
"image": "nebtex/backups",
"imagePullPolicy": "Always",
"env": [
{
"name": "CONSUL_HTTP_ADDR",
"value": "consul.kv:8500"
},
{
"name": "APP_NAME",
"value": "stolon"
},
{
"name": "NAMESPACE",
"valueFrom": {
"fieldRef": {
"fieldPath": "metadata.namespace",
"apiVersion": "v1"
}
}
},
{
"name": "POD_NAME",
"valueFrom": {
"fieldRef": {
"fieldPath": "metadata.name",
"apiVersion": "v1"
}
}
}
],
"volumeMounts": [
{
"name": "vault-token",
"mountPath": "/secrets"
},
{
"name": "data",
"mountPath": "/volumes/stolon"
}, {
"name": "borg",
"mountPath": "/borg"
}
]
}
]'
spec:
terminationGracePeriodSeconds: 10
volumes:
- name: vault-token
emptyDir: {}
- name: stolon-credentials
secret:
secretName: stolon-credentials
defaultMode: 0400
- name: entrypoint
configMap:
name: stolon-keeper-init
defaultMode: 0755
containers:
- name: backups
args:
# backup each hour
- 0 * * * *
image: nebtex/backups
imagePullPolicy: Always
volumeMounts:
- name: vault-token
mountPath: /secrets
- name: data
mountPath: /volumes/stolon
- name: borg
mountPath: /borg
env:
- name: CONSUL_HTTP_ADDR
value: consul.kv:8500
- name: APP_NAME
value: stolon
- name: NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
- name: POD_NAME
valueFrom:
fieldRef:
fieldPath: metadata.name
- name: stolon-keeper
image: sorintlab/stolon:master-pg9.6
command:
- /keeper-init-bin/init-keeper.sh
env:
- name: STKEEPER_CLUSTER_NAME
value: ${namespace:?}-stolon
- name: STKEEPER_STORE_BACKEND
value: "consul"
- name: STKEEPER_STORE_ENDPOINTS
value: "http://consul.kv:8500"
- name: CONSUL_HTTP_TOKEN
valueFrom:
secretKeyRef:
name: stolon-credentials
key: CONSUL_HTTP_TOKEN
- name: STKEEPER_PG_REPL_USERNAME
value: "repluser"
- name: STKEEPER_PG_REPL_PASSWORD
value: "replpassword"
- name: STKEEPER_PG_SU_USERNAME
value: "postgres"
- name: STKEEPER_PG_SU_PASSWORDFILE
value: "/etc/secrets/stolon/password"
ports:
- containerPort: 5432
volumeMounts:
- name: data
mountPath: /stolon-data
- name: stolon-credentials
mountPath: /etc/secrets/stolon
- name: entrypoint
mountPath: /keeper-init-bin