forked from bketelsen/corekube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
corekube-rackconnect-v3.yaml
417 lines (393 loc) · 16.1 KB
/
corekube-rackconnect-v3.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
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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
heat_template_version: 2013-05-23
description: >
Deploy Kubernetes on a CoreOS cluster that operates on
Rackspace's RackConnect v3
Maintainer - Cedric Hauber <[email protected]> | Github: @cedbossneo
parameters:
kubernetes_minion_count:
description: Number of CoreOS machines to deploy as Kubernetes Minion
type: number
default: 3
constraints:
- range:
min: 1
max: 12
description: Must be between 2 and 12 servers.
keyname:
type: string
description: Name of keypair to be used for compute instance
flavor:
type: string
default: 4 GB General Purpose v1
constraints:
- allowed_values:
- 4 GB General Purpose v1
- 8 GB General Purpose v1
description: |
Must be a valid Rackspace Cloud Server flavor for the region you have
selected to deploy into.
rackconnect-network:
type: string
description: UUID of RackConnect v3 network
coreos_image:
type: string
description: Rackspace Cloud Servers CoreOS Stable (633.1.0) UUID
default: "a41d8b7c-d41b-4369-a180-0734f3b1cd8c"
git_command:
type: string
description: Git repo checkout command
default: "/usr/bin/git clone https://github.com/metral/overlord ; /usr/bin/git -C overlord checkout -qf 96574056d0cc7ad8e52228df76374cb3537af8ba"
flannel_url:
type: string
description: Flannel (0.4.0) Binary URL
default: "http://a26736f09be9784cb06f-8d30bd32035bc1ac3e9215d2d6eedfc5.r53.cf1.rackcdn.com/flanneld"
discovery_net_interface:
type: string
description: Host network interface for which the Discovery node will operate over
default: "eth1"
kubernetes_net_interface:
type: string
description: Host network interface for which Kubernetes' overlay will operate over
default: "eth1"
resources:
coreos_cluster_uuid:
type: OS::Heat::RandomString
discovery:
type: OS::Nova::Server
properties:
key_name: { get_param: keyname }
image: { get_param: coreos_image }
flavor: { get_param: flavor }
name: "discovery"
user_data_format: RAW
networks:
- uuid: { get_param: rackconnect-network}
- uuid: "11111111-1111-1111-1111-111111111111"
config_drive: "true"
user_data:
str_replace:
template: |
#cloud-config
write_files:
- path: /run/get_discovery_interface_ip.sh
permissions: '0755'
content: |
#!/bin/bash
# Get's the IP of the interface that discovery will be
# accessible over
DISCOVERY_IF=%discovery_net_interface%
/usr/bin/ip -4 addr show $DISCOVERY_IF | /usr/bin/awk '/inet/ {print $2}' | /usr/bin/cut -d/ -f1 > /run/IP
/usr/bin/sed -i 's/^/IP=/' /run/IP
coreos:
update:
group: stable
reboot-strategy: off
units:
- name: private-discovery-setup.service
command: start
content: |
[Unit]
After=network-online.target
Requires=network-online.target
[Service]
ExecStart=/usr/bin/bash /run/get_discovery_interface_ip.sh
- name: private-discovery.service
command: start
content: |
[Unit]
After=network-online.target private-discovery-setup.service
Requires=network-online.target private-discovery-setup.service
[Service]
EnvironmentFile=/run/IP
RestartSec=5s
ExecStartPre=/usr/bin/docker pull quay.io/coreos/etcd:v2.0.9
ExecStart=/usr/bin/docker run -d --name discovery \
-p 2379:2379 -p 2380:2380 \
-v /usr/share/ca-certificates/:/etc/ssl/certs \
--net host quay.io/coreos/etcd:v2.0.9 -name discovery \
-initial-advertise-peer-urls http://${IP}:2380,http://${IP}:7001 \
-listen-peer-urls http://${IP}:2380,http://${IP}:7001 \
-initial-cluster discovery=http://${IP}:2380,discovery=http://${IP}:7001 \
-advertise-client-urls http://${IP}:2379,http://${IP}:4001 \
-listen-client-urls http://0.0.0.0:2379,http://0.0.0.0:4001
params:
"%discovery_net_interface%": { get_param: discovery_net_interface }
overlord:
type: OS::Nova::Server
properties:
key_name: { get_param: keyname }
image: { get_param: coreos_image }
flavor: { get_param: flavor }
name: "overlord"
user_data_format: RAW
config_drive: "true"
networks:
- uuid: { get_param: rackconnect-network}
- uuid: "11111111-1111-1111-1111-111111111111"
user_data:
str_replace:
template: |
#cloud-config
coreos:
etcd:
name: overlord
discovery: http://%discovery%:2379/v2/keys/discovery/%uuid%
addr: $private_ipv4:4001
peer-addr: $private_ipv4:7001
update:
group: stable
reboot-strategy: off
units:
- name: etcd.service
command: start
- name: fleet.socket
command: start
content: |
[Socket]
# Talk to the API over a Unix domain socket (default)
ListenStream=/var/run/fleet.sock
# Talk to the API over an exposed port
ListenStream=10001
Service=fleet-local.service
[Install]
WantedBy=sockets.target
- name: fleet-local.service
command: start
content: |
# fleet-local is kicked off by fleet.socket after API port
# is opened
[Unit]
Description=fleet-local
Wants=etcd.service
After=etcd.service
[Service]
Environment=FLEET_PUBLIC_IP=$private_ipv4
Environment=FLEET_METADATA=kubernetes_role=overlord
ExecStart=/usr/bin/fleet
Restart=always
RestartSec=10s
- name: overlord.service
command: start
content: |
# Overlord / logic layer service to deploy kubernetes to
# the cluster
[Unit]
After=network-online.target
Requires=network-online.target
[Service]
WorkingDirectory=/root
Environment="DIR=overlord"
ExecStartPre=/usr/bin/rm -rf $DIR
ExecStartPre=%git_command%
ExecStart=/usr/bin/bash ${DIR}/build_run.sh
params:
"%discovery%": { get_attr: [discovery, first_address] }
"%uuid%": { get_attr: [coreos_cluster_uuid, value] }
"%git_command%": { get_param: git_command }
kubernetes_master:
type: OS::Nova::Server
properties:
key_name: { get_param: keyname }
image: { get_param: coreos_image }
flavor: { get_param: flavor }
name: "kubernetes_master"
networks:
- uuid: { get_param: rackconnect-network}
- uuid: "11111111-1111-1111-1111-111111111111"
user_data_format: RAW
config_drive: "true"
user_data:
str_replace:
template: |
#cloud-config
write_files:
- path: /run/get_discovery_ip_port.sh
permissions: '0755'
content: |
#!/bin/bash
# Sets up environment file with the discovery node's IP &
# port so # that in Overlode's template
# [email protected] it can be passed
# in as an argument
/usr/bin/cat /run/systemd/system/etcd.service.d/20-cloudinit.conf | /usr/bin/grep -i discovery | /usr/bin/cut -f3 -d"=" | /usr/bin/awk -F '/v' '{print $1}' > /run/discovery_ip_port
/usr/bin/sed -i 's/^/DISCOVERY_IP_PORT=/' /run/discovery_ip_port
coreos:
etcd:
name: kubernetes_master
discovery: http://%discovery%:2379/v2/keys/discovery/%uuid%
addr: $private_ipv4:4001
peer-addr: $private_ipv4:7001
fleet:
public-ip: $private_ipv4
metadata: kubernetes_role=master
update:
group: stable
reboot-strategy: off
units:
- name: etcd.service
command: start
- name: fleet.service
command: start
- name: get_discovery_ip_port.service
runtime: true
command: start
content: |
# Runs get_discovery_ip_port.sh to have discovery IP &
# port ready for consumption by overlord when creating
# the Kubernetes' [email protected] template
[Unit]
After=network-online.target
Requires=network-online.target
[Service]
ExecStart=/usr/bin/bash /run/get_discovery_ip_port.sh
- name: flannel-install.service
command: start
content: |
# Installs flannel
[Unit]
After=network-online.target
Requires=network-online.target
[Service]
Type=oneshot
RemainAfterExit=yes
ExecStart=/usr/bin/wget -N -P /opt/bin %flannel_url%
ExecStart=/usr/bin/chmod +x /opt/bin/flanneld
- name: flannel.service
command: start
content: |
# Configures & starts flannel
[Unit]
After=network-online.target etcd.service flannel-install.service
Requires=network-online.target etcd.service flannel-install.service
[Service]
ExecStartPre=/usr/bin/etcdctl mk /coreos.com/network/config '{"Network":"10.244.0.0/15", "Backend": {"Type": "vxlan"}}'
ExecStart=/opt/bin/flanneld -iface=%kubernetes_net_interface%
Restart=always
RestartSec=5s
- name: flannel-env.path
command: start
content: |
# Ensures flannel env vars are set to use with Docker
[Path]
PathExists=/run/flannel/subnet.env
Unit=docker.service
- name: docker.service
command: start
content: |
# Starts new docker server that uses flannel
[Unit]
After=flannel-env.path network-online.target flannel.service
Requires=flannel-env.path network-online.target flannel.service
Description=Docker Application Container Engine
[Service]
EnvironmentFile=/run/flannel/subnet.env
ExecStartPre=/bin/mount --make-rprivate /
ExecStartPre=/usr/bin/systemctl kill docker.service
ExecStart=/usr/bin/docker -d --bip=${FLANNEL_SUBNET} --mtu=${FLANNEL_MTU}
[Install]
WantedBy=multi-user.target
params:
"%discovery%": { get_attr: [discovery, first_address] }
"%uuid%": { get_attr: [coreos_cluster_uuid, value] }
"%flannel_url%": { get_param: flannel_url }
"%kubernetes_net_interface%": { get_param: kubernetes_net_interface }
kubernetes_minions:
type: "OS::Heat::ResourceGroup"
properties:
count: { get_param: kubernetes_minion_count }
resource_def:
type: OS::Nova::Server
properties:
key_name: { get_param: keyname }
image: { get_param: coreos_image }
flavor: { get_param: flavor }
name: kubernetes_minion_%index%
networks:
- uuid: { get_param: rackconnect-network}
- uuid: "11111111-1111-1111-1111-111111111111"
user_data_format: RAW
config_drive: "true"
user_data:
str_replace:
template: |
#cloud-config
coreos:
etcd:
name: kubernetes_minion_%index%
discovery: http://%discovery%:2379/v2/keys/discovery/%uuid%
addr: $private_ipv4:4001
peer-addr: $private_ipv4:7001
fleet:
public-ip: $private_ipv4
metadata: kubernetes_role=minion
update:
group: stable
reboot-strategy: off
units:
- name: etcd.service
command: start
- name: fleet.service
command: start
- name: flannel-install.service
command: start
content: |
# Installs flannel
[Unit]
After=network-online.target
Requires=network-online.target
[Service]
Type=oneshot
RemainAfterExit=yes
ExecStart=/usr/bin/wget -N -P /opt/bin %flannel_url%
ExecStart=/usr/bin/chmod +x /opt/bin/flanneld
- name: flannel.service
command: start
content: |
# Configures & starts flannel
[Unit]
After=etcd.service flannel-install.service
Requires=etcd.service flannel-install.service
[Service]
ExecStart=/opt/bin/flanneld -iface=%kubernetes_net_interface%
Restart=always
RestartSec=5s
- name: flannel-env.path
command: start
content: |
# Ensures flannel env vars are set to use with Docker
[Path]
PathExists=/run/flannel/subnet.env
Unit=docker.service
- name: docker.service
command: start
content: |
# Starts new docker server that uses flannel
[Unit]
After=flannel-env.path network-online.target flannel.service
Requires=flannel-env.path network-online.target flannel.service
Description=Docker Application Container Engine
[Service]
EnvironmentFile=/run/flannel/subnet.env
ExecStartPre=/bin/mount --make-rprivate /
ExecStartPre=/usr/bin/systemctl kill docker.service
ExecStart=/usr/bin/docker -d --bip=${FLANNEL_SUBNET} --mtu=${FLANNEL_MTU}
[Install]
WantedBy=multi-user.target
params:
"%discovery%": { get_attr: [discovery, first_address] }
"%uuid%": { get_attr: [coreos_cluster_uuid, value] }
"%flannel_url%": { get_param: flannel_url }
"%kubernetes_net_interface%": { get_param: kubernetes_net_interface }
outputs:
discovery_ip:
value: { get_attr: [ discovery, accessIPv4 ] }
description: The IP of the Discovery
overlord_ip:
value: { get_attr: [ overlord, accessIPv4 ] }
description: The IP of the Overlord
master_ip:
value: { get_attr: [ kubernetes_master, accessIPv4 ] }
description: The IP of the Kubernetes Master
minion_ips:
value: { get_attr: [ kubernetes_minions, accessIPv4 ] }
description: The IP of the Kubernetes Minions