Chapter 3: Management of Virtual Resources Flashcards
Difficulties in managing large sets of resources.
Provisioning of VMs and containers
Configuration of systems
Monitoring and failure handling
Replication and load balancing
Remaining Problems in the Cloud Age.
server sprawl, configuration drift, snowflake servers
-> Technical debt!
Manual configuration of servers usually leads to
- Configuration Drift: change configuration of single servers manually over time
- Snowflake Servers: Unique configuration, not reproducible
Problems with unique Servers.
Failure, mirroring for testing, keeping cluster consistent
Explain Infrastructure-as-a-Code.
Goal: Make systems easily reproducible.
One single source of truth with a clear declaration of host-specific configurationa -> infrastructure definition files
Container Analogy: Advantages.
- Standardized
- Easy to move
- Isolated
- Many containers fit hosts
Docker principle:
- 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)
Microservices (vs. Monolith)
Advantages ■ Independent development ■ Small teams ■ Fault isolation ■ Scalable!
Disadvantages
■ Overhead (duplicated
tech)
■ Management of services and networking
Purpose of Orchestration tools.
Control systems for clusters
Main Orchestration tasks.
● Scheduling and placement ● Service configuration ● Networking and storage management ● Monitoring and logging ● Replication and scaling ● Re-scheduling and load balancing ● Rolling updates
Three parts of Devops. Seven Phases of DevOps.
- Development, Operations, Quality Assurance
- Plan, Create, Verify, Package, Release, Configure, Monitor
Continuous Integration.
Automation of integration and testing of software
Continuous Delivery.
Fast and reproducible software releases
Continuous Delivery vs. Continuous Deployment.
C. Delivery: Deployment to Production manually
C. Deployment: Deployment to Production automatic
Deployment Strategy
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