-
Notifications
You must be signed in to change notification settings - Fork 4
/
hub_launch.py
executable file
·126 lines (99 loc) · 3.37 KB
/
hub_launch.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
#!/usr/bin/python3
#
# Copyright (c) 2011 Alon Swartz <[email protected]>
# Copyright (c) 2022 TUrnKey GNU/Linux <[email protected]>
#
# This file is part of HubTools.
#
# HubTools is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 3 of the License, or (at your
# option) any later version.
#
"""
Launch a new cloud server
Arguments:
appliance Appliance name to launch (e.g. core)
Options:
--region= Region for instance launch (default: us-east-1)
--size= Instance size (default: m1.small)
--label= Optional server descriptive label
--root-pass= Root password to set (default: random)
--db-pass= Database password
--app-pass= Admin password for application
--app-email= Admin email address for application
--app-domain= Domain for application
--backup-id= TurnKey Backup ID to restore on launch
--fqdn= Fully qualified domain name to associate
e.g., www.tklapp.com. | www.example.com.
--skip-secalerts Skip firstboot security updates
--skip-secupdates Skip security alerts and notifications setup
Environment variables:
HUB_APIKEY Displayed in your Hub account's user profile
"""
import os
import sys
import getopt
from hublib import Hub
from hublib.formatter import fmt_server_header, fmt_server
from hublib.utils import fatal
def usage(e=None):
if e:
print("error: " + str(e), file=sys.stderr)
print("Syntax: %s <appliance> [opts]" % (sys.argv[0]), file=sys.stderr)
print(__doc__, file=sys.stderr)
sys.exit(1)
def main():
kwargs = {
'region': "us-east-1",
'size': "m1.small",
'label': "",
'root_pass': "",
'db_pass': "",
'app_pass': "",
'app_email': "",
'app_domain': "",
'fqdn': "",
'backup_id': "",
'sec_alerts': "FORCE",
'sec_updates': "FORCE",
}
try:
s_opts = "h"
l_opts = [key.replace("_", "-") + "=" for key in kwargs]
l_opts.extend(["help", "skip-secalerts", "skip-secupdates"])
opts, args = getopt.gnu_getopt(sys.argv[1:], s_opts, l_opts)
except getopt.GetoptError as e:
usage(e)
for opt, val in opts:
if opt in ('-h', '--help'):
usage()
if opt == '--skip-secalerts':
kwargs['sec_alerts'] = 'SKIP'
continue
if opt == '--skip-secupdates':
kwargs['sec_updates'] = 'SKIP'
continue
for kwarg in kwargs:
if opt == '--' + kwarg.replace('_', '-'):
kwargs[kwarg] = val
break
if len(args) != 1:
usage("incorrect number of arguments")
apikey = os.environ.get('HUB_APIKEY')
if not apikey:
fatal("HUB_APIKEY not specified in environment")
name = args[0]
hub = Hub(apikey)
try:
server = hub.servers.launch(name, **kwargs)
except hub.Error as e:
if e.name == "Request.MissingArgument":
arg = e.description.split()[-1]
fatal("Required argument: --" + arg.replace('_', '-'))
else:
fatal(e.description)
print(fmt_server_header())
print(fmt_server(server))
if __name__ == "__main__":
main()