File: get_driver_properties.rb

package info (click to toggle)
ruby-fog-openstack 1.1.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 11,784 kB
  • sloc: ruby: 47,937; makefile: 5; sh: 4
file content (40 lines) | stat: -rw-r--r-- 1,636 bytes parent folder | download | duplicates (3)
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
module Fog
  module OpenStack
    class Baremetal
      class Real
        def get_driver_properties(driver_name)
          data = {:driver_name => driver_name}
          request(
            :body    => Fog::JSON.encode(data),
            :expects => [200, 204],
            :method  => 'GET',
            :path    => "drivers/properties"
          )
        end
      end

      class Mock
        def get_driver_properties(_driver_name)
          response = Excon::Response.new
          response.status = [200, 204][rand(2)]
          response.body = {
            "pxe_deploy_ramdisk"   => "UUID (from Glance) of the ramdisk.",
            "ipmi_transit_address" => "transit address for bridged request.",
            "ipmi_terminal_port"   => "node's UDP port to connect to.",
            "ipmi_target_channel"  => "destination channel for bridged request.",
            "ipmi_transit_channel" => "transit channel for bridged request.",
            "ipmi_local_address"   => "local IPMB address for bridged requests. ",
            "ipmi_username"        => "username; default is NULL user. Optional.",
            "ipmi_address"         => "IP address or hostname of the node. Required.",
            "ipmi_target_address"  => "destination address for bridged request.",
            "ipmi_password"        => "password. Optional.",
            "pxe_deploy_kernel"    => "UUID (from Glance) of the deployment kernel.",
            "ipmi_priv_level"      => "privilege level; default is ADMINISTRATOR. ",
            "ipmi_bridging"        => "bridging_type."
          }
          response
        end
      end
    end
  end
end