Class: Gogetit::GogetLXD

Inherits:
Object
  • Object
show all
Includes:
Util
Defined in:
lib/providers/lxd.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Util

#check_ip_available, #generate_cloud_init_config, #get_gateway, #get_http_content, #get_provider_of, #is_port_open?, #knife_bootstrap_chef, #knife_bootstrap_zero, #knife_remove, #ping_available?, #run_command, #run_through_ssh, #ssh_available?, #update_databags, #wait_until_available

Constructor Details

#initialize(conf, maas, logger) ⇒ GogetLXD

Returns a new instance of GogetLXD.



13
14
15
16
17
18
19
20
21
# File 'lib/providers/lxd.rb', line 13

def initialize(conf, maas, logger)
  @config = conf
  @conn = Hyperkit::Client.new(
      api_endpoint: config[:lxd][:nodes][0][:url],
      verify_ssl: false
  )
  @maas = maas
  @logger = logger
end

Instance Attribute Details

#configObject (readonly)

Returns the value of attribute config.



11
12
13
# File 'lib/providers/lxd.rb', line 11

def config
  @config
end

#connObject (readonly)

Returns the value of attribute conn.



11
12
13
# File 'lib/providers/lxd.rb', line 11

def conn
  @conn
end

#loggerObject (readonly)

Returns the value of attribute logger.



11
12
13
# File 'lib/providers/lxd.rb', line 11

def logger
  @logger
end

#maasObject (readonly)

Returns the value of attribute maas.



11
12
13
# File 'lib/providers/lxd.rb', line 11

def maas
  @maas
end

Instance Method Details

#container_exists?(name) ⇒ Boolean

Returns:

  • (Boolean)


28
29
30
31
32
33
34
# File 'lib/providers/lxd.rb', line 28

def container_exists?(name)
  logger.info("Calling <#{__method__.to_s}> for #{name}")
  list.each do |c|
    return true if c == name
  end
  false
end

#create(name, options = {}) ⇒ Object



327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
# File 'lib/providers/lxd.rb', line 327

def create(name, options = {})
  logger.info("Calling <#{__method__.to_s}>")

  abort("Container #{name} already exists!") \
    if container_exists?(name)

  abort("Domain #{name}.#{maas.get_domain} already exists!") \
    if maas.domain_name_exists?(name) unless options[:'no-maas']

  lxd_params = {}

  if options[:alias].nil? or options[:alias].empty?
    lxd_params[:alias] = config[:lxd][:default_alias]
  else
    lxd_params[:alias] = options[:alias]
  end

  lxd_params = generate_user_data(lxd_params, options)
  lxd_params = generate_network_config(lxd_params, options)
  lxd_params = generate_devices(lxd_params, options)

  lxd_params[:sync] ||= true

  conn.create_container(name, lxd_params)
  container = conn.container(name)

  container.devices = lxd_params[:devices].merge!(container.devices.to_hash)

  # https://github.com/jeffshantz/hyperkit/blob/master/lib/hyperkit/client/containers.rb#L240
  # Adding configurations that are necessary for shipping MAAS on lxc
  if options[:'maas-on-lxc']
    container.config = container.config.to_hash
    # https://docs.maas.io/2.4/en/installconfig-lxd-install
    container.config[:"raw.lxc"] = "\
lxc.cgroup.devices.allow = c 10:237 rwm\n\
lxc.aa_profile = unconfined\n\
lxc.cgroup.devices.allow = b 7:* rwm"
  end

  conn.update_container(name, container)
  # Fetch container object again
  container = conn.container(name)

  reserve_ips(name, options, container) \
    if options[:vlans] or options[:ipaddresses] \
      unless options[:'no-maas']

  conn.start_container(name, :sync=>"true")

  if options[:'no-maas']
    ip_or_fqdn = options[:ip_to_access]
  else
    ip_or_fqdn = name + '.' + maas.get_domain
  end

  if conn.execute_command(name, "ls /etc/lsb-release")[:metadata][:return] == 0
    default_user = 'ubuntu'
  elsif conn.execute_command(name, "ls /etc/redhat-release")[:metadata][:return] == 0
    default_user = 'centos'
  else
    default_user = config[:default][:user]
  end

  lxd_params[:default_user] = default_user

  wait_until_available(ip_or_fqdn, default_user)
  logger.info("#{name} has been created.")

  if options[:'no-maas']
    puts "ssh #{default_user}@#{options[:ip_to_access]}"
  else
    puts "ssh #{default_user}@#{name}"
  end

  { result: true, info: lxd_params }
end

#destroy(name, lxd_params = {}) ⇒ Object



404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
# File 'lib/providers/lxd.rb', line 404

def destroy(name, lxd_params = {})
  logger.info("Calling <#{__method__.to_s}>")

  container = conn.container(name)
  lxd_params[:sync] ||= true

  info = container.to_hash

  if get_state(name) == 'Running'
    conn.stop_container(name, lxd_params)
  end

  wait_until_state(name, 'Stopped')

  if YAML.load(container[:config][:"user.user-data"])['maas']
    logger.info("This is a MAAS enabled container.")
    if container[:config][:"user.network-config"]
      net_conf = YAML.load(
        container[:config][:"user.network-config"]
      )['config']
      # To remove DNS configuration
      net_conf.shift

      net_conf.each do |nic|
        if nic['subnets'][0]['type'] == 'static'
          # It assumes we only assign a single subnet on a VLAN.
          # Subnets in a VLAN, VLANs in a Fabric
          ip = nic['subnets'][0]['address'].split('/')[0]

          if maas.ipaddresses_reserved?(ip)
            maas.ipaddresses('release', { 'ip' => ip })
          end
        end
      end
    end

    maas.delete_dns_record(name)
  end

  conn.delete_container(name, lxd_params)

  # When multiple static IPs were reserved, it will not delete anything
  # since they are deleted when releasing the IPs above.
  logger.info("#{name} has been destroyed.")

  { result: true, info: info }
end

#generate_devices(lxd_params, options) ⇒ Object

To configure devices



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
# File 'lib/providers/lxd.rb', line 199

def generate_devices(lxd_params, options)
  logger.info("Calling <#{__method__.to_s}>")
  lxd_params[:devices] = {}

  if options[:'no-maas']
    lxd_params[:devices] = YAML.load_file(options[:file])['devices']

    # Now, LXD API can handle integer as a value of a map
    lxd_params[:devices].each do |k, v|
      v.each do |kk, vv|
        if vv.is_a? Integer
          v[kk] = vv.to_s
        end
      end
    end

    lxd_params[:devices] = (Hashie.symbolize_keys lxd_params[:devices])

  elsif options[:ipaddresses]
    options[:ifaces].each_with_index do |iface,index|
      if index == 0
        if iface['vlan']['name'] == 'untagged' # or vid == 0
          lxd_params[:devices][:"eth#{index}"] = {
            mtu: iface['vlan']['mtu'].to_s,   #This must be string
            name: "eth#{index}",
            nictype: 'bridged',
            parent: config[:default][:root_bridge],
            type: 'nic'
          }
        elsif iface['vlan']['name'] != 'untagged' # or vid != 0
          lxd_params[:devices][:"eth#{index}"] = {
            mtu: iface['vlan']['mtu'].to_s,   #This must be string
            name: "eth#{index}",
            nictype: 'bridged',
            parent: config[:default][:root_bridge] + "-" + iface['vlan']['vid'].to_s,
            type: 'nic'
          }
        end
      # When options[:ifaces][0]['vlan']['name'] == 'untagged' and index > 0,
      # it does not need to generate more devices 
      # since it will configure the IPs with tagged VLANs.
      elsif options[:ifaces][0]['vlan']['name'] != 'untagged'
        lxd_params[:devices][:"eth#{index}"] = {
          mtu: iface['vlan']['mtu'].to_s,   #This must be string
          name: "eth#{index}",
          nictype: 'bridged',
          parent: config[:default][:root_bridge] + "-" + iface['vlan']['vid'].to_s,
          type: 'nic'
        }
      end
    end
  else
    abort("root_bridge #{config[:default][:root_bridge]} does not exist.") \
       unless conn.networks.include? config[:default][:root_bridge]

    root_bridge_mtu = nil
    # It assumes you only use one fabric as of now,
    # since there might be more fabrics with each untagged vlans on them,
    # which might make finding exact mtu fail as following process.
    default_fabric = 'fabric-0'

    maas.get_subnets.each do |subnet|
      if subnet['vlan']['name'] == 'untagged' and \
          subnet['vlan']['fabric'] == default_fabric
        root_bridge_mtu = subnet['vlan']['mtu']
        break
      end
    end

    lxd_params[:devices] = {}
    lxd_params[:devices][:"eth0"] = {
      mtu: root_bridge_mtu.to_s,   #This must be string
      name: 'eth0',
      nictype: 'bridged',
      parent: config[:default][:root_bridge],
      type: 'nic'
    }
  end

  if options[:'maas-on-lxc']
    # https://docs.maas.io/2.4/en/installconfig-lxd-install
    for i in 0..7
      i = i.to_s
      lxd_params[:devices]["loop" + i] = {}
      lxd_params[:devices]["loop" + i]["path"] = "/dev/loop" + i
      lxd_params[:devices]["loop" + i]["type"] = "unix-block"
    end
  end

  return lxd_params
end

#generate_network_config(lxd_params, options) ⇒ Object



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
# File 'lib/providers/lxd.rb', line 103

def generate_network_config(lxd_params, options)
  logger.info("Calling <#{__method__.to_s}>")

  if options[:'no-maas']
    lxd_params[:config][:'user.network-config'] = \
      YAML.load_file(options[:file])['network']

    # physical device will be the gate device
    lxd_params[:config][:"user.network-config"]['config'].each do |iface|
      if iface['type'] == "physical"
        options[:ip_to_access] = iface['subnets'][0]['address'].split('/')[0]
      end
    end

    lxd_params[:config][:"user.network-config"] = \
      YAML.dump(lxd_params[:config][:"user.network-config"])[4..-1]

  elsif options[:ipaddresses]
    options[:ifaces] = check_ip_available(options[:ipaddresses], maas)
    abort("There is no dns server specified for the gateway network.") \
      unless options[:ifaces][0]['dns_servers'][0]
    abort("There is no gateway specified for the gateway network.") \
      unless options[:ifaces][0]['gateway_ip']

    lxd_params[:config][:'user.network-config'] = {
      'version' => 1,
      'config' => [
        {
          'type' => 'nameserver',
          'address' => options[:ifaces][0]['dns_servers'][0]
        }
      ]
    }

    # to generate configuration for [:config][:'user.network-config']['config']
    options[:ifaces].each_with_index do |iface,index|
      if index == 0
        iface_conf = {
          'type' => 'physical',
          'name' => "eth#{index}",
          'subnets' => [
            {
              'type' => 'static',
              'ipv4' => true,
              'address' => iface['ip'] + '/' + iface['cidr'].split('/')[1],
              'gateway' => iface['gateway_ip'],
              'mtu' => iface['vlan']['mtu'],
              'control' => 'auto'
            }
          ]
        }
      elsif index > 0
        if options[:ifaces][0]['vlan']['name'] != 'untagged'
          iface_conf = {
            'type' => 'physical',
            'name' => "eth#{index}",
            'subnets' => [
              {
                'type' => 'static',
                'ipv4' => true,
                'address' => iface['ip'] + '/' + iface['cidr'].split('/')[1],
                'mtu' => iface['vlan']['mtu'],
                'control' => 'auto'
              }
            ]
          }
        elsif options[:ifaces][0]['vlan']['name'] == 'untagged'
          iface_conf = {
            'type' => 'vlan',
            'name' => "eth0.#{iface['vlan']['vid'].to_s}",
            'vlan_id' => iface['vlan']['vid'].to_s,
            'vlan_link' => 'eth0',
            'subnets' => [
              {
                'type' => 'static',
                'ipv4' => true,
                'address' => iface['ip'] + '/' + iface['cidr'].split('/')[1],
                'mtu' => iface['vlan']['mtu'],
                'control' => 'auto'
              }
            ]
          }
        end
      end

      lxd_params[:config][:'user.network-config']['config'].push(iface_conf)
    end

    lxd_params[:config][:"user.network-config"] = \
      YAML.dump(lxd_params[:config][:"user.network-config"])[4..-1]
  end

  return lxd_params
end

#generate_user_data(lxd_params, options) ⇒ Object

to generate ‘user.user-data’



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
# File 'lib/providers/lxd.rb', line 49

def generate_user_data(lxd_params, options)
  logger.info("Calling <#{__method__.to_s}>")

  lxd_params[:config] = {}

  if options[:'no-maas']
    lxd_params[:config][:"user.user-data"] = {}
  else
    sshkeys = maas.get_sshkeys
    pkg_repos = maas.get_package_repos

    lxd_params[:config][:'user.user-data'] = { 'ssh_authorized_keys' => [] }

    sshkeys.each do |key|
      lxd_params[:config][:'user.user-data']['ssh_authorized_keys'].push(key['key'])
    end

    pkg_repos.each do |repo|
      if repo['name'] == 'main_archive'
        lxd_params[:config][:'user.user-data']['apt_mirror'] = repo['url']
      end
    end

    lxd_params[:config][:"user.user-data"]['source_image_alias'] = lxd_params[:alias]
    lxd_params[:config][:"user.user-data"]['maas'] = true
  end

  if options[:'maas-on-lxc']
    lxd_params[:config][:"security.privileged"] = "true"
  end

  if options[:'lxd-in-lxd']
    lxd_params[:config][:"security.nesting"] = "true"
  end

  lxd_params[:config][:"user.user-data"]['gogetit'] = true

  # To disable to update apt database on first boot
  # so chef client can keep doing its job.
  lxd_params[:config][:'user.user-data']['package_update'] = false
  lxd_params[:config][:'user.user-data']['package_upgrade'] = false

  lxd_params[:config][:'user.user-data'] = generate_cloud_init_config(
    options,
    config,
    lxd_params[:config][:'user.user-data']
  )

  lxd_params[:config][:"user.user-data"] = \
    "#cloud-config\n" + YAML.dump(lxd_params[:config][:"user.user-data"])[4..-1]

  return lxd_params
end

#get_state(name) ⇒ Object



36
37
38
39
# File 'lib/providers/lxd.rb', line 36

def get_state(name)
  logger.info("Calling <#{__method__.to_s}>")
  conn.container(name)[:status]
end

#listObject



23
24
25
26
# File 'lib/providers/lxd.rb', line 23

def list
  logger.info("Calling <#{__method__.to_s}>")
  conn.containers
end

#reserve_ips(name, options, container) ⇒ Object



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
# File 'lib/providers/lxd.rb', line 291

def reserve_ips(name, options, container)
  logger.info("Calling <#{__method__.to_s}>")
  # Generate params to reserve IPs
  options[:ifaces].each_with_index do |iface,index|
    if index == 0
      params = {
        'subnet' => iface['cidr'],
        'ip' => iface['ip'],
        'hostname' => name,
        'mac' => container[:expanded_config][:"volatile.eth#{index}.hwaddr"]
      }
    elsif index > 0
      # if dot, '.', is used as a conjunction instead of '-',
      # it fails ocuring '404 not found'.
      # if under score, '_', is used as a conjunction instead of '-',
      # it breaks MAAS DNS somehow..
      if options[:ifaces][0]['vlan']['name'] == 'untagged'
        params = {
          'subnet' => iface['cidr'],
          'ip' => iface['ip'],
          'hostname' => 'eth0' + '-' + iface['vlan']['vid'].to_s  + '-' + name,
          'mac' => container[:expanded_config][:"volatile.eth0.hwaddr"]
        }
      elsif options[:ifaces][0]['vlan']['name'] != 'untagged'
        params = {
          'subnet' => iface['cidr'],
          'ip' => iface['ip'],
          'hostname' => "eth#{index}" + '-' + name,
          'mac' => container[:expanded_config][:"volatile.eth#{index}.hwaddr"]
        }
      end
    end
    maas.ipaddresses('reserve', params)
  end
end

#wait_until_state(name, state) ⇒ Object



41
42
43
44
45
46
# File 'lib/providers/lxd.rb', line 41

def wait_until_state(name, state)
  logger.info("Calling <#{__method__.to_s}> for being #{state}..")
  until get_state(name) == state
    sleep 3
  end
end