forked from gridcentric/cobaltclient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
142 lines (104 loc) · 4.61 KB
/
README
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
Overview
========
An extension hook for novaclient that enables it to interact with the Cobalt endpoints.
Command line usage
==================
After installing the operations provided by the Cobalt extension will be available to the
nova command line application:
# Display all of the available commands of the nova script. The gridcentric bless, launch,
# list-blessed, list-launched, discard and gc-migrate are listed.
$ nova help
# Doing nova help <command> on any of these commands will display how to use them in detail.
$ nova help bless
usage: nova bless <instance id>
Bless an instance
Positional arguments:
<instance id> ID of the instance to bless
$ nova help launch
usage: nova launch [--target <target memory>] [--params <key=value>]
<blessed id>
Launch a new instance
Positional arguments:
<blessed id> ID of the blessed instance
Optional arguments:
--target <target memory>
The memory target of the launched instance
--params <key=value> Guest parameters to send to vms-agent
$ nova help discard
usage: nova discard <blessed id>
Discard a blessed instance
Positional arguments:
<blessed id> ID of the blessed instance
$ nova help co-migrate
usage: nova co-migrate <instance id> <destination host>
Migrate an instance using VMS
Positional arguments:
<instance id> ID of the instance to migrate
<destination host> Host to migrate to
$ nova help list-launched
usage: nova list-launched <blessed id>
List instances launched from this blessed instance.
Positional arguments:
<blessed id> ID of the blessed instance
$ nova help list-blessed
usage: nova list-blessed <server id>
List instances blessed from this instance.
Positional arguments:
<server id> ID of the instance
Scripting usage
===============
The novaclient hooks can also be accessed directly using the python API.
user = "admin"
apikey = "admin"
project = "openstackDemo"
authurl = "http://localhost:5000/v2.0"
extensions = shell.OpenStackComputeShell()._discover_extensions("1.1")
novaclient = NovaClient(user, apikey, project, authurl, extensions=extensions,
endpoint_type=shell.DEFAULT_NOVA_ENDPOINT_TYPE,
service_type=shell.DEFAULT_NOVA_SERVICE_TYPE)
def wait_for_status(server, status):
while server.status != status:
time.sleep(30)
server = novaclient.cobalt.get(server.id)
return server
def wait_until_gone(server):
try:
while True:
server = novaclient.cobalt.get(server.id)
time.sleep(10)
except Exception, e:
# server is no longer there.
pass
# Boot a new server using flavor 1 and the image passed in as the first arguement.
image_id = sys.argv[1]
flavor_id = 1
server = novaclient.servers.create("Gridcentric instance",
image_id,
flavor_id)
server = wait_for_status(server, "ACTIVE")
# Bless the server. This will return an instance of the blessed_server. We need to
# wait until the server becomes active.
blessed_server = novaclient.cobalt.bless(server)[0]
blessed_server = wait_for_status(blessed_server, "BLESSED")
# Launch a new server based off of the blessed one. Note that we can do this
# by either calling launch on the server itself, or passing the server into the
# cobalt manager.
launched_server = blessed_server.launch()[0]
launched_server2 = novaclient.cobalt.launch(blessed_server)[0]
# list the servers that were launched from the blessed ones.
for s in blessed_server.list_launched():
print "Server %s was launched from %s" %(s.id, blessed_server.id)
# Delete the launched servers.
launched_server2 = wait_for_status(launched_server2, "ACTIVE")
launched_server2.delete()
launched_server = wait_for_status(launched_server, "ACTIVE")
novaclient.servers.delete(launched_server)
# W need to ensure that the launched instances have been deleted before discarding
# the blessed instance.
wait_until_gone(launched_server2)
wait_until_gone(launched_server)
# Delete the original server. Note we can delete this server
# and keep the blessed one around.
server.delete()
# Discard the blessed server
blessed_server.discard()