Build Process and Pipelines Flashcards

1
Q

What are the three main steps in the whole env build process?

A

Prepare the infrastructure configuration
Deploy an envrionment
Deploy a service

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are the two types of pipeline?

A

Deploy pipeline
Codebase pipeline

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What do the different pipelines do?

A

Environment pipelines deploy infratsructure changes
Codebase pipelines deploy application codebase changes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

List the commands used to setup environments and pipelines along with the stages

A

Prepare the infrastructure config
copilot app init

Deploy an environment
platform-helper environment generate-terraform –name
terraform init
terraform apply
platform-helper environment generate –name
platform-helper generate
copilot env init –name –default-config
copilot env deploy –name

Deploy a service
create the copilot/<svc>/manifest.yml
platform-helper generate
copilot svc init --name web
copilot svc deploy --name web --env dev</svc>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What resources are typically created by copilot in two main stages

A

Demodjango-<env>
AWS::ECS::Cluster
AWS::IAM::Role
AWS::EC2::SecurityGroup
AWS::EC2::SecurityGroupIngress
AWS::ServiceDiscovery::PrivateDnsNamespace</env>

Services
IAM Roles, S3 buckets, S3 policies, ALB
AWS::ECS::TaskDefinition
AWS::Lambda::Function
AWS::ElasticLoadBalancingV2::TargetGroup

How well did you know this?
1
Not at all
2
3
4
5
Perfectly