Class: Jets::CLI::Ci::Deploy

Inherits:
Base
  • Object
show all
Defined in:
lib/jets/cli/ci/deploy.rb

Instance Attribute Summary

Attributes inherited from Base

#options

Instance Method Summary collapse

Methods inherited from Base

#build_id, #check_build_id!, #find_build, #run_with_exception_handling, #show_console_log_url, #stack_name, #stop_build

Methods inherited from Base

#initialize, #paginate, #paging_params, rescue_api_error

Methods included from Util::Logging

#log

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

#output_value, #stack_exists?

Methods included from AwsServices::GlobalMemoist

included, #reset_cache!

Methods included from Api

#api, #api_key

Constructor Details

This class inherits a constructor from Jets::CLI::Base

Instance Method Details

#are_you_sure?Boolean

Returns:

  • (Boolean)


9
10
11
12
13
14
15
# File 'lib/jets/cli/ci/deploy.rb', line 9

def are_you_sure?
  sure? <<~EOL
    Will deploy stack #{stack_name.color(:green)}

    Uses remote runner to deploy a separate stack for CI resources.
  EOL
end

#runObject



3
4
5
6
7
# File 'lib/jets/cli/ci/deploy.rb', line 3

def run
  are_you_sure?
  Jets::Cfn::Bootstrap.new(@options).run
  Jets::Remote::Runner.new(@options.merge(command: "ci:deploy")).run
end