Chapter 3: Management of Virtual Resources Flashcards

1
Q

Difficulties in managing large sets of resources.

A

Provisioning of VMs and containers
Configuration of systems
Monitoring and failure handling
Replication and load balancing

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

Remaining Problems in the Cloud Age.

A

server sprawl, configuration drift, snowflake servers

-> Technical debt!

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

Manual configuration of servers usually leads to

A
  • Configuration Drift: change configuration of single servers manually over time
  • Snowflake Servers: Unique configuration, not reproducible
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Problems with unique Servers.

A

Failure, mirroring for testing, keeping cluster consistent

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

Explain Infrastructure-as-a-Code.

A

Goal: Make systems easily reproducible.

One single source of truth with a clear declaration of host-specific configurationa -> infrastructure definition files

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

Container Analogy: Advantages.

A
  • Standardized
  • Easy to move
  • Isolated
  • Many containers fit hosts
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Docker principle:

A
  • Docker file: instructions for creating image
  • Docker image: snapshot of a container with all dependencies
  • Container instance: running isolated process, started form a image
    (sharing Host OS Kernel)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Microservices (vs. Monolith)

A
Advantages
■ Independent
development
■ Small teams
■ Fault isolation
■ Scalable!

Disadvantages
■ Overhead (duplicated
tech)
■ Management of services and networking

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

Purpose of Orchestration tools.

A

Control systems for clusters

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

Main Orchestration tasks.

A
● Scheduling and placement
● Service configuration
● Networking and storage management 
● Monitoring and logging
● Replication and scaling
● Re-scheduling and load balancing
● Rolling updates
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Three parts of Devops. Seven Phases of DevOps.

A
  • Development, Operations, Quality Assurance

- Plan, Create, Verify, Package, Release, Configure, Monitor

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

Continuous Integration.

A

Automation of integration and testing of software

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

Continuous Delivery.

A

Fast and reproducible software releases

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

Continuous Delivery vs. Continuous Deployment.

A

C. Delivery: Deployment to Production manually

C. Deployment: Deployment to Production automatic

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

Deployment Strategy

A

Blue/Green:
1. Deploy to the non-active environment
2. Switch the traffic coming through the load balancer
over to the new environment
3. Monitor new version, maybe switch back
-> easy roll-backs

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