SlideShare a Scribd company logo
Kubernetes: 
Managing Containers the Google way 
CodeMotion Milan, 28 Nov 2014 
Riccardo Carlesso 
Technical Solution Engineer 
ricc@google.com 
http://goo.gl/3LpbZW
Why Containers*? 
1. Packaging 
2. Efficiency and Speed 
3. Security (?) 
(*) Container = Docker flavor container
Static application environment 
No stress deployment and update 
Repeatable portable artifact 
Develop here, run there 
Pick your cloud solely on its merits 
Loosely coupled 
= easier to build and manage 
Easier to build and manage 
Compose applications from micro-services 
Packaging
Everything at Google runs in a container. 
• Resource isolation 
• Predictability 
• Quality of service 
• Efficient overcommit 
• Resource accounting 
Google starts over 2 billion containers per week. 
Images by Connie Zhou 
Efficiency
Docker 
● 15000+ GitHub stars 
● 600+ contributors 
● 100's of projects built on top of Docker 
○ UIs, mini-PaaS, … 
○ github.com/google/cadvisor 
○ github.com/GoogleCloudPlatform/heapster 
● Very popular GitHub project 
○ Most popular Go project of all time 
○ $ docker run -i -t ubuntu /bin/bash -p 80:80
Kubernetes 
κυβερνήτης: Greek for “pilot” or “helmsman of a ship” 
the open source cluster manager from Google
Kubernetes 
Inspired by Google's systems and experience: 
Manage Containers, not Machines 
Efficient & Robust: 
• optimized packing 
• active monitoring => self healing 
Organizationally Scalable: 
• Hassle-free maintanance => 
Enables micro-services 
Modern Open Source: 
• Written in Go 
• Hosted on github 
• Apache 2.0 licensed
Simplified Cluster Management Stack 
Cluster Scheduler 
Scheduled 
Containers 
Scheduled 
Containers 
Scheduled Containers 
Node Container Manager 
Node Container Manager 
Managed Base OS 
Managed Base OS
Kubernetes Container Stack 
Kubernetes Master 
etcd 
Scheduled 
Containers 
Scheduled 
Containers 
Scheduled Containers 
kubelet + Docker 
kubelet 
Managed Base OS 
Managed Base OS
Kubernetes 
Master/Scheduler 
Kubernetes 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Container 
Agent 
MINIONS
Web Server 
Log Roller 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Kubernetes 
Master/Scheduler 
Machine 
Host 
Machine 
Host 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Pods
FE 
FE 
FE 
FE 
BE 
FE 
FE 
BE 
BE 
BE 
BE BE BE 
BE 
BE 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Kubernetes - Master/Scheduler 
Too Many Pods
labels: 
role: frontend 
FE 
FE 
FE 
FE 
BE 
FE 
FE 
BE 
BE 
BE 
BE BE BE 
BE 
BE 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Kubernetes - Master/Scheduler 
Labels
labels: 
role: frontend 
stage: production 
Machine 
Host 
Machine 
Host 
Machine 
Host 
BE 
Machine 
Host 
Machine 
Host 
BE 
Machine 
Host 
Machine 
Host 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Kubernetes - Master/Scheduler 
FE 
FE 
FE 
FE 
FE 
FE 
BE 
BE 
BE BE BE 
BE 
BE 
Labels
Replication Controller 
FE FE FE FE 
replicas: 4 
template: 
... 
labels: 
role: frontend 
stage: production 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Kubernetes - Master/Scheduler
Replication Controller 
FE 
replicas: 1 
template: 
... 
labels: 
role: frontend 
stage: production 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Kubernetes - Master/Scheduler
Replication Controller 
FE FE FE 
replicas: 3 
template: 
... 
labels: 
role: frontend 
stage: production 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Kubernetes - Master/Scheduler
Declarative Over Imperative 
Imperative: 
"for pod in pod{001..100} ; start $pod 
Declarative: 
"Run 100 copies of this pod with a target of 
<= 2 tasks down at any time" 
Pros: 
• Repeatable 
• "Set it and forget it" 
• Eventually consistent 
• Easily updatable 
Con: 
• Tracing action/reaction can be difficult. 
"I made a change, is it done?" 
Image: "Space Needle under construction, 1961" seattlemunicipalarchives CC-BY-2.0 http://www.flickr. 
com/photos/seattlemunicipalarchives/6847114249
id: backend-service 
port: 9000 
labels: 
role: backend 
stage: production 
Pods are auto-placed: COOL! 
but: How to direct FE->BE traffic ? 
Backend Service 
BE BE BE BE 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Service 
FE 
port: 9000 
Load-Balancing 
Service proxy Service proxy Service proxy Service proxy Service proxy Service proxy
Demo (Guestbook) 
Redis 
Master 
Finish 
Master Service 
Redis 
Slave 
Redis 
Slave 
Slave Service 
PHP 
Frontend 
PHP 
Frontend PHP 
Frontend
myDB Service 
[app=myDB] 
Managing LifeCycle 
myDB 
ver=1 
myDB 
ver=1 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Kubernetes - Master/Scheduler 
Replication Controller 
[app=myDB; ver=1] 
replicas=5 
myDB 
ver=1 
myDB 
ver=1 
myDB 
ver=1
myDB Service 
[app=myDB] 
Managing LifeCycle 
myDB 
ver=1 
myDB 
ver=1 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Machine 
Host 
myDB 
ver=2 
Machine 
Host 
Machine 
Host 
Machine 
Host 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Container 
Agent 
Kubernetes - Master/Scheduler 
Replication Controller 
[app=myDB; ver=1] 
replicas=3 
Replication Controller 
[app=myDB; ver=2] 
replicas=2 
myDB 
ver=2 
myDB 
ver=1
We’re taking lessons we’ve learned and open sourcing them 
Kubernetes is evolving 
We’re eager to hear from you! 
1 
2 
3 
Summing Up
We are just getting started... 
Clone Kubernetes at: 
github.com/GoogleCloudPlatform/kubernetes 
IRC: #google-containers on Freenode 
Google group: google-containers 
Reach out: 
ricc@google.com 
Kubernetes on GCE (new!): https://cloud.google. 
com/compute/docs/containers 
Presentation: http://goo.gl/3LpbZW
Backup slides 
Full screen QR code for feedback ⇒
Step 1: Create a redis master 
jdk$ ls 
README.md index.php redis-slave 
frontend-controller-jdk.json php-redis redis-slave-controller.json 
frontend-controller.json redis-master-service.json redis-slave-service.json 
jdk$ ../../cluster/kubecfg.sh -c redis-master.json create pods 
ID Image(s) Host Labels Status 
---------- ---------- ---------- ---------- ---------- 
redis-master-2 dockerfile/redis / name=redis-master Waiting 
jdk-macbookpro2:guestbook jdk$ ../../cluster/kubecfg.sh list pods 
ID Image(s) Host Labels Status 
---------- ---------- ---------- ---------- ---------- 
redis-master-2 dockerfile/redis kubernetes-minion-2.c.pivotal-gearing-505.internal/ name=redis-master Waiting 
jdk-macbookpro2:guestbook jdk$ ../../cluster/kubecfg.sh list pods 
ID Image(s) Host Labels Status 
---------- ---------- ---------- ---------- ---------- 
redis-master-2 dockerfile/redis kubernetes-minion-2.c.pivotal-gearing-505.internal/ name=redis-master Running
Step 1: master.json 
{ 
"id": "redis-master-2", 
"kind": "Pod", 
"apiVersion": "v1beta1", 
"desiredState": { 
"manifest": { 
"version": "v1beta1", 
"id": "redis-master-2", 
"containers": [{ 
"name": "master", 
"image": "dockerfile/redis", 
"ports": [{ 
"containerPort": 6379, 
"hostPort": 6379 
}] 
}] 
} 
}, 
"labels": { 
"name": "redis-master" 
} 
}
Step 2: Create a redis master service 
jdk$ ls 
README.md index.php redis-slave 
frontend-controller-jdk.json php-redis redis-slave-controller.json 
frontend-controller.json redis-master-service.json redis-slave-service.json 
jdk$ ../../cluster/kubecfg.sh -c redis-master-service.json create services 
ID Labels Selector Port 
---------- ---------- ---------- ---------- 
redismaster name=redis-master 10000 
jdk$ … test redis somehow
Step 2: master.service 
{ 
"id": "redismaster", 
"kind": "Service", 
"apiVersion": "v1beta1", 
"port": 10000, 
"containerPort": 6379, 
"selector": { 
"name": "redis-master" 
} 
}
Step 3: Create redis slaves & service 
jdk$ ../../cluster/kubecfg.sh -c redis-slave-controller.json create replicationControllers 
ID Image(s) Selector Replicas 
---------- ---------- ---------- ---------- 
redisSlaveController brendanburns/redis-slave name=redisslave 2 
jdk$ ../../cluster/kubecfg.sh -c redis-slave-controller.json list pods 
ID Image(s) Host Labels Status 
---------- ---------- ---------- ---------- ---------- 
redis-master-2 dockerfile/redis kubernetes-minion-2.c.pivotal-gearing-505.internal/ name=redis-master Running 
4df5661d-4e0b-11e4-957e-42010af01e53 brendanburns/redis-slave kubernetes-minion-2.c.pivotal-gearing-505.internal/ name=redisslave,replicationController=redisSlaveController Running 
4df6be88-4e0b-11e4-957e-42010af01e53 brendanburns/redis-slave kubernetes-minion-4.c.pivotal-gearing-505.internal/ name=redisslave,replicationController=redisSlaveController Running 
jdk$ ../../cluster/kubecfg.sh -c redis-slave-service.json create services 
ID Labels Selector Port 
---------- ---------- ---------- ---------- 
redisslave name=redisslave name=redisslave 10001 
jdk$ … test redis ...
Step 3: redis-slave-controller.service 
"id": "redisSlaveController", 
"kind": "ReplicationController", 
"apiVersion": "v1beta1", 
"desiredState": { 
"replicas": 2, 
"replicaSelector": {"name": "redisslave"}, 
"podTemplate": { 
"desiredState": { 
"manifest": { 
"version": "v1beta1", 
"id": "redisSlaveController", 
"containers": [{ 
"name": "slave", 
"image": "brendanburns/redis-slave", 
"ports": [{"containerPort": 6379, "hostPort": 6380}] 
}] 
} 
}, 
"labels": {"name": "redisslave"} 
}}, 
"labels": {"name": "redisslave"} 
}
Step 4: Create frontend servers 
jdk$ ../../cluster/kubecfg.sh -c frontend-controller.json create replicationControllers 
ID Image(s) Selector Replicas 
---------- ---------- ---------- ---------- 
frontendController brendanburns/php-redis name=frontend 3
Step 5: Enjoy :-)
Docker demo 
$ docker pull dockerfile/nginx 
...a7767ce9ec2c: Download complete…. 
$ docker run -t -i dockerfile/nginx /bin/bash 
[ root@055dbcc687d8]$ cd /usr/share/nginx/html 
[ root@055dbcc687d8]$ cp index.html jdk.html 
$ docker ps 
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 
055dbcc687d8 dockerfile/nginx:latest "/bin/bash" 21 minutes ago Up 21 minutes 443/tcp, 80/tcp kickass_wright 
…. 
$ docker commit … jdk1/nginx-modified 
$ docker push jdk1/nginx-modified 
$ docker pull jdk1/nginx-modified 
docker run -p 80:80 jdk1/nginx-modified /usr/sbin/nginx

More Related Content

More from Codemotion (20)

Francesco Baldassarri - Deliver Data at Scale - Codemotion Amsterdam 2019 -
Francesco Baldassarri  - Deliver Data at Scale - Codemotion Amsterdam 2019 - Francesco Baldassarri  - Deliver Data at Scale - Codemotion Amsterdam 2019 -
Francesco Baldassarri - Deliver Data at Scale - Codemotion Amsterdam 2019 -
Codemotion
 
Martin Förtsch, Thomas Endres - Stereoscopic Style Transfer AI - Codemotion A...
Martin Förtsch, Thomas Endres - Stereoscopic Style Transfer AI - Codemotion A...Martin Förtsch, Thomas Endres - Stereoscopic Style Transfer AI - Codemotion A...
Martin Förtsch, Thomas Endres - Stereoscopic Style Transfer AI - Codemotion A...
Codemotion
 
Melanie Rieback, Klaus Kursawe - Blockchain Security: Melting the "Silver Bul...
Melanie Rieback, Klaus Kursawe - Blockchain Security: Melting the "Silver Bul...Melanie Rieback, Klaus Kursawe - Blockchain Security: Melting the "Silver Bul...
Melanie Rieback, Klaus Kursawe - Blockchain Security: Melting the "Silver Bul...
Codemotion
 
Angelo van der Sijpt - How well do you know your network stack? - Codemotion ...
Angelo van der Sijpt - How well do you know your network stack? - Codemotion ...Angelo van der Sijpt - How well do you know your network stack? - Codemotion ...
Angelo van der Sijpt - How well do you know your network stack? - Codemotion ...
Codemotion
 
Lars Wolff - Performance Testing for DevOps in the Cloud - Codemotion Amsterd...
Lars Wolff - Performance Testing for DevOps in the Cloud - Codemotion Amsterd...Lars Wolff - Performance Testing for DevOps in the Cloud - Codemotion Amsterd...
Lars Wolff - Performance Testing for DevOps in the Cloud - Codemotion Amsterd...
Codemotion
 
Sascha Wolter - Conversational AI Demystified - Codemotion Amsterdam 2019
Sascha Wolter - Conversational AI Demystified - Codemotion Amsterdam 2019Sascha Wolter - Conversational AI Demystified - Codemotion Amsterdam 2019
Sascha Wolter - Conversational AI Demystified - Codemotion Amsterdam 2019
Codemotion
 
Michele Tonutti - Scaling is caring - Codemotion Amsterdam 2019
Michele Tonutti - Scaling is caring - Codemotion Amsterdam 2019Michele Tonutti - Scaling is caring - Codemotion Amsterdam 2019
Michele Tonutti - Scaling is caring - Codemotion Amsterdam 2019
Codemotion
 
Pat Hermens - From 100 to 1,000+ deployments a day - Codemotion Amsterdam 2019
Pat Hermens - From 100 to 1,000+ deployments a day - Codemotion Amsterdam 2019Pat Hermens - From 100 to 1,000+ deployments a day - Codemotion Amsterdam 2019
Pat Hermens - From 100 to 1,000+ deployments a day - Codemotion Amsterdam 2019
Codemotion
 
James Birnie - Using Many Worlds of Compute Power with Quantum - Codemotion A...
James Birnie - Using Many Worlds of Compute Power with Quantum - Codemotion A...James Birnie - Using Many Worlds of Compute Power with Quantum - Codemotion A...
James Birnie - Using Many Worlds of Compute Power with Quantum - Codemotion A...
Codemotion
 
Don Goodman-Wilson - Chinese food, motor scooters, and open source developmen...
Don Goodman-Wilson - Chinese food, motor scooters, and open source developmen...Don Goodman-Wilson - Chinese food, motor scooters, and open source developmen...
Don Goodman-Wilson - Chinese food, motor scooters, and open source developmen...
Codemotion
 
Pieter Omvlee - The story behind Sketch - Codemotion Amsterdam 2019
Pieter Omvlee - The story behind Sketch - Codemotion Amsterdam 2019Pieter Omvlee - The story behind Sketch - Codemotion Amsterdam 2019
Pieter Omvlee - The story behind Sketch - Codemotion Amsterdam 2019
Codemotion
 
Dave Farley - Taking Back “Software Engineering” - Codemotion Amsterdam 2019
Dave Farley - Taking Back “Software Engineering” - Codemotion Amsterdam 2019Dave Farley - Taking Back “Software Engineering” - Codemotion Amsterdam 2019
Dave Farley - Taking Back “Software Engineering” - Codemotion Amsterdam 2019
Codemotion
 
Joshua Hoffman - Should the CTO be Coding? - Codemotion Amsterdam 2019
Joshua Hoffman - Should the CTO be Coding? - Codemotion Amsterdam 2019Joshua Hoffman - Should the CTO be Coding? - Codemotion Amsterdam 2019
Joshua Hoffman - Should the CTO be Coding? - Codemotion Amsterdam 2019
Codemotion
 
Mike Kotsur - What can philosophy teach us about programming - Codemotion Ams...
Mike Kotsur - What can philosophy teach us about programming - Codemotion Ams...Mike Kotsur - What can philosophy teach us about programming - Codemotion Ams...
Mike Kotsur - What can philosophy teach us about programming - Codemotion Ams...
Codemotion
 
Mete Atamel - Serverless with Knative - Codemotion Amsterdam 2019
Mete Atamel - Serverless with Knative - Codemotion Amsterdam 2019Mete Atamel - Serverless with Knative - Codemotion Amsterdam 2019
Mete Atamel - Serverless with Knative - Codemotion Amsterdam 2019
Codemotion
 
Rahul Shetty - Corporate relocation prediction - Codemotion Amsterdam 2019
Rahul Shetty - Corporate relocation prediction - Codemotion Amsterdam 2019Rahul Shetty - Corporate relocation prediction - Codemotion Amsterdam 2019
Rahul Shetty - Corporate relocation prediction - Codemotion Amsterdam 2019
Codemotion
 
Mario Viviani - Designing apps for fire TV - Codemotion Amsterdam 2019
Mario Viviani - Designing apps for fire TV - Codemotion Amsterdam 2019Mario Viviani - Designing apps for fire TV - Codemotion Amsterdam 2019
Mario Viviani - Designing apps for fire TV - Codemotion Amsterdam 2019
Codemotion
 
Ilona Demidenko - Conversational Sign Up - Codemotion Amsterdam 2019
Ilona Demidenko - Conversational Sign Up - Codemotion Amsterdam 2019Ilona Demidenko - Conversational Sign Up - Codemotion Amsterdam 2019
Ilona Demidenko - Conversational Sign Up - Codemotion Amsterdam 2019
Codemotion
 
Katie Koschland - Ready, steady, crash - Codemotion Amsterdam 2019
Katie Koschland - Ready, steady, crash - Codemotion Amsterdam 2019Katie Koschland - Ready, steady, crash - Codemotion Amsterdam 2019
Katie Koschland - Ready, steady, crash - Codemotion Amsterdam 2019
Codemotion
 
Matteo Antony Mistretta - React, the Inglorious way - Codemotion Amsterdam 2019
Matteo Antony Mistretta - React, the Inglorious way - Codemotion Amsterdam 2019Matteo Antony Mistretta - React, the Inglorious way - Codemotion Amsterdam 2019
Matteo Antony Mistretta - React, the Inglorious way - Codemotion Amsterdam 2019
Codemotion
 
Francesco Baldassarri - Deliver Data at Scale - Codemotion Amsterdam 2019 -
Francesco Baldassarri  - Deliver Data at Scale - Codemotion Amsterdam 2019 - Francesco Baldassarri  - Deliver Data at Scale - Codemotion Amsterdam 2019 -
Francesco Baldassarri - Deliver Data at Scale - Codemotion Amsterdam 2019 -
Codemotion
 
Martin Förtsch, Thomas Endres - Stereoscopic Style Transfer AI - Codemotion A...
Martin Förtsch, Thomas Endres - Stereoscopic Style Transfer AI - Codemotion A...Martin Förtsch, Thomas Endres - Stereoscopic Style Transfer AI - Codemotion A...
Martin Förtsch, Thomas Endres - Stereoscopic Style Transfer AI - Codemotion A...
Codemotion
 
Melanie Rieback, Klaus Kursawe - Blockchain Security: Melting the "Silver Bul...
Melanie Rieback, Klaus Kursawe - Blockchain Security: Melting the "Silver Bul...Melanie Rieback, Klaus Kursawe - Blockchain Security: Melting the "Silver Bul...
Melanie Rieback, Klaus Kursawe - Blockchain Security: Melting the "Silver Bul...
Codemotion
 
Angelo van der Sijpt - How well do you know your network stack? - Codemotion ...
Angelo van der Sijpt - How well do you know your network stack? - Codemotion ...Angelo van der Sijpt - How well do you know your network stack? - Codemotion ...
Angelo van der Sijpt - How well do you know your network stack? - Codemotion ...
Codemotion
 
Lars Wolff - Performance Testing for DevOps in the Cloud - Codemotion Amsterd...
Lars Wolff - Performance Testing for DevOps in the Cloud - Codemotion Amsterd...Lars Wolff - Performance Testing for DevOps in the Cloud - Codemotion Amsterd...
Lars Wolff - Performance Testing for DevOps in the Cloud - Codemotion Amsterd...
Codemotion
 
Sascha Wolter - Conversational AI Demystified - Codemotion Amsterdam 2019
Sascha Wolter - Conversational AI Demystified - Codemotion Amsterdam 2019Sascha Wolter - Conversational AI Demystified - Codemotion Amsterdam 2019
Sascha Wolter - Conversational AI Demystified - Codemotion Amsterdam 2019
Codemotion
 
Michele Tonutti - Scaling is caring - Codemotion Amsterdam 2019
Michele Tonutti - Scaling is caring - Codemotion Amsterdam 2019Michele Tonutti - Scaling is caring - Codemotion Amsterdam 2019
Michele Tonutti - Scaling is caring - Codemotion Amsterdam 2019
Codemotion
 
Pat Hermens - From 100 to 1,000+ deployments a day - Codemotion Amsterdam 2019
Pat Hermens - From 100 to 1,000+ deployments a day - Codemotion Amsterdam 2019Pat Hermens - From 100 to 1,000+ deployments a day - Codemotion Amsterdam 2019
Pat Hermens - From 100 to 1,000+ deployments a day - Codemotion Amsterdam 2019
Codemotion
 
James Birnie - Using Many Worlds of Compute Power with Quantum - Codemotion A...
James Birnie - Using Many Worlds of Compute Power with Quantum - Codemotion A...James Birnie - Using Many Worlds of Compute Power with Quantum - Codemotion A...
James Birnie - Using Many Worlds of Compute Power with Quantum - Codemotion A...
Codemotion
 
Don Goodman-Wilson - Chinese food, motor scooters, and open source developmen...
Don Goodman-Wilson - Chinese food, motor scooters, and open source developmen...Don Goodman-Wilson - Chinese food, motor scooters, and open source developmen...
Don Goodman-Wilson - Chinese food, motor scooters, and open source developmen...
Codemotion
 
Pieter Omvlee - The story behind Sketch - Codemotion Amsterdam 2019
Pieter Omvlee - The story behind Sketch - Codemotion Amsterdam 2019Pieter Omvlee - The story behind Sketch - Codemotion Amsterdam 2019
Pieter Omvlee - The story behind Sketch - Codemotion Amsterdam 2019
Codemotion
 
Dave Farley - Taking Back “Software Engineering” - Codemotion Amsterdam 2019
Dave Farley - Taking Back “Software Engineering” - Codemotion Amsterdam 2019Dave Farley - Taking Back “Software Engineering” - Codemotion Amsterdam 2019
Dave Farley - Taking Back “Software Engineering” - Codemotion Amsterdam 2019
Codemotion
 
Joshua Hoffman - Should the CTO be Coding? - Codemotion Amsterdam 2019
Joshua Hoffman - Should the CTO be Coding? - Codemotion Amsterdam 2019Joshua Hoffman - Should the CTO be Coding? - Codemotion Amsterdam 2019
Joshua Hoffman - Should the CTO be Coding? - Codemotion Amsterdam 2019
Codemotion
 
Mike Kotsur - What can philosophy teach us about programming - Codemotion Ams...
Mike Kotsur - What can philosophy teach us about programming - Codemotion Ams...Mike Kotsur - What can philosophy teach us about programming - Codemotion Ams...
Mike Kotsur - What can philosophy teach us about programming - Codemotion Ams...
Codemotion
 
Mete Atamel - Serverless with Knative - Codemotion Amsterdam 2019
Mete Atamel - Serverless with Knative - Codemotion Amsterdam 2019Mete Atamel - Serverless with Knative - Codemotion Amsterdam 2019
Mete Atamel - Serverless with Knative - Codemotion Amsterdam 2019
Codemotion
 
Rahul Shetty - Corporate relocation prediction - Codemotion Amsterdam 2019
Rahul Shetty - Corporate relocation prediction - Codemotion Amsterdam 2019Rahul Shetty - Corporate relocation prediction - Codemotion Amsterdam 2019
Rahul Shetty - Corporate relocation prediction - Codemotion Amsterdam 2019
Codemotion
 
Mario Viviani - Designing apps for fire TV - Codemotion Amsterdam 2019
Mario Viviani - Designing apps for fire TV - Codemotion Amsterdam 2019Mario Viviani - Designing apps for fire TV - Codemotion Amsterdam 2019
Mario Viviani - Designing apps for fire TV - Codemotion Amsterdam 2019
Codemotion
 
Ilona Demidenko - Conversational Sign Up - Codemotion Amsterdam 2019
Ilona Demidenko - Conversational Sign Up - Codemotion Amsterdam 2019Ilona Demidenko - Conversational Sign Up - Codemotion Amsterdam 2019
Ilona Demidenko - Conversational Sign Up - Codemotion Amsterdam 2019
Codemotion
 
Katie Koschland - Ready, steady, crash - Codemotion Amsterdam 2019
Katie Koschland - Ready, steady, crash - Codemotion Amsterdam 2019Katie Koschland - Ready, steady, crash - Codemotion Amsterdam 2019
Katie Koschland - Ready, steady, crash - Codemotion Amsterdam 2019
Codemotion
 
Matteo Antony Mistretta - React, the Inglorious way - Codemotion Amsterdam 2019
Matteo Antony Mistretta - React, the Inglorious way - Codemotion Amsterdam 2019Matteo Antony Mistretta - React, the Inglorious way - Codemotion Amsterdam 2019
Matteo Antony Mistretta - React, the Inglorious way - Codemotion Amsterdam 2019
Codemotion
 

Recently uploaded (20)

From native code gems to Java treasures with jextract
From native code gems to Java treasures with jextractFrom native code gems to Java treasures with jextract
From native code gems to Java treasures with jextract
Ana-Maria Mihalceanu
 
You Don't Need an AI Strategy, But You Do Need to Be Strategic About AI - Jes...
You Don't Need an AI Strategy, But You Do Need to Be Strategic About AI - Jes...You Don't Need an AI Strategy, But You Do Need to Be Strategic About AI - Jes...
You Don't Need an AI Strategy, But You Do Need to Be Strategic About AI - Jes...
All Things Open
 
New from BookNet Canada for 2025: BNC CataList - Tech Forum 2025
New from BookNet Canada for 2025: BNC CataList - Tech Forum 2025New from BookNet Canada for 2025: BNC CataList - Tech Forum 2025
New from BookNet Canada for 2025: BNC CataList - Tech Forum 2025
BookNet Canada
 
Comparative Analysis of Reasoning Techniques
Comparative Analysis of Reasoning TechniquesComparative Analysis of Reasoning Techniques
Comparative Analysis of Reasoning Techniques
HoussemEddineDEGHA
 
UiPath Automation Developer Associate Training Series 2025 - Session 8
UiPath Automation Developer Associate Training Series 2025 - Session 8UiPath Automation Developer Associate Training Series 2025 - Session 8
UiPath Automation Developer Associate Training Series 2025 - Session 8
DianaGray10
 
From Strategy To Execution In Hypergrowth
From Strategy To Execution In HypergrowthFrom Strategy To Execution In Hypergrowth
From Strategy To Execution In Hypergrowth
Pete Nieminen
 
STARLINK-JIO-AIRTEL Security issues to Ponder
STARLINK-JIO-AIRTEL Security issues to PonderSTARLINK-JIO-AIRTEL Security issues to Ponder
STARLINK-JIO-AIRTEL Security issues to Ponder
anupriti
 
How to Optimize Your AWS Environment for Improved Cloud Performance
How to Optimize Your AWS Environment for Improved Cloud PerformanceHow to Optimize Your AWS Environment for Improved Cloud Performance
How to Optimize Your AWS Environment for Improved Cloud Performance
ThousandEyes
 
Scalable Multi-Agent AI with AutoGen by Udai
Scalable Multi-Agent AI with AutoGen by UdaiScalable Multi-Agent AI with AutoGen by Udai
Scalable Multi-Agent AI with AutoGen by Udai
Udaiappa Ramachandran
 
Leveraging Knowledge Graphs for RAG: A Smarter Approach to Contextual AI Appl...
Leveraging Knowledge Graphs for RAG: A Smarter Approach to Contextual AI Appl...Leveraging Knowledge Graphs for RAG: A Smarter Approach to Contextual AI Appl...
Leveraging Knowledge Graphs for RAG: A Smarter Approach to Contextual AI Appl...
All Things Open
 
Leveraging Pre-Trained Transformer Models for Protein Function Prediction - T...
Leveraging Pre-Trained Transformer Models for Protein Function Prediction - T...Leveraging Pre-Trained Transformer Models for Protein Function Prediction - T...
Leveraging Pre-Trained Transformer Models for Protein Function Prediction - T...
All Things Open
 
Windows Client Privilege Escalation-Shared.pptx
Windows Client Privilege Escalation-Shared.pptxWindows Client Privilege Escalation-Shared.pptx
Windows Client Privilege Escalation-Shared.pptx
Oddvar Moe
 
Packaging your App for AppExchange – Managed Vs Unmanaged.pptx
Packaging your App for AppExchange – Managed Vs Unmanaged.pptxPackaging your App for AppExchange – Managed Vs Unmanaged.pptx
Packaging your App for AppExchange – Managed Vs Unmanaged.pptx
mohayyudin7826
 
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptxRBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
quinlan4
 
Making GenAI Work: A structured approach to implementation
Making GenAI Work: A structured approach to implementationMaking GenAI Work: A structured approach to implementation
Making GenAI Work: A structured approach to implementation
Jeffrey Funk
 
The Best of Both Worlds: Hybrid Clustering with Delta Lake
The Best of Both Worlds: Hybrid Clustering with Delta LakeThe Best of Both Worlds: Hybrid Clustering with Delta Lake
The Best of Both Worlds: Hybrid Clustering with Delta Lake
carlyakerly1
 
SAP Business Data Cloud: Was die neue SAP-Lösung für Unternehmen und ihre Dat...
SAP Business Data Cloud: Was die neue SAP-Lösung für Unternehmen und ihre Dat...SAP Business Data Cloud: Was die neue SAP-Lösung für Unternehmen und ihre Dat...
SAP Business Data Cloud: Was die neue SAP-Lösung für Unternehmen und ihre Dat...
IBsolution GmbH
 
I am afraid of no test! The power of BDD
I am afraid of no test! The power of BDDI am afraid of no test! The power of BDD
I am afraid of no test! The power of BDD
Ortus Solutions, Corp
 
Gen AI: AI Agents - Making LLMs work together in an organized way - Brent Las...
Gen AI: AI Agents - Making LLMs work together in an organized way - Brent Las...Gen AI: AI Agents - Making LLMs work together in an organized way - Brent Las...
Gen AI: AI Agents - Making LLMs work together in an organized way - Brent Las...
All Things Open
 
DON’T PANIC: AI IS COMING – The Hitchhiker’s Guide to AI - Mark Hinkle, Perip...
DON’T PANIC: AI IS COMING – The Hitchhiker’s Guide to AI - Mark Hinkle, Perip...DON’T PANIC: AI IS COMING – The Hitchhiker’s Guide to AI - Mark Hinkle, Perip...
DON’T PANIC: AI IS COMING – The Hitchhiker’s Guide to AI - Mark Hinkle, Perip...
All Things Open
 
From native code gems to Java treasures with jextract
From native code gems to Java treasures with jextractFrom native code gems to Java treasures with jextract
From native code gems to Java treasures with jextract
Ana-Maria Mihalceanu
 
You Don't Need an AI Strategy, But You Do Need to Be Strategic About AI - Jes...
You Don't Need an AI Strategy, But You Do Need to Be Strategic About AI - Jes...You Don't Need an AI Strategy, But You Do Need to Be Strategic About AI - Jes...
You Don't Need an AI Strategy, But You Do Need to Be Strategic About AI - Jes...
All Things Open
 
New from BookNet Canada for 2025: BNC CataList - Tech Forum 2025
New from BookNet Canada for 2025: BNC CataList - Tech Forum 2025New from BookNet Canada for 2025: BNC CataList - Tech Forum 2025
New from BookNet Canada for 2025: BNC CataList - Tech Forum 2025
BookNet Canada
 
Comparative Analysis of Reasoning Techniques
Comparative Analysis of Reasoning TechniquesComparative Analysis of Reasoning Techniques
Comparative Analysis of Reasoning Techniques
HoussemEddineDEGHA
 
UiPath Automation Developer Associate Training Series 2025 - Session 8
UiPath Automation Developer Associate Training Series 2025 - Session 8UiPath Automation Developer Associate Training Series 2025 - Session 8
UiPath Automation Developer Associate Training Series 2025 - Session 8
DianaGray10
 
From Strategy To Execution In Hypergrowth
From Strategy To Execution In HypergrowthFrom Strategy To Execution In Hypergrowth
From Strategy To Execution In Hypergrowth
Pete Nieminen
 
STARLINK-JIO-AIRTEL Security issues to Ponder
STARLINK-JIO-AIRTEL Security issues to PonderSTARLINK-JIO-AIRTEL Security issues to Ponder
STARLINK-JIO-AIRTEL Security issues to Ponder
anupriti
 
How to Optimize Your AWS Environment for Improved Cloud Performance
How to Optimize Your AWS Environment for Improved Cloud PerformanceHow to Optimize Your AWS Environment for Improved Cloud Performance
How to Optimize Your AWS Environment for Improved Cloud Performance
ThousandEyes
 
Scalable Multi-Agent AI with AutoGen by Udai
Scalable Multi-Agent AI with AutoGen by UdaiScalable Multi-Agent AI with AutoGen by Udai
Scalable Multi-Agent AI with AutoGen by Udai
Udaiappa Ramachandran
 
Leveraging Knowledge Graphs for RAG: A Smarter Approach to Contextual AI Appl...
Leveraging Knowledge Graphs for RAG: A Smarter Approach to Contextual AI Appl...Leveraging Knowledge Graphs for RAG: A Smarter Approach to Contextual AI Appl...
Leveraging Knowledge Graphs for RAG: A Smarter Approach to Contextual AI Appl...
All Things Open
 
Leveraging Pre-Trained Transformer Models for Protein Function Prediction - T...
Leveraging Pre-Trained Transformer Models for Protein Function Prediction - T...Leveraging Pre-Trained Transformer Models for Protein Function Prediction - T...
Leveraging Pre-Trained Transformer Models for Protein Function Prediction - T...
All Things Open
 
Windows Client Privilege Escalation-Shared.pptx
Windows Client Privilege Escalation-Shared.pptxWindows Client Privilege Escalation-Shared.pptx
Windows Client Privilege Escalation-Shared.pptx
Oddvar Moe
 
Packaging your App for AppExchange – Managed Vs Unmanaged.pptx
Packaging your App for AppExchange – Managed Vs Unmanaged.pptxPackaging your App for AppExchange – Managed Vs Unmanaged.pptx
Packaging your App for AppExchange – Managed Vs Unmanaged.pptx
mohayyudin7826
 
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptxRBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
quinlan4
 
Making GenAI Work: A structured approach to implementation
Making GenAI Work: A structured approach to implementationMaking GenAI Work: A structured approach to implementation
Making GenAI Work: A structured approach to implementation
Jeffrey Funk
 
The Best of Both Worlds: Hybrid Clustering with Delta Lake
The Best of Both Worlds: Hybrid Clustering with Delta LakeThe Best of Both Worlds: Hybrid Clustering with Delta Lake
The Best of Both Worlds: Hybrid Clustering with Delta Lake
carlyakerly1
 
SAP Business Data Cloud: Was die neue SAP-Lösung für Unternehmen und ihre Dat...
SAP Business Data Cloud: Was die neue SAP-Lösung für Unternehmen und ihre Dat...SAP Business Data Cloud: Was die neue SAP-Lösung für Unternehmen und ihre Dat...
SAP Business Data Cloud: Was die neue SAP-Lösung für Unternehmen und ihre Dat...
IBsolution GmbH
 
I am afraid of no test! The power of BDD
I am afraid of no test! The power of BDDI am afraid of no test! The power of BDD
I am afraid of no test! The power of BDD
Ortus Solutions, Corp
 
Gen AI: AI Agents - Making LLMs work together in an organized way - Brent Las...
Gen AI: AI Agents - Making LLMs work together in an organized way - Brent Las...Gen AI: AI Agents - Making LLMs work together in an organized way - Brent Las...
Gen AI: AI Agents - Making LLMs work together in an organized way - Brent Las...
All Things Open
 
DON’T PANIC: AI IS COMING – The Hitchhiker’s Guide to AI - Mark Hinkle, Perip...
DON’T PANIC: AI IS COMING – The Hitchhiker’s Guide to AI - Mark Hinkle, Perip...DON’T PANIC: AI IS COMING – The Hitchhiker’s Guide to AI - Mark Hinkle, Perip...
DON’T PANIC: AI IS COMING – The Hitchhiker’s Guide to AI - Mark Hinkle, Perip...
All Things Open
 

Managed Containers, Open Source, and Google - Riccardo Carlesso - Codemotion Milan 2014