-
Notifications
You must be signed in to change notification settings - Fork 101
/
etcd-statefulset.yaml.tpl
215 lines (213 loc) · 5.59 KB
/
etcd-statefulset.yaml.tpl
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
<%
import os
if context.get("cloud", "") == "":
raise Exception("missing --var cloud={aws azure gcp openstack local} flag")
if context.get("container", "") == "":
raise Exception("missing --var container=ContainerName flag")
provider=""
imageTag="0.4.0"
if cloud == "aws":
provider="S3"
elif cloud == "azure" or cloud == "az":
provider="ABS"
elif cloud == "gcp":
provider="GCS"
elif cloud == "openstack" or cloud == "os":
provider="Swift"
elif cloud == "local":
provider=""
region="local"
%>---
apiVersion: v1
kind: Service
metadata:
name: etcd-client-${cloud}
labels:
app: etcd
spec:
ports:
- port: 2379
name: client
protocol: TCP
clusterIP: None
selector:
app: etcd
---
apiVersion: v1
kind: ConfigMap
metadata:
name: etcd-bootstrap-${cloud}
labels:
app: etcd
data:
bootstrap.sh: |-
#!/bin/sh
while true;
do
wget http://localhost:8080/initialization/status -S -O status;
STATUS=`cat status`;
case $STATUS in
"New")
wget http://localhost:8080/initialization/start -S -O - ;;
"Progress")
sleep 1;
continue;;
"Failed")
continue;;
"Successful")
exec etcd --data-dir=/var/etcd/data/new.etcd --name=etcd --advertise-client-urls=http://0.0.0.0:2379 --listen-client-urls=http://0.0.0.0:2379 --initial-cluster-state=new --initial-cluster-token=new
;;
esac;
done
---
apiVersion: apps/v1beta1
kind: StatefulSet
metadata:
name: etcd-${cloud}
spec:
selector:
matchLabels:
app: etcd-${cloud}
serviceName: "etcd-${cloud}"
replicas: 1
template:
metadata:
labels:
app: etcd-${cloud}
spec:
containers:
- name: etcd
command:
- /bootstrap/bootstrap.sh
image: quay.io/coreos/etcd:v3.3.10
imagePullPolicy: IfNotPresent
livenessProbe:
exec:
command:
- /bin/sh
- -ec
- ETCDCTL_API=3 etcdctl get foo
initialDelaySeconds: 5
periodSeconds: 5
readinessProbe:
httpGet:
path: /healthz
port: 8080
initialDelaySeconds: 5
periodSeconds: 10
ports:
- containerPort: 2380
name: server
protocol: TCP
- containerPort: 2379
name: client
protocol: TCP
volumeMounts:
- mountPath: /var/etcd/data
name: etcd-data-${cloud}
- mountPath: /bootstrap
name: etcd-bootstrap
- name: backup
command:
- etcdbrctl
- server
- --schedule=* */1 * * *
- --data-dir=/var/etcd/data/new.etcd
- --insecure-transport=true
- --storage-provider=${provider}
- --delta-snapshot-period-seconds=3600
- --garbage-collection-period-seconds=1800
- --snapstore-temp-directory=/var/etcd/data/temp
image: eu.gcr.io/gardener-project/gardener/etcdbrctl:${imageTag}
imagePullPolicy: Always
ports:
- containerPort: 8080
name: server
protocol: TCP
env:
- name: STORAGE_CONTAINER
value: ${container} # Change the container name here
% if cloud == "aws" :
- name: AWS_REGION
valueFrom:
secretKeyRef:
name: secret-${cloud}
key: region
- name: AWS_SECRET_ACCESS_KEY
valueFrom:
secretKeyRef:
name: secret-${cloud}
key: secretAccessKey
- name: AWS_ACCESS_KEY_ID
valueFrom:
secretKeyRef:
name: secret-${cloud}
key: accessKeyID
% elif cloud == "azure" or cloud == "az" :
- name: STORAGE_ACCOUNT
valueFrom:
secretKeyRef:
name: secret-${cloud}
key: storageaccount
- name: STORAGE_KEY
valueFrom:
secretKeyRef:
name: secret-${cloud}
key: storage-key
% elif cloud == "gcp" :
- name: GOOGLE_APPLICATION_CREDENTIALS
value: /root/.gcp/serviceaccount.json
% elif cloud == "openstack" or cloud == "os" :
- name: OS_AUTH_URL
valueFrom:
secretKeyRef:
name: secret-${cloud}
key: authURL
- name: OS_DOMAIN_NAME
valueFrom:
secretKeyRef:
name: secret-${cloud}
key: domainName
- name: OS_USERNAME
valueFrom:
secretKeyRef:
name: secret-${cloud}
key: username
- name: OS_PASSWORD
valueFrom:
secretKeyRef:
name: secret-${cloud}
key: password
- name: OS_TENANT_NAME
valueFrom:
secretKeyRef:
name: secret-${cloud}
key: tenantName
% endif
volumeMounts:
- mountPath: /var/etcd/data
name: etcd-data-${cloud}
% if cloud == "gcp" :
- mountPath: /root/.gcp/
name: secret-${cloud}
% endif
volumes:
- name: etcd-bootstrap
configMap:
name: etcd-bootstrap-${cloud}
defaultMode: 0356
% if cloud != "local" :
- name: secret-${cloud}
secret:
secretName: secret-${cloud} # change the secret name here
defaultMode: 0420
% endif
volumeClaimTemplates:
- metadata:
name: etcd-data-${cloud}
spec:
accessModes:
- "ReadWriteOnce"
resources:
requests:
storage: 1Gi