Julien Bisconti
Software Engineer
specialized in Google Cloud
previous talks
Content
- History
- Containers
- Containers demo
- Kubernetes
History
- Virtual Machines
- Capacity Planning
- Compute density: “Right sizing” 📊
- SysAdmin (Ops) & Developers
Problems
- Everything static
- Scaling
- Employee time > Machine time
Containers
container image: zip file of app + dependencies
docker: program that runs the image
each container runs in its own namespace
DEMO
docker run -it ubuntu bash
docker ps
docker build -t tag/of/container .
docker images
docker inspect
docker run -p 8080:80 nginx
Deployment
Containers: lightweight VMs
- 12 factor app
- easier deploy
- reproducible build
but ...
Deployment concerns
- Scaling up and down
- Redundancy
- Scheduling / Orchestration
- Service Discovery
- Resiliency
- Rolling out and back
- Health checks
- Secret and config
➡️ kubernetes
Kubernetes concerns
- Logging
- Tracing
- Metrics
- Dependency visualisation
- Service identity and Auth
- Circuit breaking
- Traffic flow and policies
- Failover
- Fault injection
- ...
- Compute
- Memory
- Storage
- Networking
What is missing ?
Data breaches
- Facebook
- Ubiquiti
- Solarwinds
- MS Exchange
THANK YOU
and I'm sorry 🙏
If you had to maintain my code
I hope you learned more by maintaining it
than me by writing it
contact
https://bisconti.cloud/
@julienBisconti
Slides made with Reveal.js and hugo-reveal