Class: Jets::CLI::Stop
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
- #are_you_sure? ⇒ Boolean
- #run ⇒ Object
- #stack_name ⇒ Object (also: #project_name)
Methods inherited from Ci::Base
#build_id, #check_build_id!, #find_build, #run_with_exception_handling, #show_console_log_url, #stop_build
Methods inherited from Base
#initialize, #paginate, #paging_params, rescue_api_error
Methods included from Util::Logging
Methods included from AwsServices
#apigateway, #aws_options, #cfn, #codebuild, #dynamodb, #lambda_client, #logs, #s3, #s3_resource, #sns, #sqs, #ssm, #sts, #wafv2
Methods included from AwsServices::StackStatus
Methods included from AwsServices::GlobalMemoist
Methods included from Api
Constructor Details
This class inherits a constructor from Jets::CLI::Base
Instance Method Details
#are_you_sure? ⇒ Boolean
25 26 27 28 29 |
# File 'lib/jets/cli/stop.rb', line 25 def are_you_sure? unless @options[:yes] sure? "Will attempt to stop the deploy for project #{project_name.color(:green)} build_id #{build_id.color(:green)}" end end |
#run ⇒ Object
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# File 'lib/jets/cli/stop.rb', line 3 def run are_you_sure? check_build_id! run_with_exception_handling do stopped = stop_build if stopped log.info <<~EOL Deploy has been stopped: #{build_id} If the deploy has already started the CloudFormation update it will continue. Please check the logs. EOL show_console_log_url(build_id) end end end |