This repository was archived by the owner on Feb 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtasks.py
More file actions
204 lines (153 loc) · 6.05 KB
/
Copy pathtasks.py
File metadata and controls
204 lines (153 loc) · 6.05 KB
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
from __future__ import with_statement
import os
from tempfile import NamedTemporaryFile
from fabric.api import get, sudo, run, hide, settings
from cloudify import ctx
from cloudify.exceptions import NonRecoverableError, RecoverableError
CONFIG_PATH = '/etc/cloudify/config.yaml'
def install_rpm(_rpm):
try:
sudo("rpm -i {0}".format(_rpm))
except Exception as e:
raise NonRecoverableError(str(e))
return True
def install_requirements():
try:
sudo("sudo yum install -y python-backports-ssl_match_hostname "
"python-setuptools python-backports")
except Exception as e:
raise NonRecoverableError(str(e))
return True
def update_config(private, public, _config_path):
SED = "sed -i 's|{0}|{1}|g' {2}"
old_monitoring = " skip_installation: true"
new_monitoring = " skip_installation: false"
try:
sudo(SED.format(old_monitoring, new_monitoring, _config_path))
except Exception as e:
raise NonRecoverableError(str(e))
old_sanity = " skip_sanity: false"
new_sanity = " skip_sanity: true"
try:
sudo(SED.format(old_sanity, new_sanity, _config_path))
except Exception as e:
raise NonRecoverableError(str(e))
old_private_ip = " private_ip: \\x27\\x27"
new_private_ip = " private_ip: \\x27{0}\\x27".format(private)
try:
sudo(SED.format(old_private_ip, new_private_ip, _config_path))
except Exception as e:
raise NonRecoverableError(str(e))
old_public_ip = " public_ip: \\x27\\x27"
new_public_ip = " public_ip: \\x27{0}\\x27".format(public)
try:
sudo(SED.format(old_public_ip, new_public_ip, _config_path))
except Exception as e:
raise NonRecoverableError(str(e))
old_networks = " networks: {}"
new_networks = " networks: {{ \\x27default\\x27: \\x27{0}\\x27, \\x27external\\x27: \\x27{1}\\x27 }}".format(private, public)
try:
sudo(SED.format(old_networks, new_networks, _config_path))
sudo("chmod 775 {0}".format(_config_path))
except Exception as e:
raise NonRecoverableError(str(e))
return True
def cfy_install(password, old=False):
sudo("chmod 777 {0}".format(CONFIG_PATH))
install_string = 'cfy_manager install'
if password:
install_string = \
install_string + ' ' + '--admin-password {0}'.format(
password)
if old:
install_string = install_string + ' --clean-db'
elif not old:
try:
sudo("sudo yum install -y openssl-1.0.2k")
except Exception as e:
raise NonRecoverableError(str(e))
try:
run(install_string)
except Exception as e:
ctx.logger.error(str(e))
return False
sudo("chmod 775 {0}".format(CONFIG_PATH))
return True
def plugins_upload():
try:
run("cfy plugins bundle-upload")
except Exception as e:
raise NonRecoverableError(str(e))
return True
def secrets_create(secret_key, secret_value):
try:
with hide('output','running','warnings'), settings(warn_only=True):
run("cfy secrets create {0} -s \"{1}\"".format(
secret_key, secret_value))
except Exception as e:
raise NonRecoverableError(str(e))
return True
def blueprints_upload(file, name, url):
try:
run("cfy blueprints upload -n {0} -b {1} {2}".format(file, name, url))
except Exception as e:
raise NonRecoverableError(str(e))
return True
def create(private_ip,
public_ip,
rpm,
secrets,
blueprints,
config_path=CONFIG_PATH,
password=None,
**_):
ctx.logger.info("Installing Cloudify Manager components.")
try:
run("echo Hello")
except Exception as e:
raise RecoverableError(str(e))
if not ctx.instance.runtime_properties.get('installed_rpm'):
install_requirements()
ctx.instance.runtime_properties['installed_rpm'] = install_rpm(rpm)
if not ctx.instance.runtime_properties.get('updated_config'):
ctx.instance.runtime_properties['updated_config'] = \
update_config(private_ip, public_ip, config_path)
if 'cfy_installed' not in ctx.instance.runtime_properties:
cfy_install_output = cfy_install(password)
else:
cfy_install_output = cfy_install(password, old=True)
ctx.instance.runtime_properties['cfy_installed'] = cfy_install_output
if not cfy_install_output:
raise RecoverableError('cfy install failed.')
if not ctx.instance.runtime_properties.get('plugins_uploaded'):
ctx.instance.runtime_properties['plugins_uploaded'] = plugins_upload()
more_secrets = [
{'key': 'cfy_user', 'value': 'admin'},
{'key': 'kubernetes_master_port', 'value': 'kubernetes_master_port'},
{'key': 'kubernetes-admin_client_certificate_data', 'value': 'kubernetes-admin_client_certificate_data'},
{'key': 'kubernetes_master_ip', 'value': 'kubernetes_master_ip'},
{'key': 'kubernetes_certificate_authority_data', 'value': 'kubernetes_certificate_authority_data'},
{'key': 'kubernetes-admin_client_key_data', 'value': 'kubernetes-admin_client_key_data'},
{'key': 'cfy_password', 'value': password or 'cfy_password'},
{'key': 'cfy_tenant', 'value': 'default_tenant'},
{'key': 'kubernetes_token', 'value': 'kubernetes_token'}
]
for ms in more_secrets:
secrets.append(ms)
for secret in secrets:
secrets_create(
secret.get('key'),
secret.get('value'))
for blueprint in blueprints:
blueprints_upload(
blueprint.get('file'),
blueprint.get('name'),
blueprint.get('url'))
ctx.logger.info(
"Initialize your CLI profile: "
"`cfy profiles use "
"{0} -u admin -p {1} -t default_tenant`".format(public_ip, password or "_"))
if not password:
ctx.logger.info(
"Since you did not provide a password, scroll up though "
"the execution log and search for \"Manager password is\".")