-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathlibvirt_server.rb
228 lines (198 loc) · 7.59 KB
/
libvirt_server.rb
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
#
# Author:: Anthony Goddard (<[email protected]>)
# Author:: Chuck Ha (<[email protected]>)
# Copyright:: Copyright (c) 2011 Woods Hole Marine Biological Laboratory.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
class Chef
class Knife
class LibvirtServerList < Knife
deps do
require 'chef/knife/bootstrap'
require 'libvirt'
Chef::Knife::Bootstrap.load_deps
end
banner "knife libvirt server list (options)"
option :flavor,
:short => "-f FLAVOR",
:long => "--flavor FLAVOR",
:description => "The flavor of server (small, medium, etc)",
:proc => Proc.new { |f| Chef::Config[:knife][:flavor] = f },
:default => "small"
option :system,
:short => "-s SYSTEM ",
:long => "--system SYSTEM",
:description => "A system filename",
:proc => Proc.new { |i| Chef::Config[:knife][:system] = i }
option :hostname,
:short => "-n HOSTNAME",
:long => "--name HOSTNAME",
:description => "The host name of the new server"
option :domain,
:short => "-d DOMAIN",
:long => "--domain DOMAIN",
:description => "Domain name of the new server"
option :bootstrap,
:short => "-b BOOTSTRAP",
:long => "--bootstrap BOOTSTRAP_FILENAME",
:description => "Bootstrap a distro using a template",
:proc => Proc.new { |b| Chef::Config[:knife][:distro] = b },
:default => "ubuntu10.04-gems"
option :libvirt_tls_path,
:short => "-t PATH",
:long => "--tls-path PATH",
:description => "The path to your libvirt TLS keys",
:proc => Proc.new { |t| Chef::Config[:knife][:libvirt_tls_path] = t}
def connect(host, path)
host = "qemu+tls://#{host}/system?pkipath=#{path}/#{host}"
connection = Libvirt::open(host)
end
def to_gb(kb)
(kb/1073741824.0).round(2)
end
def to_mb(kb)
(kb/1024.0).round(2)
end
def get_domain_info(domain)
states = ["No State","Active","Blocked","Paused","Shutting Down","Inactive","Crashed"]
# TODO reformat
puts "Name: #{domain.name}"
puts "ID: #{domain.uuid}"
puts "---------------"
puts "Memory: #{to_mb(domain.info.memory)} MB"
puts "Maximum Memory: #{to_mb(domain.max_memory)} MB"
puts "CPUs: #{domain.info.nr_virt_cpu}"
puts "State: #{states[(domain.info.state)]}"
puts "======================="
puts
end
def run
host = "qemu+tls://#{Chef::Config[:knife][:libvirt_host]}/system?pkipath=#{Chef::Config[:knife][:libvirt_tls_path]}/#{Chef::Config[:knife][:libvirt_host]}"
connection = Libvirt::open(host)
puts "Host: #{Chef::Config[:knife][:libvirt_host]}"
puts "Active: #{connection.num_of_domains}"
puts "Inactive: #{connection.num_of_defined_domains}"
puts "---------------"
connection.list_domains.each do |domain_id|
domain = connection.lookup_domain_by_id(domain_id)
get_domain_info(domain)
end
connection.list_defined_domains.each do |domain_name|
domain = connection.lookup_domain_by_name(domain_name)
get_domain_info(domain)
end
end
end
class LibvirtServerCreate < Knife
deps do
require 'chef/knife/bootstrap'
require 'nokogiri'
require 'libvirt'
Chef::Knife::Bootstrap.load_deps
end
banner "knife libvirt server create (options)"
option :flavor,
:short => "-f FLAVOR",
:long => "--flavor FLAVOR",
:description => "The flavor of server (small, medium, etc)",
:proc => Proc.new { |f| Chef::Config[:knife][:flavor] = f },
:default => "small"
option :system,
:short => "-s SYSTEM ",
:long => "--system SYSTEM",
:description => "A system filename",
:proc => Proc.new { |i| Chef::Config[:knife][:system] = i }
option :hostname,
:short => "-n HOSTNAME",
:long => "--name HOSTNAME",
:description => "The host name of the new server"
option :domain,
:short => "-d DOMAIN",
:long => "--domain DOMAIN",
:description => "Domain name of the new server"
option :bootstrap,
:short => "-b BOOTSTRAP",
:long => "--bootstrap BOOTSTRAP_FILENAME",
:description => "Bootstrap a distro using a template",
:proc => Proc.new { |b| Chef::Config[:knife][:distro] = b },
:default => "ubuntu10.04-gems"
option :libvirt_tls_path,
:short => "-t PATH",
:long => "--tls-path PATH",
:description => "The path to your libvirt TLS keys",
:proc => Proc.new { |t| Chef::Config[:knife][:libvirt_tls_path] = t}
def get_server_xml_erb
<<-server
<domain type='kvm'>
<name><%= "poop_#{(1..3).collect{(rand(25) + 65).chr}.join}" %></name>
<memory>524288</memory>
<currentMemory>524288</currentMemory>
<vcpu>1</vcpu>
<os>
<type arch='x86_64' machine='pc-0.12'>hvm</type>
<boot dev='cdrom'/>
</os>
<features>
<acpi/>
<apic/>
<pae/>
</features>
<clock offset='utc'/>
<on_poweroff>destroy</on_poweroff>
<on_reboot>restart</on_reboot>
<on_crash>restart</on_crash>
<devices>
<emulator>/usr/bin/kvm</emulator>
<disk type='file' device='disk'>
<driver name='qemu' type='qcow2'/>
<source file='/var/lib/libvirt/images/lol.img'/>
<target dev='vda' bus='virtio'/>
</disk>
<disk type='file' device='cdrom'>
<driver name='qemu' type='raw'/>
<source file='/data/storage/media/ubuntu-10.04.1-server-amd64.iso'/>
<target dev='hdc' bus='ide'/>
<readonly/>
</disk>
<interface type='bridge'>
<source bridge='br1'/>
<model type='virtio'/>
</interface>
<console type='pty'>
<target port='0'/>
</console>
<console type='pty'>
<target port='0'/>
</console>
<input type='mouse' bus='ps2'/>
<graphics type='vnc' port='-1' autoport='yes'/>
<sound model='es1370'/>
<video>
<model type='cirrus' vram='9216' heads='1'/>
</video>
</devices>
</domain>
server
end
def run
host = "qemu+tls://#{Chef::Config[:knife][:libvirt_host]}/system?pkipath=#{Chef::Config[:knife][:libvirt_tls_path]}/#{Chef::Config[:knife][:libvirt_host]}"
connection = Libvirt::open(host)
new_server_xml = ERB.new(get_server_xml_erb).result
server = connection.define_domain_xml(new_server_xml)
puts "created server"
end
end
end
end