Class: Morpheus::Cli::ContainersCommand
Instance Attribute Summary
Attributes included from CliCommand
#no_prompt
Instance Method Summary
collapse
Methods included from LogsHelper
#clusters_interface, #containers_interface, #format_log_level, #format_log_records, #format_log_table, included, #instances_interface, #logs_interface, #servers_interface
#accounts_interface, #add_perms_options, #api_client, #apps_interface, #cloud_datastores_interface, #clouds_interface, #datastores_interface, #find_app_by_id, #find_app_by_name, #find_app_by_name_or_id, #find_cloud_by_id_for_provisioning, #find_cloud_by_name_for_provisioning, #find_cloud_by_name_or_id_for_provisioning, #find_cloud_resource_pool_by_name_or_id, #find_group_by_id_for_provisioning, #find_group_by_name_for_provisioning, #find_group_by_name_or_id_for_provisioning, #find_host_by_id, #find_host_by_name, #find_host_by_name_or_id, #find_instance_by_id, #find_instance_by_name, #find_instance_by_name_or_id, #find_instance_type_by_code, #find_instance_type_by_id, #find_instance_type_by_name, #find_instance_type_by_name_or_id, #find_instance_type_layout_by_id, #find_server_by_id, #find_server_by_name, #find_server_by_name_or_id, #find_workflow_by_id, #find_workflow_by_name, #find_workflow_by_name_or_id, #format_app_status, #format_blueprint_type, #format_container_connection_string, #format_container_status, #format_instance_connection_string, #format_instance_container_display_name, #format_instance_status, #format_metadata, #format_snapshot_status, #get_available_accounts, #get_available_clouds, #get_available_environments, #get_available_groups, #get_available_plans, #get_provision_type_for_zone_type, #get_static_environments, included, #instance_type_layouts_interface, #instance_types_interface, #instances_interface, #load_balance_protocols_dropdown, #options_interface, #parse_blueprint_type, #parse_host_id_list, #parse_instance_id_list, #parse_metadata, #parse_resource_id_list, #parse_server_id_list, #print_permissions, #prompt_evars, #prompt_exposed_ports, #prompt_instance_load_balancer, #prompt_metadata, #prompt_network_interfaces, #prompt_new_instance, #prompt_permissions, #prompt_permissions_v2, #prompt_resize_volumes, #prompt_security_groups, #prompt_service_plan_options, #prompt_volumes, #provision_types_interface, #reject_service_plan_option_types, #servers_interface
Methods included from CliCommand
#add_query_parameter, #apply_options, #build_common_options, #build_get_options, #build_list_options, #build_option_type_options, #build_standard_add_many_options, #build_standard_add_options, #build_standard_api_options, #build_standard_delete_options, #build_standard_get_options, #build_standard_list_options, #build_standard_post_options, #build_standard_put_options, #build_standard_remove_options, #build_standard_update_options, #command_description, #command_name, #confirm, #confirm!, #default_refresh_interval, #default_sigdig, #default_subcommand, #establish_remote_appliance_connection, #execute_api, #execute_api_payload, #execute_api_request, #find_all, #find_all_json, #find_by_id, #find_by_name, #find_by_name_or_id, #find_record, #find_record_json, #full_command_usage, #get_interface, #get_list_key, #get_object_key, #get_subcommand_description, #handle_each_payload, #handle_subcommand, included, #interactive?, #my_help_command, #my_terminal, #my_terminal=, #parse_array, #parse_bytes_param, #parse_get_options!, #parse_id_list, #parse_labels, #parse_list_options, #parse_list_options!, #parse_list_subtitles, #parse_options, #parse_parameter_as_resource_id!, #parse_passed_options, #parse_payload, #parse_query_options, #print, #print_error, #println, #prog_name, #puts, #puts_error, #raise_args_error, #raise_command_error, #render_response, #run_command_for_each_arg, #subcommand_aliases, #subcommand_description, #subcommand_usage, #subcommands, #usage, #validate_outfile, #verify_args!, #visible_subcommands
Instance Method Details
#_eject(container_id, options) ⇒ Object
351
352
353
354
355
356
357
358
359
360
361
362
363
364
|
# File 'lib/morpheus/cli/commands/containers_command.rb', line 351
def _eject(container_id, options)
container = find_container_by_id(container_id) return 1 if container.nil?
@containers_interface.setopts(options)
if options[:dry_run]
print_dry_run @containers_interface.dry.eject(container['id'])
return 0
end
json_response = @containers_interface.eject(container['id'])
render_response(json_response, options) do
print green, "Ejecting container #{container['id']}", reset, "\n"
end
return 0, nil
end
|
#_get(arg, options) ⇒ Object
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
|
# File 'lib/morpheus/cli/commands/containers_command.rb', line 69
def _get(arg, options)
@containers_interface.setopts(options)
if options[:dry_run]
print_dry_run @containers_interface.dry.get(arg.to_i)
return
end
json_response = @containers_interface.get(arg.to_i)
container = json_response['container']
render_response(json_response, options, "container") do
stats = container['stats'] || {}
print_h1 "Container Details"
print cyan
description_cols = {
"ID" => 'id',
"Name" => lambda {|it| it['server'] ? it['server']['name'] : '(no server)' }, "Type" => lambda {|it| it['containerType'] ? it['containerType']['name'] : '' },
"Plan" => lambda {|it| it['plan'] ? it['plan']['name'] : '' },
"Instance" => lambda {|it| it['instance'] ? it['instance']['name'] : '' },
"Host" => lambda {|it| it['server'] ? it['server']['name'] : '' },
"Cloud" => lambda {|it| it['cloud'] ? it['cloud']['name'] : '' },
"Location" => lambda {|it| format_container_connection_string(it) },
"Created" => lambda {|it| format_local_dt(it['dateCreated']) },
"Updated" => lambda {|it| format_local_dt(it['lastUpdated']) },
"Status" => lambda {|it| format_container_status(it) }
}
print_description_list(description_cols, container)
if (stats)
print_h2 "Container Usage"
print_stats_usage(stats)
end
if options[:include_available_actions]
if (container["availableActions"])
print_h2 "Available Actions"
print as_pretty_table(container["availableActions"], [:name, :code])
print reset, "\n"
else
print "#{yellow}No available actions#{reset}\n\n"
end
end
if options[:include_costs]
print_h2 "Container Cost"
cost_columns = {
"Cost" => lambda {|it| it['hourlyCost'] ? format_money(it['hourlyCost'], (it['currency'] || 'USD'), {sigdig:15}).to_s + ' per hour' : '' },
"Price" => lambda {|it| it['hourlyPrice'] ? format_money(it['hourlyPrice'], (it['currency'] || 'USD'), {sigdig:15}).to_s + ' per hour' : '' },
}
print_description_list(cost_columns, container)
end
print reset, "\n"
end
if options[:refresh_until_status]
if options[:refresh_interval].nil? || options[:refresh_interval].to_f < 0
options[:refresh_interval] = default_refresh_interval
end
statuses = options[:refresh_until_status].to_s.downcase.split(",").collect {|s| s.strip }.select {|s| !s.to_s.empty? }
if !statuses.include?(container['status'])
print cyan
print cyan, "Refreshing in #{options[:refresh_interval] > 1 ? options[:refresh_interval].to_i : options[:refresh_interval]} seconds"
sleep_with_dots(options[:refresh_interval])
print "\n"
_get(arg, options)
end
end
return 0, nil
end
|
#_restart(container_id, options) ⇒ Object
269
270
271
272
273
274
275
276
277
278
279
280
281
282
|
# File 'lib/morpheus/cli/commands/containers_command.rb', line 269
def _restart(container_id, options)
container = find_container_by_id(container_id) return 1 if container.nil?
@containers_interface.setopts(options)
if options[:dry_run]
print_dry_run @containers_interface.dry.restart(container['id'])
return 0
end
json_response = @containers_interface.restart(container['id'])
render_response(json_response, options) do
print green, "Restarting container #{container['id']}", reset, "\n"
end
return 0, nil
end
|
#_start(container_id, options) ⇒ Object
228
229
230
231
232
233
234
235
236
237
238
239
240
241
|
# File 'lib/morpheus/cli/commands/containers_command.rb', line 228
def _start(container_id, options)
container = find_container_by_id(container_id) return 1 if container.nil?
@containers_interface.setopts(options)
if options[:dry_run]
print_dry_run @containers_interface.dry.start(container['id'])
return 0
end
json_response = @containers_interface.start(container['id'])
render_response(json_response, options) do
print green, "Starting container #{container['id']}", reset, "\n"
end
return 0, nil
end
|
#_stop(container_id, options) ⇒ Object
187
188
189
190
191
192
193
194
195
196
197
198
199
200
|
# File 'lib/morpheus/cli/commands/containers_command.rb', line 187
def _stop(container_id, options)
container = find_container_by_id(container_id) return 1 if container.nil?
@containers_interface.setopts(options)
if options[:dry_run]
print_dry_run @containers_interface.dry.stop(container['id'])
return 0
end
json_response = @containers_interface.stop(container['id'])
render_response(json_response, options) do
print green, "Stopping container #{container['id']}", reset, "\n"
end
return 0, nil
end
|
#_suspend(container_id, options) ⇒ Object
310
311
312
313
314
315
316
317
318
319
320
321
322
323
|
# File 'lib/morpheus/cli/commands/containers_command.rb', line 310
def _suspend(container_id, options)
container = find_container_by_id(container_id) return 1 if container.nil?
@containers_interface.setopts(options)
if options[:dry_run]
print_dry_run @containers_interface.dry.suspend(container['id'])
return 0
end
json_response = @containers_interface.suspend(container['id'])
render_response(json_response, options) do
print green, "Suspending container #{container['id']}", reset, "\n"
end
return 0, nil
end
|
#action(args) ⇒ Object
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
|
# File 'lib/morpheus/cli/commands/containers_command.rb', line 424
def action(args)
options = {}
action_id = nil
optparse = Morpheus::Cli::OptionParser.new do|opts|
opts.banner = subcommand_usage("[id] -a CODE")
opts.on('-a', '--action CODE', "Container Action CODE to execute") do |val|
action_id = val.to_s
end
build_standard_update_options(opts, options, [:auto_confirm])
opts. = <<-EOT
Execute an action for a container or containers
[id] is required. This is the id of a container. Supports multiple [id] arguments.
Examples:
containers action 42 -a docker-remove-node
EOT
end
optparse.parse!(args)
verify_args!(args:args, optparse:optparse, min:1)
connect(options)
id_list = parse_id_list(args)
validate_container_ids!(id_list)
containers = []
id_list.each do |container_id|
container = find_container_by_id(container_id)
if container.nil?
else
containers << container
end
end
if containers.size != id_list.size
return 1
end
container_ids = containers.collect {|container| container["id"] }
available_actions = containers.first['availableActions']
if available_actions.empty?
print_red_alert "Container #{container['id']} has no available actions"
if container_ids.size > 1
print_red_alert "The specified containers have no available actions in common"
else
print_red_alert "The specified container has no available actions"
end
return 1
end
container_action = nil
if action_id.nil?
available_actions_dropdown = available_actions.collect {|act| {'name' => act["name"], 'value' => act["code"]} } v_prompt = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'code', 'type' => 'select', 'fieldLabel' => 'Container Action', 'selectOptions' => available_actions_dropdown, 'required' => true, 'description' => 'Choose the container action to execute'}], options[:options])
action_id = v_prompt['code']
container_action = available_actions.find {|act| act['code'].to_s == action_id.to_s }
else
container_action = available_actions.find {|act| act['code'].to_s == action_id.to_s || act['name'].to_s.downcase == action_id.to_s.downcase }
action_id = container_action["code"] if container_action
end
if !container_action
raise_command_error "Container Action '#{action_id}' not found."
end
action_display_name = "#{container_action['name']} [#{container_action['code']}]"
confirm!("Are you sure you would like to perform action #{action_display_name} on #{id_list.size == 1 ? 'container' : 'containers'} #{anded_list(id_list)}?", options)
@containers_interface.setopts(options)
if options[:dry_run]
print_dry_run @containers_interface.dry.action(container_ids.size == 1 ? container_ids[0] : container_ids, action_id)
return 0
end
json_response = @containers_interface.action(container_ids.size == 1 ? container_ids[0] : container_ids, action_id)
render_response(json_response, options) do
print green, "Action #{action_display_name} performed on #{id_list.size == 1 ? 'container' : 'containers'} #{anded_list(id_list)}", reset, "\n"
end
return 0, nil
end
|
#actions(args) ⇒ Object
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
|
# File 'lib/morpheus/cli/commands/containers_command.rb', line 366
def actions(args)
options = {}
optparse = Morpheus::Cli::OptionParser.new do|opts|
opts.banner = subcommand_usage("[id]")
build_standard_get_options(opts, options)
opts. = <<-EOT
List the actions available to specified container(s).
[id] is required. This is the id of a container. Supports multiple [id] arguments.
Examples:
containers actions 42
containers actions 1 2 3
EOT
end
optparse.parse!(args)
verify_args!(args:args, optparse:optparse, min:1)
connect(options)
id_list = parse_id_list(args)
validate_container_ids!(id_list)
containers = []
id_list.each do |container_id|
container = find_container_by_id(container_id)
if container.nil?
else
containers << container
end
end
if containers.size != id_list.size
return 1
end
container_ids = containers.collect {|container| container["id"] }
@containers_interface.setopts(options)
if options[:dry_run]
print_dry_run @containers_interface.dry.available_actions(container_ids.size == 1 ? container_ids[0] : container_ids)
return 0
end
json_response = @containers_interface.available_actions(container_ids.size == 1 ? container_ids[0] : container_ids)
render_response(json_response, options) do
title = "Container Actions: #{anded_list(id_list)}"
print_h1 title
available_actions = json_response["actions"]
if (available_actions && available_actions.size > 0)
print as_pretty_table(available_actions, [:name, :code])
print reset, "\n"
else
if container_ids.size > 1
print "#{yellow}The specified containers have no available actions in common.#{reset}\n\n"
else
print "#{yellow}No available actions#{reset}\n\n"
end
end
end
return 0, nil
end
|
#attach_floating_ip(args) ⇒ Object
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
|
# File 'lib/morpheus/cli/commands/containers_command.rb', line 777
def attach_floating_ip(args)
options = {}
optparse = Morpheus::Cli::OptionParser.new do |opts|
opts.banner = subcommand_usage("[id]")
opts.on('--ip ID', String, "Floating IP Address, in the format 'ip-ID'.") do |val|
options[:ip] = val
end
opts.on('--pool ID', String, "Floating IP Pool Identifier, in the format 'pool-ID'.") do |val|
options[:pool] = val
end
opts.on('--bandwidth VALUE', String, "Floating IP Bandidth (Mbit/s). Only cloud types Huawei and OpenTelekom support this option.") do |val|
options[:bandwidth] = val
end
build_standard_update_options(opts, options, [:auto_confirm])
opts. = <<-EOT
Attach a floating IP to a container.
[id] is required. This is the id of a container.
Only the following cloud types support this command: OpenStack, Huawei and OpenTelekom
EOT
end
optparse.parse!(args)
verify_args!(args:args, optparse:optparse, count:1)
connect(options)
container = find_container_by_id(args[0])
return 1 if container.nil?
cloud_type = load_container_cloud_type(container)
if !cloud_type['hasFloatingIps']
raise_command_error "Cloud Type #{cloud_type['name']} does support floating IPs."
end
payload = parse_payload(options)
if payload.nil?
payload = parse_passed_options(options)
attach_floating_ip_option_types = cloud_type['floatingIpTypes']
if attach_floating_ip_option_types && !attach_floating_ip_option_types.empty?
if options[:ip]
floating_ip = options[:ip].to_s.sub(/\Aip\-/i, '')
floating_ip = (floating_ip =~ /\A\d{1,}\Z/) ? "ip-#{floating_ip.to_s}" : floating_ip
options[:options]['config'] ||= {}
options[:options]['config']['osExternalNetworkId'] = floating_ip
elsif options[:pool]
floating_ip = options[:pool].to_s.sub(/\Apool\-/i, '')
floating_ip = (floating_ip =~ /\A\d{1,}\Z/) ? "pool-#{floating_ip.to_s}" : floating_ip
options[:options]['config'] ||= {}
options[:options]['config']['osExternalNetworkId'] = floating_ip
end
if options[:bandwidth]
options[:options]['config'] ||= {}
options[:options]['config']['floatingIpBandwidth'] = options[:bandwidth].to_i
end
api_params = {containerId: container['id']}
v_prompt = Morpheus::Cli::OptionTypes.prompt(attach_floating_ip_option_types, options[:options], @api_client, api_params)
payload.deep_merge!(v_prompt)
else
end
end
confirm!("Are you sure you would like to attach this floating IP to container #{container['id']}?", options)
@containers_interface.setopts(options)
if options[:dry_run]
print_dry_run @containers_interface.dry.attach_floating_ip(container['id'], payload)
return
end
json_response = @containers_interface.attach_floating_ip(container['id'], payload)
render_response(json_response, options) do
print_green_success "Attaching floating IP to container #{container['id']}"
end
return 0, nil
end
|
#clone_image(args) ⇒ Object
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
|
# File 'lib/morpheus/cli/commands/containers_command.rb', line 705
def clone_image(args)
options = {}
optparse = Morpheus::Cli::OptionParser.new do |opts|
opts.banner = subcommand_usage("[id]")
opts.on( '--name VALUE', String, "Image Name (Template Name). Default is server name + timestamp" ) do |val|
options[:options]['templateName'] = val
end
opts.on( '--folder VALUE', String, "Folder externalId or '/' to use the root folder" ) do |val|
options[:options]['zoneFolder'] = val
end
build_standard_update_options(opts, options, [:auto_confirm])
opts. = <<-EOT
Clone to image (template) for a container.
[id] is required. This is the id of a container.
EOT
end
optparse.parse!(args)
verify_args!(args:args, optparse:optparse, count:1)
connect(options)
container = find_container_by_id(args[0])
return 1 if container.nil?
instance = find_instance_by_name_or_id(container['instance']['id'])
return 1 if instance.nil?
provision_type = load_container_provision_type(container, instance)
payload = parse_payload(options)
if payload.nil?
payload = parse_passed_options(options)
if payload['templateName'].nil?
v_prompt = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'templateName', 'type' => 'text', 'fieldLabel' => 'Image Name', 'description' => 'Choose a name for the new image template. Default is the server name + timestamp'}], options[:options])
if v_prompt['templateName'].to_s != ''
payload['templateName'] = v_prompt['templateName']
end
end
if provision_type && provision_type["hasFolders"]
if payload['zoneFolder'].nil?
folder_prompt = nil
begin
folder_prompt = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'zoneFolder', 'type' => 'select', 'optionSource' => 'vmwareFolders', 'optionSourceType' => 'vmware', 'fieldLabel' => 'Folder', 'description' => "Folder externalId or '/' to use the root folder", 'required' => true}], options[:options], @api_client, {siteId: instance['group']['id'], zoneId: instance['cloud']['id']})
rescue RestClient::Exception => e
Morpheus::Logging::DarkPrinter.puts "Failed to load folder options" if Morpheus::Logging.debug?
begin
folder_prompt = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'zoneFolder', 'type' => 'select', 'optionSource' => 'vmwareFolders', 'fieldLabel' => 'Folder', 'description' => "Folder externalId or '/' to use the root folder", 'required' => true}], options[:options], @api_client, {siteId: instance['group']['id'], zoneId: instance['cloud']['id']})
rescue RestClient::Exception => e2
Morpheus::Logging::DarkPrinter.puts "Failed to load folder options from alternative endpoint too" if Morpheus::Logging.debug?
end
end
if folder_prompt && folder_prompt['zoneFolder'].to_s != ''
payload['zoneFolder'] = folder_prompt['zoneFolder']
end
end
end
end
confirm!("Are you sure you would like to clone as image container #{container['id']}?", options)
@containers_interface.setopts(options)
if options[:dry_run]
print_dry_run @containers_interface.dry.clone_image(container['id'], payload)
return
end
json_response = @containers_interface.clone_image(container['id'], payload)
render_response(json_response, options) do
print_green_success "Clone Image initiated for container #{container['id']}"
end
return 0, nil
end
|
#connect(opts) ⇒ Object
13
14
15
16
17
18
19
20
21
|
# File 'lib/morpheus/cli/commands/containers_command.rb', line 13
def connect(opts)
@api_client = establish_remote_appliance_connection(opts)
@containers_interface = @api_client.containers
@instances_interface = @api_client.instances
@provision_types_interface = @api_client.provision_types
@logs_interface = @api_client.logs
@execution_request_interface = @api_client.execution_request
@clouds_interface = @api_client.clouds
end
|
#detach_floating_ip(args) ⇒ Object
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
|
# File 'lib/morpheus/cli/commands/containers_command.rb', line 848
def detach_floating_ip(args)
options = {}
optparse = Morpheus::Cli::OptionParser.new do |opts|
opts.banner = subcommand_usage("[id]")
build_standard_update_options(opts, options, [:auto_confirm])
opts. = <<-EOT
Detach a floating IP from a container.
[id] is required. This is the id of a container.
Only the following cloud types support this command: OpenStack, Huawei and OpenTelekom
EOT
end
optparse.parse!(args)
verify_args!(args:args, optparse:optparse, count:1)
connect(options)
container = find_container_by_id(args[0])
return 1 if container.nil?
cloud_type = load_container_cloud_type(container)
if !cloud_type['hasFloatingIps']
raise_command_error "Cloud Type #{cloud_type['name']} does support floating IPs."
end
payload = parse_payload(options)
if payload.nil?
payload = parse_passed_options(options)
end
confirm!("Are you sure you would like to detach the floating IP from container #{container['id']}?", options)
@containers_interface.setopts(options)
if options[:dry_run]
print_dry_run @containers_interface.dry.detach_floating_ip(container['id'], payload)
return
end
json_response = @containers_interface.detach_floating_ip(container['id'], payload)
render_response(json_response, options) do
print_green_success "Detaching floating IP from container #{container['id']}"
end
return 0, nil
end
|
#eject(args) ⇒ Object
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
|
# File 'lib/morpheus/cli/commands/containers_command.rb', line 325
def eject(args)
options = {}
optparse = Morpheus::Cli::OptionParser.new do |opts|
opts.banner = subcommand_usage("[id]")
build_standard_update_options(opts, options, [:auto_confirm])
opts. = <<-EOT
Eject a container.
[id] is required. This is the id of a container. Supports multiple [id] arguments.
If more than one [id] is given, the command will execute for each one sequentially.
Examples:
containers eject 42
containers eject 1 2 3 -y
EOT
end
optparse.parse!(args)
verify_args!(args:args, optparse:optparse, min:1)
connect(options)
id_list = parse_id_list(args)
validate_container_ids!(id_list)
confirm!("Are you sure you would like to eject #{id_list.size == 1 ? 'container' : 'containers'} #{anded_list(id_list)}?", options)
return run_command_for_each_arg(id_list) do |arg|
_eject(arg, options)
end
end
|
#execution_request(args) ⇒ Object
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
|
# File 'lib/morpheus/cli/commands/containers_command.rb', line 584
def execution_request(args)
options = {}
params = {}
script_content = nil
do_refresh = true
optparse = Morpheus::Cli::OptionParser.new do|opts|
opts.banner = subcommand_usage("[id] [options]")
opts.on('--script SCRIPT', "Script to be executed" ) do |val|
script_content = val
end
opts.on('--file FILE', "File containing the script. This can be used instead of --script" ) do |filename|
full_filename = File.expand_path(filename)
if File.exist?(full_filename)
script_content = File.read(full_filename)
else
print_red_alert "File not found: #{full_filename}"
exit 1
end
end
opts.on(nil, '--no-refresh', "Do not refresh until finished" ) do
do_refresh = false
end
build_standard_update_options(opts, options)
opts. = <<-EOT
Execute an arbitrary command or script on a container.
[id] is required. This is the id of a container.
[script] is required and can be passed as --script of --file instead. This is the script that is to be executed.
Examples:
containers exec 42 "uname -a"
EOT
end
optparse.parse!(args)
connect(options)
verify_args!(args:args, optparse:optparse, count:1)
container = find_container_by_id(args[0])
return 1 if container.nil?
params['containerId'] = container['id']
payload = {}
if options[:payload]
payload = options[:payload]
else
payload.deep_merge!(options[:options].reject {|k,v| k.is_a?(Symbol) }) if options[:options]
if script_content.nil?
v_prompt = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'script', 'type' => 'code-editor', 'fieldLabel' => 'Script', 'required' => true, 'description' => 'The script content'}], options[:options])
script_content = v_prompt['script']
end
payload['script'] = script_content
end
@execution_request_interface.setopts(options)
if options[:dry_run]
print_dry_run @execution_request_interface.dry.create(params, payload)
return 0
end
json_response = @execution_request_interface.create(params, payload)
render_response(json_response, options) do
execution_request = json_response['executionRequest']
print_green_success "Executing request #{execution_request['uniqueId']}"
if do_refresh
Morpheus::Cli::ExecutionRequestCommand.new.handle(["get", execution_request['uniqueId'], "--refresh"]+ (options[:remote] ? ["-r",options[:remote]] : []))
else
Morpheus::Cli::ExecutionRequestCommand.new.handle(["get", execution_request['uniqueId']]+ (options[:remote] ? ["-r",options[:remote]] : []))
end
end
return 0, nil
end
|
#get(args) ⇒ Object
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
|
# File 'lib/morpheus/cli/commands/containers_command.rb', line 27
def get(args)
options = {}
optparse = Morpheus::Cli::OptionParser.new do |opts|
opts.banner = subcommand_usage("[id]")
opts.on( nil, '--actions', "Display Available Actions" ) do
options[:include_available_actions] = true
end
opts.on( nil, '--costs', "Display Cost and Price" ) do
options[:include_costs] = true
end
opts.on('--refresh [SECONDS]', String, "Refresh until status is running,failed. Default interval is #{default_refresh_interval} seconds.") do |val|
options[:refresh_until_status] ||= "running,failed"
if !val.to_s.empty?
options[:refresh_interval] = val.to_f
end
end
opts.on('--refresh-until STATUS', String, "Refresh until a specified status is reached.") do |val|
options[:refresh_until_status] = val.to_s.downcase
end
build_standard_get_options(opts, options)
opts. = <<-EOT
Get details about a container.
[id] is required. This is the id of a container. Supports multiple [id] arguments.
If more than one [id] is given, the command will execute for each one sequentially.
Examples:
containers get 42
containers get 1 2 3
containers get 42 --refresh
containers get 42 --refresh 10 --refresh-until stopped
EOT
end
optparse.parse!(args)
verify_args!(args:args, optparse:optparse, min:1)
connect(options)
id_list = parse_id_list(args)
validate_container_ids!(id_list)
return run_command_for_each_arg(id_list) do |arg|
_get(arg, options)
end
end
|
#handle(args) ⇒ Object
23
24
25
|
# File 'lib/morpheus/cli/commands/containers_command.rb', line 23
def handle(args)
handle_subcommand(args)
end
|
#import(args) ⇒ Object
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
|
# File 'lib/morpheus/cli/commands/containers_command.rb', line 658
def import(args)
options = {}
optparse = Morpheus::Cli::OptionParser.new do |opts|
opts.banner = subcommand_usage("[id] [image]")
opts.on( '--storage-provider VALUE', String, "Optional storage provider to use" ) do |val|
options[:options]['storageProviderId'] = val
end
build_standard_update_options(opts, options, [:auto_confirm])
opts. = <<-EOT
Import image template for a container.
[id] is required. This is the id of a container.
EOT
end
optparse.parse!(args)
verify_args!(args:args, optparse:optparse, count:1)
connect(options)
container = find_container_by_id(args[0])
return 1 if container.nil?
instance = find_instance_by_name_or_id(container['instance']['id'])
return 1 if instance.nil?
provision_type = load_container_provision_type(container, instance)
payload = parse_payload(options)
if payload.nil?
payload = parse_passed_options(options)
container_import_option_types = [
{'fieldName' => 'storageProviderId', 'type' => 'select', 'fieldLabel' => 'Storage Provider', 'optionSource' => 'storageProviders', 'required' => false, 'description' => 'Select Storage Provider.'}
]
payload.deep_merge! Morpheus::Cli::OptionTypes.prompt(container_import_option_types, options[:options], @api_client, {})
end
confirm!("Are you sure you would like to import container #{container['id']}?", options)
@containers_interface.setopts(options)
if options[:dry_run]
print_dry_run @containers_interface.dry.import(container['id'], payload)
return
end
json_response = @containers_interface.import(container['id'], payload)
render_response(json_response, options) do
print_green_success "Import initiated for container #{container['id']}"
end
return 0, nil
end
|
#logs(args) ⇒ Object
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
|
# File 'lib/morpheus/cli/commands/containers_command.rb', line 507
def logs(args)
options = {}
params = {}
optparse = Morpheus::Cli::OptionParser.new do |opts|
opts.banner = subcommand_usage("[id]")
opts.on('--start TIMESTAMP','--start TIMESTAMP', "Start timestamp. Default is 30 days ago.") do |val|
options[:start] = parse_time(val) end
opts.on('--end TIMESTAMP','--end TIMESTAMP', "End timestamp. Default is now.") do |val|
options[:end] = parse_time(val) end
opts.on('--level VALUE', String, "Log Level. DEBUG,INFO,WARN,ERROR") do |val|
params['level'] = params['level'] ? [params['level'], val].flatten : [val]
end
opts.on('--table', '--table', "Format ouput as a table.") do
options[:table] = true
end
opts.on('-a', '--all', "Display all details: entire message." ) do
options[:details] = true
end
build_standard_list_options(opts, options)
opts. = <<-EOT
List logs for a container.
[id] is required. This is the id of a container. Supports multiple [id] arguments.
Examples:
containers logs 42 --level ERROR
EOT
end
optparse.parse!(args)
verify_args!(args:args, optparse:optparse, min:1)
connect(options)
id_list = parse_id_list(args)
validate_container_ids!(id_list)
containers = id_list params['level'] = params['level'].collect {|it| it.to_s.upcase }.join('|') if params['level'] params.merge!(parse_list_options(options))
params['query'] = params.delete('phrase') if params['phrase']
params[:order] = params[:direction] unless params[:direction].nil? params['startMs'] = (options[:start].to_i * 1000) if options[:start]
params['endMs'] = (options[:end].to_i * 1000) if options[:end]
@logs_interface.setopts(options)
if options[:dry_run]
print_dry_run @logs_interface.dry.container_logs(containers, params)
return
end
json_response = @logs_interface.container_logs(containers, params)
render_response(json_response, options, "logs") do
logs = json_response
title = "Container Logs: #{containers.join(', ')}"
subtitles = parse_list_subtitles(options)
if options[:start]
subtitles << "Start: #{options[:start]}".strip
end
if options[:end]
subtitles << "End: #{options[:end]}".strip
end
if params[:query]
subtitles << "Search: #{params[:query]}".strip
end
if params['level']
subtitles << "Level: #{params['level']}"
end
logs = json_response['data'] || json_response['logs']
print_h1 title, subtitles, options
if logs.empty?
print "#{cyan}No logs found.#{reset}\n"
else
print format_log_records(logs, options)
({'meta'=>{'total'=>(json_response['total']['value'] rescue json_response['total']),'size'=>logs.size,'max'=>(json_response['max'] || options[:max]),'offset'=>(json_response['offset'] || options[:offset] || 0)}})
end
print reset,"\n"
end
return 0, nil
end
|
#restart(args) ⇒ Object
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
|
# File 'lib/morpheus/cli/commands/containers_command.rb', line 243
def restart(args)
options = {}
optparse = Morpheus::Cli::OptionParser.new do |opts|
opts.banner = subcommand_usage("[id]")
build_standard_update_options(opts, options, [:auto_confirm])
opts. = <<-EOT
Restart a container.
[id] is required. This is the id of a container. Supports multiple [id] arguments.
If more than one [id] is given, the command will execute for each one sequentially.
Examples:
containers restart 42
containers restart 1 2 3 -y
EOT
end
optparse.parse!(args)
verify_args!(args:args, optparse:optparse, min:1)
connect(options)
id_list = parse_id_list(args)
validate_container_ids!(id_list)
confirm!("Are you sure you would like to restart #{id_list.size == 1 ? 'container' : 'containers'} #{anded_list(id_list)}?", options)
return run_command_for_each_arg(id_list) do |arg|
_restart(arg, options)
end
end
|
#start(args) ⇒ Object
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
|
# File 'lib/morpheus/cli/commands/containers_command.rb', line 202
def start(args)
options = {}
optparse = Morpheus::Cli::OptionParser.new do |opts|
opts.banner = subcommand_usage("[id]")
build_standard_update_options(opts, options, [:auto_confirm])
opts. = <<-EOT
Start a container.
[id] is required. This is the id of a container. Supports multiple [id] arguments.
If more than one [id] is given, the command will execute for each one sequentially.
Examples:
containers start 42
containers start 1 2 3 -y
EOT
end
optparse.parse!(args)
verify_args!(args:args, optparse:optparse, min:1)
connect(options)
id_list = parse_id_list(args)
validate_container_ids!(id_list)
confirm!("Are you sure you would like to start #{id_list.size == 1 ? 'container' : 'containers'} #{anded_list(id_list)}?", options)
return run_command_for_each_arg(id_list) do |arg|
_start(arg, options)
end
end
|
#stop(args) ⇒ Object
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
|
# File 'lib/morpheus/cli/commands/containers_command.rb', line 161
def stop(args)
options = {}
optparse = Morpheus::Cli::OptionParser.new do |opts|
opts.banner = subcommand_usage("[id]")
build_standard_update_options(opts, options, [:auto_confirm])
opts. = <<-EOT
Stop a container.
[id] is required. This is the id of a container. Supports multiple [id] arguments.
If more than one [id] is given, the command will execute for each one sequentially.
Examples:
containers stop 42
containers stop 1 2 3 -y
EOT
end
optparse.parse!(args)
verify_args!(args:args, optparse:optparse, min:1)
connect(options)
id_list = parse_id_list(args)
validate_container_ids!(id_list)
confirm!("Are you sure you would like to stop #{id_list.size == 1 ? 'container' : 'containers'} #{anded_list(id_list)}?", options)
return run_command_for_each_arg(id_list) do |arg|
_stop(arg, options)
end
end
|
#suspend(args) ⇒ Object
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
|
# File 'lib/morpheus/cli/commands/containers_command.rb', line 284
def suspend(args)
options = {}
optparse = Morpheus::Cli::OptionParser.new do |opts|
opts.banner = subcommand_usage("[id]")
build_standard_update_options(opts, options, [:auto_confirm])
opts. = <<-EOT
Suspend a container.
[id] is required. This is the id of a container. Supports multiple [id] arguments.
If more than one [id] is given, the command will execute for each one sequentially.
Examples:
containers suspend 42
containers suspend 1 2 3 -y
EOT
end
optparse.parse!(args)
verify_args!(args:args, optparse:optparse, min:1)
connect(options)
id_list = parse_id_list(args)
validate_container_ids!(id_list)
confirm!("Are you sure you would like to suspend #{id_list.size == 1 ? 'container' : 'containers'} #{anded_list(id_list)}?", options)
return run_command_for_each_arg(id_list) do |arg|
_suspend(arg, options)
end
end
|