Class: Fog::Compute::AWS::Server
Instance Attribute Summary collapse
Attributes inherited from Server
#private_key, #private_key_path, #public_key, #public_key_path, #ssh_port, #username
Attributes inherited from Model
#collection, #service
Instance Method Summary
collapse
deprecate, self_deprecate
Methods inherited from Server
#scp, #scp_download, #ssh, #sshable?
Methods inherited from Model
#inspect, #reload, #symbolize_keys, #to_json, #wait_for
#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes
#connection, #connection=, #prepare_service_value
#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #persisted?, #requires, #requires_one
Constructor Details
#initialize(attributes = {}) ⇒ Server
Returns a new instance of Server.
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
|
# File 'lib/fog/aws/models/compute/server.rb', line 53
def initialize(attributes={})
self.groups ||= ["default"] unless (attributes[:subnet_id] || attributes[:security_group_ids])
self.flavor_id ||= 't1.micro'
prepare_service_value(attributes)
self.image_id ||= begin
self.username = 'ubuntu'
case @service.instance_variable_get(:@region) when 'ap-northeast-1'
'ami-5e0fa45f'
when 'ap-southeast-1'
'ami-f092eca2'
when 'ap-southeast-2'
'ami-fb8611c1' when 'eu-west-1'
'ami-3d1f2b49'
when 'sa-east-1'
'ami-d0429ccd'
when 'us-east-1'
'ami-3202f25b'
when 'us-west-1'
'ami-f5bfefb0'
when 'us-west-2'
'ami-e0ec60d0'
end
end
super
end
|
Instance Attribute Details
#architecture ⇒ Object
Returns the value of attribute architecture.
13
14
15
|
# File 'lib/fog/aws/models/compute/server.rb', line 13
def architecture
@architecture
end
|
#iam_instance_profile_arn=(value) ⇒ Object
Sets the attribute iam_instance_profile_arn
50
51
52
|
# File 'lib/fog/aws/models/compute/server.rb', line 50
def iam_instance_profile_arn=(value)
@iam_instance_profile_arn = value
end
|
#iam_instance_profile_name=(value) ⇒ Object
Sets the attribute iam_instance_profile_name
50
51
52
|
# File 'lib/fog/aws/models/compute/server.rb', line 50
def iam_instance_profile_name=(value)
@iam_instance_profile_name = value
end
|
#instance_initiated_shutdown_behavior ⇒ Object
Returns the value of attribute instance_initiated_shutdown_behavior.
25
26
27
|
# File 'lib/fog/aws/models/compute/server.rb', line 25
def instance_initiated_shutdown_behavior
@instance_initiated_shutdown_behavior
end
|
#password ⇒ Object
Returns the value of attribute password.
49
50
51
|
# File 'lib/fog/aws/models/compute/server.rb', line 49
def password
@password
end
|
Instance Method Details
#addresses ⇒ Object
84
85
86
87
88
|
# File 'lib/fog/aws/models/compute/server.rb', line 84
def addresses
requires :id
service.addresses(:server => self)
end
|
#console_output ⇒ Object
90
91
92
93
94
|
# File 'lib/fog/aws/models/compute/server.rb', line 90
def console_output
requires :id
service.get_console_output(id)
end
|
#destroy ⇒ Object
96
97
98
99
100
101
|
# File 'lib/fog/aws/models/compute/server.rb', line 96
def destroy
requires :id
service.terminate_instances(id)
true
end
|
#flavor ⇒ Object
112
113
114
|
# File 'lib/fog/aws/models/compute/server.rb', line 112
def flavor
@flavor ||= service.flavors.all.detect {|flavor| flavor.id == flavor_id}
end
|
#flavor=(new_flavor) ⇒ Object
108
109
110
|
# File 'lib/fog/aws/models/compute/server.rb', line 108
def flavor=(new_flavor)
@flavor = new_flavor
end
|
#flavor_id ⇒ Object
104
105
106
|
# File 'lib/fog/aws/models/compute/server.rb', line 104
def flavor_id
@flavor && @flavor.id || attributes[:flavor_id]
end
|
#key_pair ⇒ Object
116
117
118
119
120
|
# File 'lib/fog/aws/models/compute/server.rb', line 116
def key_pair
requires :key_name
service.key_pairs.all(key_name).first
end
|
#key_pair=(new_keypair) ⇒ Object
122
123
124
|
# File 'lib/fog/aws/models/compute/server.rb', line 122
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
230
231
232
233
234
235
236
237
238
239
240
241
242
|
# File 'lib/fog/aws/models/compute/server.rb', line 230
def monitor=(new_monitor)
if persisted?
case new_monitor
when true
response = service.monitor_instances(identity)
when false
response = service.unmonitor_instances(identity)
else
raise ArgumentError.new("only Boolean allowed here")
end
end
self.monitoring = new_monitor
end
|
#ready? ⇒ Boolean
126
127
128
|
# File 'lib/fog/aws/models/compute/server.rb', line 126
def ready?
state == 'running'
end
|
#reboot ⇒ Object
130
131
132
133
134
|
# File 'lib/fog/aws/models/compute/server.rb', line 130
def reboot
requires :id
service.reboot_instances(id)
true
end
|
#save ⇒ Object
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
|
# File 'lib/fog/aws/models/compute/server.rb', line 136
def save
raise Fog::Errors::Error.new('Resaving an existing object may create a duplicate') if persisted?
requires :image_id
options = {
'BlockDeviceMapping' => block_device_mapping,
'ClientToken' => client_token,
'EbsOptimized' => ebs_optimized,
'IamInstanceProfile.Arn' => @iam_instance_profile_arn,
'IamInstanceProfile.Name' => @iam_instance_profile_name,
'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,
'PrivateIpAddress' => private_ip_address,
'RamdiskId' => ramdisk_id,
'SecurityGroup' => groups,
'SecurityGroupId' => security_group_ids,
'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 = service.run_instances(image_id, 1, 1, options)
merge_attributes(data.body['instancesSet'].first)
if tags = self.tags
Fog.wait_for { self.reload rescue nil }
for key, value in (self.tags = tags)
service.tags.create(
:key => key,
:resource_id => self.identity,
:value => value
)
end
end
true
end
|
#setup(credentials = {}) ⇒ Object
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
|
# File 'lib/fog/aws/models/compute/server.rb', line 191
def setup(credentials = {})
requires :public_ip_address, :username
require 'net/ssh'
commands = [
%{mkdir .ssh},
%{passwd -l #{username}},
%{echo "#{Fog::JSON.encode(Fog::JSON.sanitize(attributes))}" >> ~/attributes.json}
]
if public_key
commands << %{echo "#{public_key}" >> ~/.ssh/authorized_keys}
end
wait_for { sshable?(credentials) }
Fog::SSH.new(public_ip_address, username, credentials).run(commands)
end
|
#start ⇒ Object
210
211
212
213
214
|
# File 'lib/fog/aws/models/compute/server.rb', line 210
def start
requires :id
service.start_instances(id)
true
end
|
#stop(force = false) ⇒ Object
216
217
218
219
220
|
# File 'lib/fog/aws/models/compute/server.rb', line 216
def stop(force = false)
requires :id
service.stop_instances(id, force)
true
end
|
#volumes ⇒ Object
222
223
224
225
|
# File 'lib/fog/aws/models/compute/server.rb', line 222
def volumes
requires :id
service.volumes(:server => self)
end
|