Slide 1

Slide 1 text

Changing the way we Think and Talk about Computing Kubernetes

Slide 2

Slide 2 text

@tekgrrl #kubernetes #containercamp Mandy Waite Developer Advocate +MandyWaite @tekgrrl

Slide 3

Slide 3 text

Image by Connie Zhou

Slide 4

Slide 4 text

@tekgrrl #kubernetes #containercamp job hello_world = { runtime = { cell = 'ic' } // Cell (cluster) to run in binary = '.../hello_world_webserver' // Program to run args = { port = '%port%' } // Command line parameters requirements = { // Resource requirements ram = 100M disk = 100M cpu = 0.1 } replicas = 5 // Number of tasks } 10000 Developer View

Slide 5

Slide 5 text

@tekgrrl #kubernetes #containercamp Developer View

Slide 6

Slide 6 text

@tekgrrl #kubernetes #containercamp web browsers BorgMaster link shard UI shard BorgMaster link shard UI shard BorgMaster link shard UI shard BorgMaster link shard UI shard Scheduler borgcfg web browsers scheduler Borglet Borglet Borglet Borglet Config file BorgMaster link shard UI shard persistent store (Paxos) Binary What just happened? Cell Storage Developer View

Slide 7

Slide 7 text

Hello world! Hello world! Hello world! Hello world! Hello world! Hello world! Hello world! Hello world! Hello world! Hello world! Hello world! Hello world! Hello world! Hello world! Hello world! Hello world! Hello world! Hello world! Hello world! Hello world! Hello world! Hello world! Hello world! Hello world! Hello world! Hello world! Hello world! Image by Connie Zhou Hello world! Hello world! Hello world! Hello world! Hello world! Hello world! Hello world! Hello world! Hello world! Hello world! Hello world! Hello world! Hello world! Hello world! Hello world! Hello world! Hello world! Hello world! Hello world! Hello world! Hello world! Hello world! Hello world! Hello world!

Slide 8

Slide 8 text

#dockerjp #kubernetes @tekgrrl Developer View

Slide 9

Slide 9 text

#dockerjp #kubernetes @tekgrrl task-eviction rates and causes Failures

Slide 10

Slide 10 text

#dockerjp #kubernetes @tekgrrl Resource reclamation time limit: amount of resource requested usage: actual resource consumption Efficiency reservation: estimate of future usage potentially reusable resources

Slide 11

Slide 11 text

#dockerjp #kubernetes @tekgrrl one machine Efficiency Advanced bin- packing algorithms Experimental placement of production VM workload, July 2014

Slide 12

Slide 12 text

#dockerjp #kubernetes @tekgrrl Efficiency Used CPU Used CPU (in cores) Used Memory Used Memory Available Resources Stranded Resources

Slide 13

Slide 13 text

#dockerjp #kubernetes @tekgrrl The Machine is just a Resource Boundary Machines (Virtual and Bare Metal) have shapes: 2GB/Core, 4GB/Core, 8GB/Core, etc Workloads have shapes too: 1GB/Core, 3.5GB/Core, etc Machine Shapes Workload Shapes

Slide 14

Slide 14 text

#dockerjp #kubernetes @tekgrrl Computing Tetris

Slide 15

Slide 15 text

#dockerjp #kubernetes @tekgrrl Resource Stranding 5.5GB RAM Inaccessible CPU Fully Utilized

Slide 16

Slide 16 text

#dockerjp #kubernetes @tekgrrl Bin Packing 1 CPU Available 5.5GB RAM Available

Slide 17

Slide 17 text

#dockerjp #kubernetes @tekgrrl Bin Packing

Slide 18

Slide 18 text

#dockerjp #kubernetes @tekgrrl Images by Connie Zhou Observations: ● Efficiency comes from ○ Scavenging unused allocations ○ Effective Prioritization ○ Sharing resources ○ Overcommit ○ Smarter Scheduling ● The Datacenter is one big System ○ The machine is just a resource boundary ● Containers make everyone more productive http://kubernetes.io http://goo.gl/1C4nuo (Borg paper)

Slide 19

Slide 19 text

Kubernetes

Slide 20

Slide 20 text

@tekgrrl #kubernetes #containercamp Greek for “Helmsman”; also the root of the word “Governor” • Orchestrator for Docker containers • Supports multi-cloud environments • Inspired and informed by Google’s experiences and internal systems • Open source, written in Go Manage applications, not machines Kubernetes

Slide 21

Slide 21 text

@tekgrrl #kubernetes #containercamp web browsers y Kubelet Kubelet Kubelet Kubelet Kubernetes Master Replication Controller Scheduler API Server Kube-UI Container Registry kubectl Proxy web browsers Developer View (Kubernetes)

Slide 22

Slide 22 text

@tekgrrl #kubernetes #containercamp Service Label selectors: version = 1.0 type = Frontend Service Label selector: type = FE Replication Controller Pod Pod frontend Pod version= v1 version = v1 Replication Controller version = v1 #pods = 2 show: version = v2 type = FE type = FE VIP Canary Example Replication Controller Replication Controller version = v2 #pods = 1 show: version = v2 Pod frontend Pod version = v2 type = FE

Slide 23

Slide 23 text

@tekgrrl #kubernetes #containercamp Developer View (Replication Controller) spec: containers: - name: php-guestbook image: php-guestbook:containercamp resources: limits: memory: "128Mi" cpu: "500m" ports: - containerPort: 80 protocol: TCP replicas: 1 10000

Slide 24

Slide 24 text

@tekgrrl #kubernetes #containercamp php MySQL php php python memcached d Mapping to Kubernetes Client

Slide 25

Slide 25 text

@tekgrrl #kubernetes #containercamp Node3 Kubelet Proxy Pod Container Container Container Container Pod Container Container Container Container Node3 Kubelet Proxy Pod Container Container Container Container Pod Container Container Container Container Node1 Kubelet Proxy Pod Container Container Pod $ kubectl proxy --www=k8s-visualizer/ Visualizing Kubernetes Master APIs Scheduling REST (pods, services, controllers) AuthN Scheduler Replication Controller Container

Slide 26

Slide 26 text

Demo - Visualization

Slide 27

Slide 27 text

@tekgrrl #kubernetes #containercamp A Quick Guide to Nodes Node2 Kubelet Proxy disk = ssd type = FE Resources Labels Disks

Slide 28

Slide 28 text

@tekgrrl #kubernetes #containercamp Scheduling Capabilities Step 1 - Filtering Node Resources I need 3.5GB RAM and 2 Cores Node Resources Node Resources Node Resources podFitsResources

Slide 29

Slide 29 text

@tekgrrl #kubernetes #containercamp Scheduling Capabilities Step 1 - Filtering Node1 Kubelet Proxy Node2 Kubelet Proxy Node3 Kubelet Proxy Demo-mysql-disk I need demo- mysql-disk NoDiskConflict

Slide 30

Slide 30 text

@tekgrrl #kubernetes #containercamp PodFitsHost: Filter by NodeName PodSelectorMatches: Filter by Node Label (key and value) CheckNodeLabelPresence: Filter by Node Label Scheduling Capabilities Step 1 - Filtering

Slide 31

Slide 31 text

@tekgrrl #kubernetes #containercamp LeastRequestedPriority Rank by how much free space will be left on the node after the node is deployed [Default] CalculateNodeLabelPriority Prefer nodes with the specified label BalancedResourceAllocation CPU and Memory is balanced after the Pod is deployed [Default] CalculateSpreadPriority minimise number of Pods from the same service on the same node CalculateAntiAffinityPriority minimise number of Pods from the same service on nodes with the same value for a particular label Scheduling Capabilities Step 2 - Ranking

Slide 32

Slide 32 text

@tekgrrl #kubernetes #containercamp Kubernetes 1.0 as of mid July • Formerly announced at OSCON in July Open sourced in June, 2014 • won the BlackDuck “rookie of the year” award Google launched Google Container Engine (GKE) • hosted Kubernetes • https://cloud.google.com/container-engine/ Roadmap: • https://github.com/GoogleCloudPlatform/kubernetes/milestones Kubernetes Status

Slide 33

Slide 33 text

@tekgrrl #kubernetes #containercamp Google Container Engine (GA) Managed Kubernetes (Kubernetes v1) Manages Kubernetes master uptime Manages Updates Cluster Resize via Managed Instance Groups Centralised Logging Google Cloud VPN support

Slide 34

Slide 34 text

@tekgrrl #kubernetes #containercamp Kubernetes is Open Source We want your help! http://kubernetes.io https://github.com/GoogleCloudPlatform/kubernetes irc.freenode.net #google-containers @kubernetesio

Slide 35

Slide 35 text

@tekgrrl #kubernetes #containercamp Tweet questions to: @tekgrrl Questions

Slide 36

Slide 36 text

@tekgrrl #kubernetes #containercamp Example of Resource based scheduling Node1 (1 CPU) Kubelet Proxy Pod (0.6 CPU) Container Container Node2 (1 CPU) Kubelet Proxy Pod (0.6 CPU) Container Container Node3 (1 CPU) Kubelet Proxy Pod (0.6 CPU) Container Container