Application Deployment Flashcards
What are the purpose of Cost Allocation reports?
They aggregate costs based on tags
What AWS Elastic Beanstalk deployment option allows you to deploy a new version of an application in batches of EC2 instances?
Rolling
What language is used to create recipes for AWS OpsWorks?
Ruby
What disaster recovery option has a one-to-one copy of infrastructure and active-active configuration?
The Multi-Site Solution Method is a practice of having a one-to-one active-active copy of infrastructure and configuration.
What component of the AWS OpsWorks anatomy represents a set of resources we want to manage as a group?
Stacks
Describe OpsWorks
A stack creation tool based on chef.
It uses recipes to create a resources such as Route53, Autoscaling EC2 instances with Apache and PHP
What is the hierachy in Elastic Beanstalk?
Application
Environment (Dev, Prod…)
Tier (Ec2, RDS e.g.) - Config - Config Template
Version (under which the application is deployed)
What is a rolling deployment with Elastic Beanstalk?
The instances are kept, but the code will be replaced
Systems Manager: What can be done with “Run Command”?
Run predefined or custom tasks like install an Application, install a Windows update or execute a shell script
Systems Manager: What can be done with “Automation”?
Automate AWS tasks like start and instance or create a database backup
Systems Manager: What can be done with “Maintenance Window”?
Schedule a repeating slot for repeating tasks
Which services do or don’t have a maintenance window?
Do: RDS Redshift DynamoDB DAX DocumentDB
Don’t:
EC2
Lambda
Are AMIs region bound?
Yes, if used in another region, it needs to be copied
Can you directly copy an AMI that has the billingProducts code attached?
no, you have to launch an EC2 instance with that AMI and then create another AMI from that instance.
You want to have multiple versions of your application running at the same time, with all versions launched via AWS Elastic Beanstalk. Is this possible?
Yes. AWS Elastic Beanstalk is designed to support a number of multiple running environments
Beanst.: What is the Application Version?
Reference to the location of the code
Beanst.: What is the Environment?
All the resources included to run the application
Beanst.: What is the Platform?
All infrastructure (OS, server type, language and Beanstalk components
Beanst.: What is the Application?
All that is present on the deployment:
On or more versions, the Environment etc.
Beanst: What are the two Environment Tiers?
Web-Server (for HTTP requests) Worker Environment (from SQS)
Beanst.: What are the deployment options?
All at once (-> Everyting is deployed at the same time)
Rolling (-> 25% of instancves e.g. at first)
Immunitable (-> New Resources are created)
Which section of a CloudFormation template will you use to define the Lambda version?
Transform
What is the pricing for CloudFormation, OpsWorks and ElasticBeanstalk?
You basiacally pay only for the created resources.
For instances on OpsWorks using Chef or Puppet there’s a charge for the main server and the nodes running
SM: What are the five actions that can be taken by the Systems Manager?
Automation: Run tasks (like backups) on a fleet of instances:
Run Command: run single actions, like a script or installing a software
Patch Manager: Appling OS patches
Maintenance Windows: Schedule recurring tasks
State Manager: Validates that a certain state of an instance is still set
What are the three parts of an AMI?
Template - which OS, Applications et. are used
Launch permissions - which accounts can use the instance
Block Device Mapping - specifies which EBS volumes to attach at launch
What is ElasticBeanstalk?
You upload the code and AWS handels the provisioning of the infrastructure, such as deployment of instances, auto scaling, OS and Language patching etc.
You still have full access to the resources
What is the AWS Service Catalog?
- Creates Products in Services for groups of people
- Restrict access to services in AWS
- Make creation of task (Create Bucket) easier for the users
What is “block device mapping”?
Define what volume(s) and what snapshots are used
What is bootstrapping?
Including instructions for deploying the application on the first boot
What is an instance profile?
The container for one role used by an EC2 instance
What are the two deployment methods?
in-place: updates existing infrastructure on runtime (or maintenance window)
replacement: deploys a new stack of resources
What services can be used for replacement deployments?
ElasticBeanstalk, CloudFormation, OpsWorks
Describe the Code* AWS products
CodeStar: Set of tools (including its own console) to quickly set up an infrastructure
CodeCommit: fully managed source control
CodePipeline: Service for continuous integration / delivery
How is a Replacement Update (for a new AMI) done with an Auto Scaling Group?
Create a new Launch Configuration and set up the ASG to use the new configuration.
the AS termination policy will - step by step - replace the old instances
What services can be used for green/blue deployments?
ElasticBeanstalk, CloudFormation, OpsWorks
What are the two Elastic Beanstalk applications tiers?
web server tier
worker tier
When to use Elastic Beanstalk and when to use ECS for Docker?
EB: Quickly start
ECS: More control
Os ECS Multi AZ / Multi regional?
Multi AZ: yes
Multi Regional: no
ECS: What is a cluster?
A logical grouping of instances that run the container
ECS: What is the container agent?
Calls the AWS API on your behalf, therefore needs the appropriate role and the instances that the agent runs on need access (public or NAT) to external resources
ECS: What is included in an ECS optimized AMI?
A minimal instance of a Linux AMI
The container agent
Version of docker
Service packages
ECS: What is included in a container?
Everything that needs to run the application, but nothing more
ECS: What is a container image?
Read-Only template built from a dockerfile, which defines what needs to be installed.
Is stored in a registry
CF: What happens when one resource cannot be created/deleted?
Creation: Everything is rolled back / deleted
Deletion: That resource will remain
CF: What is the status for a successful / failed stack deletion?
DELETE_COMPLETE
DELETE_FAILED
CF: What are reasons why a stack cannot be deleted?
Before a resource can be deleted it must be empty
There is insufficient permissions to do so
CF: What happens when a stack gets updated?
CloudFormation compares the the changes and only replaces the necessary resources, therefore not causing a disruption for them
CF: What are Change Sets?
Instead of deploying directly, a change set lets you review the changes first.
Yet, it is not a guarantee that the creation will be successful
CF: What is a parameter?
Possibility to pass variables into the template.
Must contain a value (by setting a default)
Can include rules on what can be the value
CF: What is mapping?
Returns values from an input, region e.g.
CF: What are conditions?
Defines under what circumstances resources are created.
Needs to be set up in: Parameters, Conditions and Resources
CF: Describe the relationship between templates and stacks?
Stacks are instances of templates
CF: What are the limits for stacks and templates?
Stacks: 200
Templates: Unlimited
CF: When there is the need for a change on a running system, how should be proceeded?
Make the change directly (increase disk space e.g.) and make the same change ion the template.
To create a stack using the AWS CLI, what would you use?
aws cloudformation create-stack
ElasticBeanstalk: You need to access an EC2 Instance, what needs to be done?
Enable login access.
ElasticBeanstalk: Managed Platform Update is enabled, what will it update?
Managed platform updates only update minor versions, not major versions.
To update
a major version, you must manually initiate the update.
Managed platform updates can
be used to update the operating system, applications, platforms, and languages that you
need. T
ElasticBeanstalk: What is the duration and length of a maintenance window in Elastic Beanstalk when using
managed platform updates?
2 hours every week
ElasticBeanstalk: Describe the advantages of the different deployment types
- All at once is the fastest deployment policy since all of the systems are updated at
once, but it does require downtime - Rolling allows you to keep your application up while
deploying an update, though it can only support a lower capacity. - Rolling with additional
batch allows your application to stay up during the update, though it incurs additional
cost due to the EC2 instances that need to be spun up. - Immutable is also a zero-downtime
deployment policy. It is very fast and offers the fastest failback of all the options; it is also
the most expensive.
Lightsail: How would you connect to the an Amazon Lightsail instance with the least
amount of administrative effort?
Use the Connect option in the Amazon Lightsail Console.
Batch: What are the four components of AWS Batch (and their purpose) ?
1) Job - single unit of work
2) Job definition - how a job should be run, including resource
requirements
3) Job queue - responsible for storage jobs until they are ready to be
executed
4) Scheduler - determining when jobs should be run
Batch: You have a job that you want to run with AWS Batch. The job size would be 25 KB.
Would this be a good fit?
The default job size is 20 KB. This is a hard limit and can’t be
changed.
Batch: Which are two types of compute environments available for use with AWS Batch.
1) Managed Compute Environment - AWS to manage the infrastructure for your batch jobs.
2) Unmanaged Compute Environment - You want
to manage the infrastructure for your batch jobs
Batch: What must you install on your compute resources to utilize them with AWS Batch?
AWS Batch uses containers to execute batch jobs. To take advantage of AWS Batch,
you must install the Amazon ECS (Elastic Container Service) Agent on your compute
resources. T
ECS: Where do
you need to define the launch type in the task definition file so that your ECS containers
will use Fargate instead of EC2?
“requiresCompatibilities”: [“FARGATE”]
ECS: . You need a place to store the container images that you have created. Where are container
images stored?
Repository
ECS: You run the get-login command so that you can log into the repository.
What does the get-login command return?
Authorization token
Lightsail: You need to add more storage disks to a system in Amazon Lightsail. How many disks can
you add?
Up to 15 disks
Lightsail: What is
the maximum amount of storage that you can attach to Amazon Lightsail with a single disk?
16 TB
Lightsail: What
are the steps involved to increase the disk size? (two)
1) Take a snapshot of the disk you want to enlarge.
2) Create a larger disk from the snapshot.
Lightsail: How many domains does Lightsail support?
10
Lightsail: How to enable stickiness for the customers?
Enable session persistence on the Lightsail load balancer.
Lightsail: What can be done if more control is needed for the running instances?
Use the Upgrade to EC2 feature to convert your Lightsail instance to an EC2
instance.