Class: BuildCloud
- Inherits:
-
Object
show all
- Defined in:
- lib/build-cloud.rb
Defined Under Namespace
Modules: Component
Classes: ASGroup, CacheCluster, CacheParameterGroup, CacheSubnetGroup, DHCPOptionsSet, DbParameterGroup, DbSubnetGroup, EBSVolume, IAMRole, Instance, InternetGateway, LaunchConfiguration, LoadBalancer, NetworkInterface, R53RecordSet, RDSServer, Route, RouteTable, S3Bucket, SecurityGroup, Subnet, VPC, Zone
Class Method Summary
collapse
Instance Method Summary
collapse
Constructor Details
#initialize(options) ⇒ BuildCloud
Returns a new instance of BuildCloud.
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
|
# File 'lib/build-cloud.rb', line 14
def initialize( options )
@log = options[:logger] or Logger.new( STDERR )
@mock = options[:mock] or false
first_config_file = options[:config].shift
@config = YAML::load( File.open( first_config_file ) )
include_files = []
cli_include_files = options[:config]
cli_include_files.each do |inc|
include_files << File.absolute_path( inc )
end
if include_yaml = @config.delete(:include)
if include_yaml.is_a?(Array)
include_yaml.each do |yml|
include_files << File.expand_path( yml, File.dirname( File.absolute_path(first_config_file) ) )
end
else
include_files.push( File.expand_path( include_yaml, File.dirname( File.absolute_path(first_config_file) ) ) )
end
end
include_files.each do |include_path|
if File.exists?( include_path )
@log.info( "Including YAML file #{include_path}" )
included_conf = YAML::load( File.open( include_path ) )
@config = @config.merge(included_conf) do |keys, oldval, newval|
(newval.is_a?(Array) ? (oldval + newval).uniq : newval)
end
end
end
@log.debug( @config.inspect )
new_config = recursive_interpolate_config(@config)
@config = new_config
@log.debug( @config.inspect )
connect_fog
BuildCloud::dispatch.each_pair do |component, klass|
if @config.has_key?(component)
klass.load( @config[component], @fog_interfaces, @log )
end
end
end
|
Class Method Details
.create_order ⇒ Object
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
|
# File 'lib/build-cloud.rb', line 173
def self.create_order
[
:dhcp_options_sets,
:vpcs,
:internet_gateways,
:iam_roles,
:subnets,
:db_subnet_groups,
:cache_subnet_groups,
:route_tables,
:zones,
:security_groups,
:network_interfaces,
:routes,
:db_parameter_groups,
:rds_servers,
:cache_parameter_groups,
:cache_clusters,
:launch_configurations,
:load_balancers,
:as_groups,
:r53_record_sets,
:s3_buckets,
:ebs_volumes,
:instances,
]
end
|
.dispatch ⇒ Object
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
|
# File 'lib/build-cloud.rb', line 143
def self.dispatch
{
:vpcs => BuildCloud::VPC,
:internet_gateways => BuildCloud::InternetGateway,
:subnets => BuildCloud::Subnet,
:route_tables => BuildCloud::RouteTable,
:zones => BuildCloud::Zone,
:security_groups => BuildCloud::SecurityGroup,
:network_interfaces => BuildCloud::NetworkInterface,
:routes => BuildCloud::Route,
:launch_configurations => BuildCloud::LaunchConfiguration,
:load_balancers => BuildCloud::LoadBalancer,
:as_groups => BuildCloud::ASGroup,
:r53_record_sets => BuildCloud::R53RecordSet,
:rds_servers => BuildCloud::RDSServer,
:db_subnet_groups => BuildCloud::DbSubnetGroup,
:db_parameter_groups => BuildCloud::DbParameterGroup,
:cache_subnet_groups => BuildCloud::CacheSubnetGroup,
:cache_clusters => BuildCloud::CacheCluster,
:cache_parameter_groups => BuildCloud::CacheParameterGroup,
:iam_roles => BuildCloud::IAMRole,
:s3_buckets => BuildCloud::S3Bucket,
:instances => BuildCloud::Instance,
:ebs_volumes => BuildCloud::EBSVolume,
:dhcp_options_sets => BuildCloud::DHCPOptionsSet,
}
end
|
.search(type, options) ⇒ Object
201
202
203
|
# File 'lib/build-cloud.rb', line 201
def self.search( type, options )
BuildCloud::dispatch[type].search(options)
end
|
Instance Method Details
#all ⇒ Object
128
129
130
131
132
133
134
135
136
137
138
139
|
# File 'lib/build-cloud.rb', line 128
def all
objects = []
BuildCloud::create_order.each do |component|
next unless BuildCloud::dispatch.has_key?( component )
objects.concat BuildCloud::dispatch[component].objects()
end
objects
end
|
#find(component, options) ⇒ Object
118
119
120
121
122
123
124
125
126
|
# File 'lib/build-cloud.rb', line 118
def find( component, options )
if BuildCloud::dispatch.has_key?( component )
BuildCloud::dispatch[component].search(options)
else
[]
end
end
|
#pry ⇒ Object
114
115
116
|
# File 'lib/build-cloud.rb', line 114
def pry
binding.pry
end
|