kubernetes-talks
kubernetes-talks copied to clipboard
Repo for slides, demo apps and other talk resources about kubernetes.
Talks
Kubernetes 101
The main subject of this talk is to have an overview on the microservices architectures. Then, starts an introduction to the kubernetes architecture, core services and objects: pods, controllers, deployments and sets.
- Kubernetes 101 Slides
- Kubernetes 101 Slides Source
Kubernetes from Scratch
The main subject of this talk is understanding the Kubernetes Control Plane by spinning up a cluster, component by component.
Kubernetes Clouds
The main subject of this talk is viewing the differences between each managed kubernetes solution offered by AWS, Azure and GCP.
- Kubernetes Clouds Slides
- Kubernetes Clouds Slides
For the labs, the main object is having several clusters deployed all over the using each managed (or not) solution and deploy the same application using the common interface provided by Kubernetes.
- Deploy Kubernetes in Amazon Web services
- AWS managed Kubernetes with EKS
- AWS managed Kubernetes with EKS using eksctl
- AWS non-managed on EC2 with Kops
- Deploy Kubernetes in Google Cloud Platform
- GCP managed Kubernetes with GKE
- Deploy Kubernetes in Azure
- Azure managed Kubernetes with AKS
Providers
Digital Ocean
The main subject of this talk is introducing to the Digital Ocean cloud platform and their Managed Kubernetes solution.
- Digital Ocean Slides
- Digital Ocean Slides Source
Tools
Traefik
The main subject of this talk is introducing to the Traefik awesome Cloud Native Edge Router and the new features comming in Traefik 2.0.
- Traefik Slides
- Traefik Slides Source
Study Jams
ReplicaSets- Introduction
- Learn more
- Some notes
- 1 - Create a
ReplicaSet - 2 - Scaling
ReplicaSets- Double the numbers of replicas with
kubectl scale - Scale back to 1 replica
- Update the
ReplicaSetwith the yaml definition - Scale to 50 replicas
- Scale down back to 5 replicas
- Double the numbers of replicas with
- 3 - Selectors and Pods
- Deploy some blue pods
- Deploy a blue
ReplicaSet - Run a red pod
ReplicaSetfor non-coloredpodsonly- Let's acquire those fancy orange
pods - Remove a pod from the orange replicaset
- Clean up
- 4 - Container probes
- Readiness probe
- Liveness probe
- Clean up
- 5 - Manual rolling update
- Deploy the initial
ReplicaSet - Update the
ReplicaSetpod template - Update the
ReplicaSetPodtemplate with the fixedReadinessProbe - Clean up the failing versions and the old ones
- Deploy the initial
- Introduction