-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathk8s-demo.py
executable file
·344 lines (282 loc) · 14.7 KB
/
k8s-demo.py
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
#!/usr/local/bin/python
# pylint: disable=C0321
"""Script to generate X servers, configure them in a kubernetes cluster and deploy a wordpress."""
import argparse
import sched
import time
import requests
import ast
import subprocess
from datetime import datetime
from concurrent.futures import ThreadPoolExecutor, wait, as_completed
from retrying import retry
from services import bmc_api_auth, bmc_api
from utils.bcolors import bcolors
from utils import files
scheduler = sched.scheduler(time.time, time.sleep)
REQUEST = requests.Session()
ENVIRONMENT = "prod"
VERBOSE_MODE = False
MAX_RETRIES = 1
NOW = datetime.now()
def parse_args():
"""Defines which arguments are needed for the script to run."""
parser = argparse.ArgumentParser(
description='BMC-API Demo')
req_grp = parser.add_argument_group(title='optional arguments')
req_grp.add_argument(
'-d',
'--delete_all',
help='Delete all servers')
parsed = parser.parse_args()
return parsed
def main():
"""Method called from the main entry point of the script to do the required logic."""
args = parse_args()
delete_all = args.delete_all
get_access_token(credentials["client_id"], credentials["client_secret"])
if delete_all is not None:
bmc_api.delete_all_servers(REQUEST, ENVIRONMENT)
files.delete_servers_provisioned_file()
return
files.delete_servers_provisioned_file()
check_kubectl_local()
servers = list()
pool = ThreadPoolExecutor()
futures_requests = []
print(bcolors.WARNING + "Creating servers..." + bcolors.ENDC)
bmc_api.create_servers(futures_requests, pool, REQUEST, data["servers"], ENVIRONMENT)
futures_setups = []
requests_counter = 0
for request in as_completed(futures_requests):
if request.result() is not None:
requests_counter += 1
json_server = request.result()
print(bcolors.WARNING + "Server created, provisioning {}...".format(json_server['hostname']) + bcolors.ENDC)
if requests_counter == server_settings['servers_quantity']:
print(bcolors.WARNING + "Waiting for servers to be provisioned..." + bcolors.ENDC)
futures_setups.append(pool.submit(__do_setup_host, servers, request.result()))
wait(futures_setups)
for _server in servers:
print(bcolors.OKBLUE + bcolors.BOLD + "Setup servers done" + bcolors.ENDC)
if not _server['joined']:
print(bcolors.WARNING + "Adding node" + bcolors.ENDC)
join_nodes(data['master_ip'], _server)
elif _server['master']:
install_wordpress()
print(bcolors.OKBLUE + bcolors.BOLD + "Wordpress installed" + bcolors.ENDC)
if len(servers) > 0:
setup_master_dashboard(data['master_ip'])
print(bcolors.OKBLUE + bcolors.BOLD + "Kubernetes dashboard installed" + bcolors.ENDC)
#Fix to ensure coredns and wordpress works correctly
run_shell_command(['kubectl scale deployment.apps/coredns -n kube-system --replicas=0'])
run_shell_command(['kubectl scale deployment.apps/coredns -n kube-system --replicas=1'])
run_shell_command(['kubectl scale deployment.apps/wordpress -n wordpress --replicas=0'])
run_shell_command(['kubectl scale deployment.apps/wordpress -n wordpress --replicas=1'])
check_system(servers)
show_k8s_dashboard_info()
show_wordpress_info()
def __do_setup_host(servers, json_server):
if json_server is not None:
json_server['master'] = False
json_server['joined'] = False
servers.append(json_server)
setup_host(json_server)
return json_server
def setup_hosts(servers):
pool = ThreadPoolExecutor()
futures = []
for json_server in servers:
futures.append(pool.submit(setup_host, json_server))
wait(futures)
return futures, pool
def join_nodes(master_host, json_server):
if not json_server['master']:
token = get_tokens(master_host)
print(bcolors.WARNING + "Joining node {} to master node".format(json_server['hostname']) + bcolors.ENDC)
join_to_cluster(json_server['publicIpAddresses'][0], master_host, token)
def get_master_host(servers):
for json_server in servers:
if json_server['master']:
return json_server['publicIpAddresses'][0]
def get_access_token(client, password):
print(bcolors.WARNING + "Retrieving token" + bcolors.ENDC)
# Retrieve an access token using the client Id and client secret provided.
access_token = bmc_api_auth.get_access_token(client, password, ENVIRONMENT)
# Add Auth Header by default to all requests.
REQUEST.headers.update({'Authorization': 'Bearer {}'.format(access_token)})
REQUEST.headers.update({'Content-Type': 'application/json'})
def setup_host(json_server):
scheduler.enter(0, 1, wait_server_ready, (scheduler, json_server))
scheduler.run()
print(bcolors.OKBLUE + bcolors.BOLD + "Server provisioned {}".format(json_server['hostname']) + bcolors.ENDC)
print(bcolors.WARNING + "Installing kubernetes in {}".format(json_server['hostname']) + bcolors.ENDC)
install_basic_script(json_server['publicIpAddresses'][0])
print(bcolors.OKBLUE + bcolors.BOLD + "Kubernetes installed {}".format(json_server['hostname']) + bcolors.ENDC)
if json_server['master']:
print(bcolors.WARNING + "Configure local kubernetes cli for connect to master" + bcolors.ENDC)
setup_localhost(data['master_ip'])
print(bcolors.OKBLUE + bcolors.BOLD + "Local kubernetes cli configured to connect to master" + bcolors.ENDC)
setup_k8s_addons(data['master_ip'])
print(bcolors.OKBLUE + bcolors.BOLD + "Add-ons installed, the master node is ready to use" + bcolors.ENDC)
return json_server
def wait_server_ready(_scheduler, server_data):
json_server = bmc_api.get_server(REQUEST, server_data['id'], ENVIRONMENT)
if json_server['status'] == "creating":
_scheduler.enter(2, 1, wait_server_ready, (_scheduler, server_data,))
elif json_server['status'] == "powered-on" and not data['has_a_master_server']:
server_data['status'] = json_server['status']
server_data['master'] = True
server_data['joined'] = True
data['has_a_master_server'] = True
data['master_ip'] = json_server['publicIpAddresses'][0]
data['master_hostname'] = json_server['hostname']
print(
bcolors.OKBLUE + bcolors.BOLD + "ASSIGNED MASTER SERVER: {}".format(data['master_hostname']) + bcolors.ENDC)
else:
server_data['status'] = json_server['status']
def setup_localhost(master_ip: str):
run_shell_command(
[ssh + 'ubuntu@{} \'sudo microk8s.kubectl config view --raw\' > ~/.kube/config'.format(master_ip)])
run_shell_command(['sed -i \'s/127.0.0.1/{}/g\' ~/.kube/config'.format(master_ip)])
run_shell_command(['gnome-terminal -e \'sh -c \"watch -n1 kubectl get all --all-namespaces -o wide; exec bash\"\''])
def check_system(servers: list):
print("Checking k8s add-ons installation")
if not is_k8s_addons_ready():
print(bcolors.FAIL + "Error in kubernetes add-ons installation" + bcolors.ENDC)
setup_k8s_addons(data['master_ip'])
print("Checking wordpress installation")
if not is_wordpress_ready():
print(bcolors.FAIL + "Error in wordpress installation" + bcolors.ENDC)
install_wordpress()
print("Checking k8s dashboard installation")
if not is_k8s_dashboard_ready():
print(bcolors.FAIL + "Error in k8s dashboard installation" + bcolors.ENDC)
setup_master_dashboard(data['master_ip'])
print("Checking nodes connection")
for tmp_server in servers:
if not tmp_server['master'] and not is_node_ready(tmp_server['publicIpAddresses']):
print(
bcolors.FAIL + "Error in node {} communication installation".format(tmp_server['hostname']) + bcolors.ENDC)
setup_host(tmp_server)
join_nodes(data['master_ip'], tmp_server)
def is_k8s_addons_ready() -> bool:
checks_list = list()
checks_list.append('kubectl get services -l k8s-app=kube-dns -nkube-system | grep -i kube-dns')
checks_list.append('kubectl get deployments -nkube-system | grep -i coredns')
checks_list.append('kubectl get pods -nkube-system | grep -i coredns')
checks_list.append('kubectl get pods -ningress | grep -i ingress')
return checker_list(checks_list)
def is_k8s_dashboard_ready() -> bool:
checks_list = list()
checks_list.append('kubectl get services -nkube-system | grep -i kubernetes-dashboard')
checks_list.append('kubectl get deployments -nkube-system | grep -i kubernetes-dashboard')
checks_list.append('kubectl get pods -nkube-system | grep -i kubernetes-dashboard')
return checker_list(checks_list)
def is_wordpress_ready() -> bool:
checks_list = list()
checks_list.append('kubectl get namespaces -nwordpress | grep -i wordpress')
checks_list.append('kubectl get services -nwordpress | grep -i wordpress')
checks_list.append('kubectl get deployments -nwordpress | grep -i wordpress')
checks_list.append('kubectl get pods -nwordpress | grep -i wordpress')
checks_list.append('kubectl get ingress -nwordpress | grep -i wordpress')
checks_list.append('kubectl get services -nwordpress | grep -i mysql')
checks_list.append('kubectl get deployments -nwordpress | grep -i mysql')
checks_list.append('kubectl get pods -nwordpress | grep -i mysql')
checks_list.append('kubectl get pv -nwordpress | grep -i mysql')
checks_list.append('kubectl get pvc -nwordpress | grep -i mysql')
return checker_list(checks_list)
def is_node_ready(worker_ips) -> bool:
nodes = run_shell_command(['kubectl get nodes'], print_log=True)
for worker_ip in worker_ips:
if worker_ip in nodes:
return True
return False
def checker_list(check_list):
for check in check_list:
output = run_shell_command([check], print_log=True)
if output == "":
return False
return True
def install_wordpress():
print(bcolors.WARNING + "Installing wordpress" + bcolors.ENDC)
run_shell_command(['kubectl create namespace wordpress'], print_log=True)
run_shell_command(['kubectl apply -f ./wordpress.yaml -nwordpress'], print_log=True)
def install_basic_script(host_ip: str):
run_shell_command([ssh + 'ubuntu@{} \'bash -s\' < ./scripts/basic.sh'.format(host_ip)], print_log=True)
def setup_k8s_addons(master_ip: str):
print(
bcolors.WARNING + "Installing k8s add-ons in master server: {}".format(data['master_hostname']) + bcolors.ENDC)
run_shell_command([ssh + 'ubuntu@{} \'sudo microk8s.enable dns ingress\''.format(master_ip)],
print_log=True)
def setup_master_dashboard(master_ip: str):
print(bcolors.WARNING + "Installing kubernetes dashboard" + bcolors.ENDC)
run_shell_command([f"{ssh} ubuntu@{master_ip} \'bash -s\' < ./scripts/master-dashboard.sh {master_ip}"], print_log=True)
def get_tokens(master_ip: str) -> str:
run_shell_command([ssh + 'ubuntu@{} sudo microk8s.add-node'.format(master_ip)], print_log=True)
return run_shell_command(
[ssh + 'ubuntu@{} sudo cat /var/snap/microk8s/current/credentials/cluster-tokens.txt'.format(master_ip)],
print_log=True)
def join_to_cluster(worker_ip: str, master_ip: str, token: str) -> str:
return run_shell_command([ssh + 'ubuntu@{} sudo microk8s.join {}:25000/{}'.format(worker_ip, master_ip, token)],
print_log=True)
def read_dict_file(filename: str) -> dict:
with open(filename, 'r') as f:
s = f.read()
return ast.literal_eval(s)
def check_kubectl_local():
if run_shell_command(["command -v kubectl"]) == "":
txt = input("Install kubectl in your computer? (y/n) ")
if txt == "y":
print(bcolors.WARNING + "Installing kubectl in local machine" + bcolors.ENDC)
run_shell_command(['chmod +x ./scripts/kubectl-local.sh'])
run_shell_command(['./scripts/kubectl-local.sh'])
print(bcolors.OKBLUE + "Installed kubectl" + bcolors.ENDC)
def show_k8s_dashboard_info():
print(bcolors.OKBLUE + bcolors.BOLD + "==== KUBERNETES DASHBOARD INFO ====" + bcolors.ENDC)
token = run_shell_command(["kubectl -n kube-system get secret | grep default-token | cut -d \" \" -f1"])
token = run_shell_command(["kubectl -n kube-system describe secret {}".format(token)])
port = run_shell_command(
["kubectl -n kube-system describe service kubernetes-dashboard | grep NodePort | grep -Eo \'[0-9]{1,6}\'"])
print("Dashboard URL: https://{}:{}".format(data["master_ip"], port))
print("Token: {}".format(token))
def show_wordpress_info():
print(bcolors.OKBLUE + bcolors.BOLD + "==== WORDPRESS DASHBOARD INFO ====" + bcolors.ENDC)
print("URL: https://{}".format(data["master_ip"]))
def retry_if_runtime_error(exception):
"""Return True if we should retry (in this case when it's an RuntimeError), False otherwise"""
print(bcolors.OKBLUE + "Retrying..." + bcolors.ENDC)
return isinstance(exception, RuntimeError)
@retry(retry_on_exception=retry_if_runtime_error, stop_max_attempt_number=5, wait_exponential_multiplier=1000, wait_exponential_max=10000)
def run_shell_command(commands: list, print_log: bool = VERBOSE_MODE) -> str:
proc = subprocess.Popen(commands, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True)
(out, err) = proc.communicate()
result = out.decode('UTF-8')
if err:
print(bcolors.FAIL + "Error executing: {}".format(*commands) + bcolors.ENDC)
print(bcolors.FAIL + "{}".format(err.decode('UTF-8')) + bcolors.ENDC)
raise RuntimeError()
if print_log:
if result != "":
print(bcolors.HEADER + "{}".format(result) + bcolors.ENDC)
else:
print(bcolors.HEADER + "Finished: {}".format(*commands) + bcolors.ENDC)
return result
if __name__ == '__main__':
server_settings = read_dict_file("server-settings.conf")
credentials = read_dict_file("credentials.conf")
servers_settings = []
for server in range(server_settings['servers_quantity']):
server_setting = {"hostname": f"{server_settings['hostname']}-{server + 1}",
"description": f"{server_settings['description']}",
"public": server_settings['public'],
"location": server_settings['location'],
"os": "ubuntu/bionic",
"type": server_settings['server_type'],
"sshKeys": [server_settings['ssh-key']]}
servers_settings.append(server_setting)
data = {"has_a_master_server": False, "servers": servers_settings, "master_ip": "", "master_hostname": ""}
time = {"now": NOW}
config = {}
ssh = "ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o LogLevel=ERROR "
main()