Class: Bosh::Deployer::Config

Inherits:
Object
  • Object
show all
Extended by:
Helpers
Defined in:
lib/deployer/config.rb

Constant Summary

Constants included from Helpers

Helpers::DEPLOYMENTS_FILE

Class Attribute Summary collapse

Class Method Summary collapse

Methods included from Helpers

cloud_plugin, dig_hash, is_tgz?

Class Attribute Details

.agent_propertiesObject

Returns the value of attribute agent_properties.



12
13
14
# File 'lib/deployer/config.rb', line 12

def agent_properties
  @agent_properties
end

.bosh_ipObject

Returns the value of attribute bosh_ip.



12
13
14
# File 'lib/deployer/config.rb', line 12

def bosh_ip
  @bosh_ip
end

.cloud_optionsObject

Returns the value of attribute cloud_options.



12
13
14
# File 'lib/deployer/config.rb', line 12

def cloud_options
  @cloud_options
end

.dbObject

Returns the value of attribute db.



12
13
14
# File 'lib/deployer/config.rb', line 12

def db
  @db
end

.envObject

Returns the value of attribute env.



12
13
14
# File 'lib/deployer/config.rb', line 12

def env
  @env
end

.loggerObject

Returns the value of attribute logger.



12
13
14
# File 'lib/deployer/config.rb', line 12

def logger
  @logger
end

.nameObject

Returns the value of attribute name.



12
13
14
# File 'lib/deployer/config.rb', line 12

def name
  @name
end

.resourcesObject

Returns the value of attribute resources.



12
13
14
# File 'lib/deployer/config.rb', line 12

def resources
  @resources
end

.spec_propertiesObject

Returns the value of attribute spec_properties.



12
13
14
# File 'lib/deployer/config.rb', line 12

def spec_properties
  @spec_properties
end

.uuidObject

Returns the value of attribute uuid.



12
13
14
# File 'lib/deployer/config.rb', line 12

def uuid
  @uuid
end

Class Method Details

.agentObject



80
81
82
83
84
85
86
87
88
89
# File 'lib/deployer/config.rb', line 80

def agent
  uri = URI.parse(@cloud_options["properties"]["agent"]["mbus"])
  uri.host = bosh_ip
  user, password = uri.userinfo.split(":", 2)
  uri.userinfo = nil
  Bosh::Agent::HTTPClient.new(uri.to_s,
                              { "user" => user,
                                "password" => password,
                                "reply_to" => uuid })
end

.cloudObject



72
73
74
75
76
77
78
# File 'lib/deployer/config.rb', line 72

def cloud
  if @cloud.nil?
    @cloud = Bosh::Clouds::Provider.create(@cloud_options["plugin"],
                                           @cloud_options["properties"])
  end
  @cloud
end

.configure(config) ⇒ Object



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
# File 'lib/deployer/config.rb', line 15

def configure(config)
  plugin = cloud_plugin(config)

  config = deep_merge(load_defaults(plugin), config)

  @base_dir = config["dir"]
  FileUtils.mkdir_p(@base_dir)

  @name = config["name"]
  @cloud_options = config["cloud"]
  @net_conf = config["network"]
  @bosh_ip = @net_conf["ip"]
  @resources = config["resources"]
  @env = config["env"]

  @logger = Logger.new(config["logging"]["file"] || STDOUT)
  @logger.level = Logger.const_get(config["logging"]["level"].upcase)
  @logger.formatter = ThreadFormatter.new

  apply_spec = config["apply_spec"]
  @spec_properties = apply_spec["properties"]
  @agent_properties = apply_spec["agent"]

  @db = Sequel.sqlite

  @db.create_table :vsphere_disk do
    primary_key :id
    column :path, :text
    column :datacenter, :text
    column :datastore, :text
    column :size, :integer
  end

  @db.create_table :instances do
    primary_key :id
    column :name, :text, :unique => true, :null => false
    column :uuid, :text
    column :stemcell_cid, :text
    column :stemcell_name, :text
    column :vm_cid, :text
    column :disk_cid, :text
  end

  Sequel::Model.plugin :validation_helpers

  Bosh::Clouds::Config.configure(self)

  require "deployer/models/instance"

  @cloud_options["properties"]["agent"]["mbus"] ||=
    "http://vcap:[email protected]:6868"

  @disk_model = nil
  @cloud = nil
  @networks = nil
end

.networksObject



91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# File 'lib/deployer/config.rb', line 91

def networks
  return @networks if @networks

  @networks = {
    "bosh" => {
      "cloud_properties" => @net_conf["cloud_properties"],
      "netmask"          => @net_conf["netmask"],
      "gateway"          => @net_conf["gateway"],
      "ip"               => @net_conf["ip"],
      "dns"              => @net_conf["dns"],
      "type"             => @net_conf["type"],
      "default"          => ["dns", "gateway"]
    }
  }
  if @net_conf["vip"]
    @networks["vip"] = {
        "ip" => @net_conf["vip"],
        "type" => "vip"
    }
  end

  @networks
end