Class: Ufo::Stack::Context

Inherits:
Object
  • Object
show all
Extended by:
Memoist
Includes:
Helper
Defined in:
lib/ufo/stack/context.rb

Instance Method Summary collapse

Methods included from Helper

#adjust_stack_name, #find_stack, #status

Methods included from Util

#default_cluster, #display_params, #execute, #pretty_time, #task_definition_arns, #user_params

Methods included from AwsService

#cloudformation, #cloudwatchlogs, #ec2, #ecr, #ecs, #elb

Constructor Details

#initialize(options) ⇒ Context

Returns a new instance of Context.



6
7
8
9
10
11
12
13
14
15
16
# File 'lib/ufo/stack/context.rb', line 6

def initialize(options)
  @options = options
  @task_definition = options[:task_definition]
  @service = options[:service]
  # no need to adjust @cluster or @stack_name because it was adjusted in Stack#initialize
  @cluster = options[:cluster]
  @stack_name = options[:stack_name]

  @stack = options[:stack]
  @new_stack = !@stack
end

Instance Method Details

#build_subnet_mappings(allocations) ⇒ Object



203
204
205
206
207
208
209
# File 'lib/ufo/stack/context.rb', line 203

def build_subnet_mappings(allocations)
  mappings = []
  allocations.sort.each_with_index do |allocation_id, i|
    mappings << [allocation_id, network[:elb_subnets][i]]
  end
  mappings
end

#build_subnet_mappings!(allocations) ⇒ Object



188
189
190
191
192
193
194
195
196
197
198
199
200
201
# File 'lib/ufo/stack/context.rb', line 188

def build_subnet_mappings!(allocations)
  unless allocations.size == network[:elb_subnets].size
    # puts "caller:".color(:cyan)
    # puts caller
    puts "ERROR: The allocation_ids must match in length to the subnets.".color(:red)
    puts "Please double check that .ufo/settings/network/#{settings[:network_profile]} has the same number of subnets as the eip allocation ids are you specifying."
    subnets = network[:elb_subnets]
    puts "Conigured subnets: #{subnets.inspect}"
    puts "Specified allocation ids: #{allocations.inspect}"
    exit 1
  end

  build_subnet_mappings(allocations)
end

#cfnObject



249
250
251
# File 'lib/ufo/stack/context.rb', line 249

def cfn
  Ufo::Setting::Profile.new(:cfn, settings[:cfn_profile]).data
end

#containerObject



64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# File 'lib/ufo/stack/context.rb', line 64

def container
  resp = ecs.describe_task_definition(task_definition: @task_definition)
  task_definition = resp.task_definition

  container_def = task_definition["container_definitions"].first
  requires_compatibilities = task_definition["requires_compatibilities"]
  fargate = requires_compatibilities && requires_compatibilities == ["FARGATE"]
  network_mode = task_definition["network_mode"]

  mappings = container_def["port_mappings"] || []
  unless mappings.empty?
    port = mappings.first["container_port"]
  end

  result = {
    name: container_def["name"],
    fargate: fargate,
    network_mode: network_mode, # awsvpc, bridge, etc
  }
  result[:port] = port if port
  result
end

#create_elb?Boolean

Returns:

  • (Boolean)


88
89
90
91
# File 'lib/ufo/stack/context.rb', line 88

def create_elb?
  create_elb, _ = elb_options
  create_elb == "true" # convert to boolean
end

#create_listener_ssl?Boolean

if the configuration is set to anything then enable it

Returns:

  • (Boolean)


60
61
62
# File 'lib/ufo/stack/context.rb', line 60

def create_listener_ssl?
  cfn[:listener_ssl] && cfn[:listener_ssl][:port]
end

#default_elb_optionsObject



121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
# File 'lib/ufo/stack/context.rb', line 121

def default_elb_options
  # cannot use :use_previous_value because need to know the create_elb value to
  # compile a template with the right DependsOn for the Ecs service
  unless @new_stack
    create_elb = get_parameter_value(@stack, "CreateElb")
    elb_target_group = get_parameter_value(@stack, "ElbTargetGroup")
    return [create_elb, elb_target_group]
  end

  # default is to create the load balancer is if container name is web
  # and no --elb option is provided
  create_elb = container[:name] == "web" ? "true" : "false"
  elb_target_group = ""
  [create_elb, elb_target_group]
end

#default_listener_protocolObject



49
50
51
52
# File 'lib/ufo/stack/context.rb', line 49

def default_listener_protocol
  return 'TCP' if elb_type == 'network'
  cfn[:listener][:port] == 443 ? 'HTTPS' : 'HTTP'
end

#default_listener_ssl_protocolObject



54
55
56
57
# File 'lib/ufo/stack/context.rb', line 54

def default_listener_ssl_protocol
  return 'TCP' if elb_type == 'network'
  'HTTPS'
end

#default_target_group_protocolObject



44
45
46
47
# File 'lib/ufo/stack/context.rb', line 44

def default_target_group_protocol
  return 'TCP' if elb_type == 'network'
  'HTTP'
end

#elb_eip_idsObject

Returns string, used as CloudFormation parameter.



175
176
177
178
179
180
181
182
183
184
185
186
# File 'lib/ufo/stack/context.rb', line 175

def elb_eip_ids
  return '' if reset_empty_eip_ids?

  elb_eip_ids = normalize_elb_eip_ids
  return elb_eip_ids.join(',') unless elb_eip_ids.empty?

  unless @new_stack
    return get_parameter_value(@stack, "ElbEipIds")
  end

  ''
end

#elb_optionsObject

if –elb is not set at all, so it’s nil. Thhen it defaults to creating the load balancer if the ecs service has a container name “web”.

–elb ” - wont crete an elb –elb ‘auto’ - creates an elb –elb arn:… - wont create elb and use the existing target group



100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
# File 'lib/ufo/stack/context.rb', line 100

def elb_options
  case @options[:elb]
  when "auto", "true", "yes"
    create_elb = "true"
    elb_target_group = ""
  when "false", "0", "no"
    create_elb = "false"
    elb_target_group = ""
  when /^arn:aws:elasticloadbalancing.*targetgroup/
    create_elb = "false"
    elb_target_group = @options[:elb]
  when "", nil
    create_elb, elb_target_group = default_elb_options
  else
    puts "Invalid --elb option provided: #{@options[:elb].inspect}".color(:red)
    puts "Exiting."
    exit 1
  end
  [create_elb, elb_target_group]
end

#elb_typeObject



211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
# File 'lib/ufo/stack/context.rb', line 211

def elb_type
  # if option explicitly specified then change the elb type
  return @options[:elb_type] if @options[:elb_type]
  # user is trying to create a network load balancer if --elb-eip-ids is used
  elb_eip_ids = normalize_elb_eip_ids
  if !elb_eip_ids.empty?
    return "network"
  end

  # if not explicitly set, new stack will defeault to application load balancer
  if @new_stack # default for new stack
    return "application"
  end

  # find existing load balancer for type
  resp = cloudformation.describe_stack_resources(stack_name: @stack_name)
  resources = resp.stack_resources
  elb_resource = resources.find do |resource|
    resource.logical_resource_id == "Elb"
  end

  # In the case when stack exists and there is no elb resource, the elb type
  # doesnt really matter because the elb wont be created since the CreateElb
  # parameter is set to false. The elb type only needs to be set for the
  # template to validate.
  return "application" unless elb_resource

  resp = elb.describe_load_balancers(load_balancer_arns: [elb_resource.physical_resource_id])
  load_balancer = resp.load_balancers.first
  load_balancer.type
end

#get_parameter_value(stack, key) ⇒ Object



137
138
139
140
141
142
# File 'lib/ufo/stack/context.rb', line 137

def get_parameter_value(stack, key)
  param = stack.parameters.find do |p|
    p.parameter_key == key
  end
  param.parameter_value if param
end

#networkObject



244
245
246
# File 'lib/ufo/stack/context.rb', line 244

def network
  Ufo::Setting::Profile.new(:network, settings[:network_profile]).data
end

#normalize_elb_eip_idsObject



168
169
170
171
172
# File 'lib/ufo/stack/context.rb', line 168

def normalize_elb_eip_ids
  elb_eip_ids = @options[:elb_eip_ids] || []
  elb_eip_ids.uniq!
  elb_eip_ids
end

#reset_empty_eip_ids?Boolean

Returns:

  • (Boolean)


151
152
153
154
# File 'lib/ufo/stack/context.rb', line 151

def reset_empty_eip_ids?
  # reset and remove eip allocation ids check
  @options[:elb_eip_ids] && @options[:elb_eip_ids].detect { |x| [' ', 'empty'].include?(x) }
end

#scheduling_strategyObject



144
145
146
147
148
149
# File 'lib/ufo/stack/context.rb', line 144

def scheduling_strategy
  unless @new_stack
    scheduling_strategy = get_parameter_value(@stack, "EcsSchedulingStrategy")
  end
  scheduling_strategy || 'REPLICA' # defaults to REPLICA
end

#scopeObject



18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# File 'lib/ufo/stack/context.rb', line 18

def scope
  scope = Ufo::TemplateScope.new(Ufo::DSL::Helper.new, nil)
  # Add additional variable to scope for CloudFormation template.
  # Dirties the scope but needed.
  vars = {
    cluster: @cluster,
    stack_name: @stack_name, # used in custom_properties
    pretty_service_name: Ufo.pretty_service_name(@service),
    container: container,
    # elb options remember that their 'state'
    create_elb: create_elb?, # helps set Ecs DependsOn
    elb_type: elb_type,
    subnet_mappings: subnet_mappings,
    create_route53: create_elb? && cfn[:dns] && cfn[:dns][:name],
    default_target_group_protocol: default_target_group_protocol,
    default_listener_protocol: default_listener_protocol,
    default_listener_ssl_protocol: default_listener_ssl_protocol,
    create_listener_ssl: create_listener_ssl?,
  }
  # puts "vars:".color(:cyan)
  # pp vars
  scope.assign_instance_variables(vars)
  scope
end

#settingsObject



254
255
256
# File 'lib/ufo/stack/context.rb', line 254

def settings
  Ufo.settings
end

#subnet_mappingsObject



156
157
158
159
160
161
162
163
164
165
166
# File 'lib/ufo/stack/context.rb', line 156

def subnet_mappings
  return [] if reset_empty_eip_ids?

  elb_eip_ids = normalize_elb_eip_ids
  return build_subnet_mappings!(elb_eip_ids) unless elb_eip_ids.empty?

  unless @new_stack
    elb_eip_ids = get_parameter_value(@stack, "ElbEipIds").split(',')
    build_subnet_mappings(elb_eip_ids)
  end
end