Class: Fog::Compute::AWS::Server
Instance Attribute Summary collapse
Attributes inherited from Model
#collection, #connection
Instance Method Summary
collapse
deprecate, self_deprecate
Methods inherited from Model
#inspect, #reload, #to_json, #wait_for
#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes
#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #requires
Constructor Details
#initialize(attributes = {}) ⇒ Server
Returns a new instance of Server.
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# File 'lib/fog/compute/models/aws/server.rb', line 46
def initialize(attributes={})
self.groups ||= ["default"] unless attributes[:subnet_id]
self.flavor_id ||= 't1.micro'
self.image_id ||= begin
self.username = 'ubuntu'
case attributes[:connection].instance_variable_get(:@region) when 'ap-northeast-1'
'ami-5e0fa45f'
when 'ap-southeast-1'
'ami-f092eca2'
when 'eu-west-1'
'ami-3d1f2b49'
when 'us-east-1'
'ami-3202f25b'
when 'us-west-1'
'ami-f5bfefb0'
end
end
super
end
|
Instance Attribute Details
#architecture ⇒ Object
Returns the value of attribute architecture.
13
14
15
|
# File 'lib/fog/compute/models/aws/server.rb', line 13
def architecture
@architecture
end
|
#instance_initiated_shutdown_behavior ⇒ Object
Returns the value of attribute instance_initiated_shutdown_behavior.
22
23
24
|
# File 'lib/fog/compute/models/aws/server.rb', line 22
def instance_initiated_shutdown_behavior
@instance_initiated_shutdown_behavior
end
|
#password ⇒ Object
Returns the value of attribute password.
43
44
45
|
# File 'lib/fog/compute/models/aws/server.rb', line 43
def password
@password
end
|
#private_key ⇒ Object
114
115
116
|
# File 'lib/fog/compute/models/aws/server.rb', line 114
def private_key
@private_key ||= private_key_path && File.read(private_key_path)
end
|
#private_key_path ⇒ Object
109
110
111
112
|
# File 'lib/fog/compute/models/aws/server.rb', line 109
def private_key_path
@private_key_path ||= Fog.credentials[:private_key_path]
@private_key_path &&= File.expand_path(@private_key_path)
end
|
#public_key ⇒ Object
123
124
125
|
# File 'lib/fog/compute/models/aws/server.rb', line 123
def public_key
@public_key ||= public_key_path && File.read(public_key_path)
end
|
#public_key_path ⇒ Object
118
119
120
121
|
# File 'lib/fog/compute/models/aws/server.rb', line 118
def public_key_path
@public_key_path ||= Fog.credentials[:public_key_path]
@public_key_path &&= File.expand_path(@public_key_path)
end
|
#username ⇒ Object
230
231
232
|
# File 'lib/fog/compute/models/aws/server.rb', line 230
def username
@username ||= 'root'
end
|
Instance Method Details
#addresses ⇒ Object
67
68
69
70
71
|
# File 'lib/fog/compute/models/aws/server.rb', line 67
def addresses
requires :id
connection.addresses(:server => self)
end
|
#console_output ⇒ Object
73
74
75
76
77
|
# File 'lib/fog/compute/models/aws/server.rb', line 73
def console_output
requires :id
connection.get_console_output(id)
end
|
#destroy ⇒ Object
79
80
81
82
83
84
|
# File 'lib/fog/compute/models/aws/server.rb', line 79
def destroy
requires :id
connection.terminate_instances(id)
true
end
|
#flavor ⇒ Object
95
96
97
|
# File 'lib/fog/compute/models/aws/server.rb', line 95
def flavor
@flavor ||= connection.flavors.all.detect {|flavor| flavor.id == flavor_id}
end
|
#flavor=(new_flavor) ⇒ Object
91
92
93
|
# File 'lib/fog/compute/models/aws/server.rb', line 91
def flavor=(new_flavor)
@flavor = new_flavor
end
|
#flavor_id ⇒ Object
87
88
89
|
# File 'lib/fog/compute/models/aws/server.rb', line 87
def flavor_id
@flavor && @flavor.id || attributes[:flavor_id]
end
|
#key_pair ⇒ Object
99
100
101
102
103
|
# File 'lib/fog/compute/models/aws/server.rb', line 99
def key_pair
requires :key_name
connection.key_pairs.all(key_name).first
end
|
#key_pair=(new_keypair) ⇒ Object
105
106
107
|
# File 'lib/fog/compute/models/aws/server.rb', line 105
def key_pair=(new_keypair)
self.key_name = new_keypair && new_keypair.name
end
|
#monitor=(new_monitor) ⇒ Object
I tried to call it monitoring= and be smart with attributes[] but in #save a merge_attribute is called after run_instance thus making an un-necessary request. Use this until finding a clever solution
242
243
244
245
246
247
248
249
250
251
252
253
254
|
# File 'lib/fog/compute/models/aws/server.rb', line 242
def monitor=(new_monitor)
if identity
case new_monitor
when true
response = connection.monitor_instances(identity)
when false
response = connection.unmonitor_instances(identity)
else
raise ArgumentError.new("only Boolean allowed here")
end
end
self.monitoring = new_monitor
end
|
#ready? ⇒ Boolean
127
128
129
|
# File 'lib/fog/compute/models/aws/server.rb', line 127
def ready?
state == 'running'
end
|
#reboot ⇒ Object
131
132
133
134
135
|
# File 'lib/fog/compute/models/aws/server.rb', line 131
def reboot
requires :id
connection.reboot_instances(id)
true
end
|
#save ⇒ Object
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
|
# File 'lib/fog/compute/models/aws/server.rb', line 137
def save
raise Fog::Errors::Error.new('Resaving an existing object may create a duplicate') if identity
requires :image_id
options = {
'BlockDeviceMapping' => block_device_mapping,
'ClientToken' => client_token,
'InstanceInitiatedShutdownBehavior' => instance_initiated_shutdown_behavior,
'InstanceType' => flavor_id,
'KernelId' => kernel_id,
'KeyName' => key_name,
'Monitoring.Enabled' => monitoring,
'Placement.AvailabilityZone' => availability_zone,
'Placement.GroupName' => placement_group,
'Placement.Tenancy' => tenancy,
'RamdiskId' => ramdisk_id,
'SecurityGroup' => groups,
'SubnetId' => subnet_id,
'UserData' => user_data
}
options.delete_if {|key, value| value.nil?}
if subnet_id
options.delete('SecurityGroup')
else
options.delete('SubnetId')
end
data = connection.run_instances(image_id, 1, 1, options)
merge_attributes(data.body['instancesSet'].first)
true
end
|
#scp(local_path, remote_path, upload_options = {}) ⇒ Object
210
211
212
213
214
215
216
|
# File 'lib/fog/compute/models/aws/server.rb', line 210
def scp(local_path, remote_path, upload_options = {})
requires :public_ip_address, :username
scp_options = {}
scp_options[:key_data] = [private_key] if private_key
Fog::SCP.new(public_ip_address, username, scp_options).upload(local_path, remote_path, upload_options)
end
|
#setup(credentials = {}) ⇒ 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
200
|
# File 'lib/fog/compute/models/aws/server.rb', line 173
def setup(credentials = {})
requires :identity, :public_ip_address, :username
require 'json'
commands = [
%{mkdir .ssh},
%{passwd -l #{username}},
%{echo "#{attributes.to_json}" >> ~/attributes.json}
]
if public_key
commands << %{echo "#{public_key}" >> ~/.ssh/authorized_keys}
end
Timeout::timeout(360) do
begin
Timeout::timeout(8) do
Fog::SSH.new(public_ip_address, username, credentials.merge(:timeout => 4)).run('pwd')
end
rescue Errno::ECONNREFUSED
sleep(2)
retry
rescue Net::SSH::AuthenticationFailed, Timeout::Error
retry
end
end
Fog::SSH.new(public_ip_address, username, credentials).run(commands)
end
|
#ssh(commands) ⇒ Object
202
203
204
205
206
207
208
|
# File 'lib/fog/compute/models/aws/server.rb', line 202
def ssh(commands)
requires :identity, :public_ip_address, :username
options = {}
options[:key_data] = [private_key] if private_key
Fog::SSH.new(public_ip_address, username, options).run(commands)
end
|
#start ⇒ Object
218
219
220
221
222
|
# File 'lib/fog/compute/models/aws/server.rb', line 218
def start
requires :id
connection.start_instances(id)
true
end
|
#stop ⇒ Object
224
225
226
227
228
|
# File 'lib/fog/compute/models/aws/server.rb', line 224
def stop
requires :id
connection.stop_instances(id)
true
end
|
#volumes ⇒ Object
234
235
236
237
|
# File 'lib/fog/compute/models/aws/server.rb', line 234
def volumes
requires :id
connection.volumes(:server => self)
end
|