SlideShare une entreprise Scribd logo
1  sur  59
Télécharger pour lire hors ligne
© IBM Corporation 1
OpenStack, Docker, Cloud Foundry
How does the leading open source triumvirate
come together?
Animesh Singh
Manuel Silveyra
Daniel Krook
© IBM Corporation 2
The leading open source triumvirate
@AnimeshSingh @DanielKrook@Manuel_Silveyra
© IBM Corporation 3
In the top 5 of open source cloud projects
http://analystpov.com/cloud-computing/top-15-open-source-cloud-computing-technologies-2014-24727
© IBM Corporation 4
IBM Cloud and open technologies
At all tiers, IBM is committed to building its cloud on an open cloud architecture
	
  	
  
OAuth	
  
OSLC Infrastructure
as a Service
Platform
as a Service
Software
as a Service
API
Economy
Cloud
operating
environment
Software-
defined
environment
TOSCA
http://www.ibm.com/developerworks/cloud/library/cl-open-architecture/
Products and services built on open source and open standards benefit IBM and customers
© IBM Corporation 5
IBM Cloud and open technologies
At all tiers, IBM is committed to building its cloud on an open cloud architecture
	
  	
  
OAuth	
  
OSLC Infrastructure
as a Service
Platform
as a Service
Software
as a Service
API
Economy
TOSCA
http://www.ibm.com/developerworks/cloud/library/cl-open-architecture/
Products and services built on open source and open standards benefit IBM and customers
© IBM Corporation 6
Agenda
•  OpenStack overview
•  Cloud Foundry introduction and architectural overview
•  Docker introduction and architectural overview
•  How Cloud Foundry and OpenStack intersect
•  How OpenStack and Docker intersect
•  How Cloud Foundry and Docker intersect
•  How they all come together
© IBM Corporation 7
© IBM Corporation 8
OpenStack overview
Collection of well integrated IaaS modules for compute, network, and storage
•  Compute (Nova)
•  Networking (Neutron)
•  Object Storage (Swift)
•  Block Storage (Cinder)
•  Identity(Keystone)
•  Image Service (Glance)
•  Dashboard (Horizon)
OpenStack is the ubiquitous open source cloud computing
platform for public and private clouds, regardless of size.
© IBM Corporation 9
© IBM Corporation 10
Cloud Foundry overview
Open Cloud Platform
•  There is an increasing appetite for cloud-based mobile, social
and analytics applications from line-of-business executives -
drives the need for a more open cloud development platform.
Meets Developers’ Needs
•  Focus on app development, not provisioning VMs, databases,
messaging servers, etc.
•  Agile development model
•  Deploy and scale in seconds
Compelling Community
•  Cloud Foundry has an emerging ecosystem as well as a
mature set of capabilities and robustness
Cloud Foundry is the
industry’s Open PaaS and
provides a choice of
clouds, frameworks, and
application services.
© IBM Corporation 11
Cloud Foundry architecture
•  The platform is abstracted as a set of large-scale
distributed services.
•  It uses Cloud Foundry BOSH to operate the
underlying infrastructure from the IaaS providers.
•  Components are dynamically discoverable and
loosely coupled.
•  Health is exposed through HTTP endpoints so
agents can collect state information and act on it.
© IBM Corporation 12
© IBM Corporation 13
Docker overview
Build Ship Run
Application portability
•  Run Docker containers unchanged in any environment, on any infrastructure
Organizational speed & agility via separation of concerns
•  Development owns the “inside” of the container – the app and its dependencies
•  Operations owns the “outside” of the container – host, cluster, and policies for deployment
•  Each team can add their part of the image (e.g. OS, configuration, security, monitoring tools, etc.)
Service reliability
•  Faithful representation of app with encapsulated dependencies
Docker is an open platform for building distributed
applications for developers and operators.
© IBM Corporation 14
Docker architecture
•  Docker uses a client-server architecture.
•  The Docker client talks to the Docker daemon,
which does the heavy lifting of building,
running, and distributing your Docker
containers.
•  Both the Docker client and the daemon can run
on the same system, or you can connect a
Docker client to a remote Docker daemon.
•  The Docker client and daemon communicate
via sockets or through a RESTful API.
© IBM Corporation 15
Docker containers
•  A Docker container consists of an operating system,
user-added files, and metadata – Basically a way to run
mini operating systems in your host operating system
with strong guarantees of isolation
•  The Docker image is read-only. When Docker runs a
container from an image, it adds a read-write layer on top
of the image (using a union file system) in which your
application can then run.
•  Underlying Technology : Written in Go and makes use of
several Linux kernel features
•  Namespaces - pid, net, mnt, ipc, etc.
•  Control Groups - cgroups (memory, cpu, blkio, devices)
•  Union File Systems - UnionFS (AUFS, btrfs, vfs)
•  Container Format - libcontainer or LXC
© IBM Corporation 16
Docker containers vs. virtual machines
Virtual Machines
•  Each virtualized application includes not only the application - which may be
only 10s of MB - and the necessary binaries and libraries, but also an entire
guest operating system - which may weigh 10s of GB.
Docker
•  The Docker Engine container comprises just the application and its
dependencies. It runs as an isolated process in userspace on the host
operating system, sharing the kernel with other containers
Compared with Hypervisors, Docker which is OS-Level Virtualization:
•  CPU Performance => native performance
•  Memory Performance => few % for (optional) accounting
•  Network Performance => small overhead; can be optimized to zero overhead
•  creating a new base image takes a few seconds (copy-on-write)
•  apps in different containers can share the same binaries / libs
© IBM Corporation 17
© IBM Corporation 18
Cloud Foundry and OpenStack integration
Cloud	
  Provider	
  Interface	
  
Cloud
DEA	
  Pool	
  	
  	
  Apps	
  
Build	
  Packs	
  
Service	
  Nodes	
  
Cloud	
  Controller	
  
Service	
  Connector	
  
Messaging	
  
Health	
  Manager	
  
UAA	
  
Router	
  
PaaS
IaaS
Integration BOSH	
  
© IBM Corporation 19
BOSH deploys Cloud Foundry resources to OpenStack
Deployment Manifest
•  Release name/version
•  # VMs, job params
•  Stemcells to use
Stemcell
•  Base OS
•  BOSH agent
Release
•  Name
•  Software packages
•  Config templates
•  Scripts
BOSH
Cloud Foundry
Virtual Machine
•  Configuration
•  Software Packages
Virtual Machine
•  Configuration
•  Software Packages
Virtual Machine
•  Configuration
•  Software Packages
Virtual Machine
•  Configuration
•  Software packages
© IBM Corporation 20
Sample manifest snippet for a BOSH deployed component
© IBM Corporation 21
© IBM Corporation 22
Docker in OpenStack via the Nova Driver and Glance
•  Docker is hypervisor driver for OpenStack Nova Compute.
It was introduced with the Havana release, but lives out-of-
tree for Icehouse, Juno, and Kilo.
•  The Nova driver embeds a tiny HTTP client which talks
with the Docker internal REST API through a Unix socket.
It uses the HTTP API to control containers and fetch
information about them.
•  The driver will fetch images from the OpenStack Image
Service (Glance) and load them into the Docker file
system. Images may be placed in Glance by exporting
them from Docker using the 'docker save' command.
•  Well integrated with Horizon UI.
© IBM Corporation 23
Heat template plugin for Docker in OpenStack
•  Not a replacement for Docker Nova Driver.
•  OpenStack Orchestration (Heat) is a solution for providing
orchestration of resources inside OpenStack clouds.
•  Using the Heat plugin, users may deploy and manage Docker
Containers on top of traditional OpenStack deployments, making
it compatible with existing OpenStack clouds.
•  It allows to use the whole Docker API from a Heat template, and
makes linking of containers easier.
•  In the example here, multiple containers may be created and
linked together by simply adding more sections like
“my_docker_container”. They’re not constrained by the
OpenStack APIs and may leverage the full power of the Docker
Remote API.
© IBM Corporation 24
User interface integration with Horizon
Horizon UI > Orchestration > Stacks Configure the Stack
(parameters of the Heat template)
© IBM Corporation 25
OpenStack Kolla runs OpenStack itself in Containers
•  Containers used as building blocks for an OpenStack
control plane (compute, storage, network, and others)
to simplify the operational experience
•  Containerized services become independently
manageable atomic microservices
•  Container sets group related OpenStack services
•  Database control
•  Messaging control
•  High availability control
•  OpenStack interface
•  OpenStack control
•  OpenStack compute operation
•  OpenStack network operation
•  OpenStack storage operation
© IBM Corporation 26
OpenStack Magnum runs Containers on OpenStack in VMs
•  Magnum is a Platform-as-a-Service (or Containers-
as-a-Service) solution for OpenStack. Joined March
2015. Not just Docker images/containers.
•  Magnum combines OpenStack with a pluggable
container orchestration engine of your choice
(Kubernetes or Docker Swarm so far)
•  Users leverage the same cloud account and
credentials they use to provision other cloud
resources, such as Compute, Storage, Network.
•  Different users and project groups are properly
isolated from each other so that they have no visibility
into, or access to, other containers in the system
© IBM Corporation 27
© IBM Corporation 28
Cloud Foundry developer experience
Eclipse
IDE
CLI
Browser
	
  	
  cf	
  push	
  
hBp	
  	
  	
  
© IBM Corporation 29
Cloud Foundry runtime architecture
Eclipse
IDE
CLI
Browser
	
  	
  cf	
  push	
  
hBp	
  	
  	
  
Cloud	
  Controller	
  
(API)	
  
	
  
Router	
  
DEA	
  Pool	
  	
  	
  
DEA	
  Pool	
  	
  	
  
VM	
  Pool	
  	
  	
  
Apps	
  
Apps	
  
Apps	
  
Apps	
  
© IBM Corporation 30
Cloud Foundry runtime architecture
Eclipse
IDE
CLI
Browser
	
  	
  cf	
  push	
  
hBp	
  	
  	
  
Cloud	
  Controller	
  
(API)	
  
	
  
Router	
  
DEA	
  Pool	
  	
  	
  
DEA	
  Pool	
  	
  	
  Droplet	
  ExecuGon	
  	
  
Agent	
  (DEA)	
  	
  VM	
  Pool	
  	
  	
  
NATS	
  
(Message	
  bus)	
  
Health	
  
Manager	
  
© IBM Corporation 31
Warden Containers in Cloud Foundry architecture
Eclipse
IDE
CLI
Browser
	
  	
  cf	
  push	
  
hBp	
  	
  	
  
Cloud	
  Controller	
  
(API)	
  
	
  
Router	
  
DEA	
  Pool	
  	
  	
  
DEA	
  Pool	
  	
  	
  Droplet	
  ExecuGon	
  	
  
Agent	
  (DEA)	
  	
  VM	
  Pool	
  	
  	
  
NATS	
  
(Message	
  bus)	
  
Health	
  
Manager	
  
Warden Server
Container
Manager
© IBM Corporation 32
Cloud Foundry services architecture – Docker service
Eclipse
IDE
CLI
Browser
	
  	
  cf	
  create-­‐service	
  
Cloud	
  Controller	
  
(API)	
  
Docker	
  
Service	
  
Broker	
  
Provision Instance
(PUT /v2/service
instances/:id)
Create Binding
(PUT /v2/
service_instances/:id
Fetch Catalog
(GET /v2/catalog
DEA	
  Pool	
  	
  	
  
Docker Backend
Docker instance
Docker instance
DEA	
  Pool	
  	
  	
  
DEA Pool
App
App
Docker instance
App
	
  	
  cf	
  bind-­‐service	
  
© IBM Corporation 33
Current Cloud Foundry architecture is being rewritten
Cloud	
  Controller	
  
(API)	
  
	
  
Router	
  
DEA	
  Pool	
  	
  	
  
DEA	
  Pool	
  	
  	
  Droplet	
  ExecuGon	
  	
  
Agent	
  (DEA)	
  	
  VM	
  Pool	
  	
  	
  
NATS	
  
(Message	
  bus)	
  
Health	
  
Manager	
  
Warden Server
Container
Manager
© IBM Corporation 34
Cloud	
  Controller	
  
(API)	
  
	
  
Router	
  
DEA	
  Pool	
  	
  	
  
DEA	
  Pool	
  	
  	
  Droplet	
  ExecuGon	
  	
  
Agent	
  (DEA)	
  	
  VM	
  Pool	
  	
  	
  
NATS	
  
(Message	
  bus)	
  
Health	
  
Manager	
  
Warden Server
Container
Manager
What’s being rewritten
© IBM Corporation 35
Why rewrite
Cloud	
  Controller	
  
(API)	
  
	
  
Router	
  
•  Tight Coupling
Between CC and rest of the components
Between Warden Server and backend
•  Triangular Dependencies
Between CC, Health Monitor and DEAs
•  Domain Specific
Apps specific
Hard to extend to new domains (e.g. cron-like jobs)
•  Platform Specific
Custom Linux containers only – Warden containers
© IBM Corporation 36
Rewrite Goal : Run loosely coupled one off tasks and LRPs….
Executor Pool
Run
Tasks!
Launch
Long Running
Processes!
Run Task!
Launch LRP!
© IBM Corporation 37
..using generic recipes across various container backends
Run Task!
Launch LRP!
Executor Pool
Run
Tasks!
Launch
LRPs!
Rep
Exec
Recipes!
Exec Garden
Manage
Containers!
Garden
Backend
Run
Containers!
© IBM Corporation 38
Introducing Diego
Brain
BBS
CELLS
Cloud Foundry Diego
Diego is a distributed
system that orchestrates
containerized workloads
GARDEN
Garden
Garden defines an interface to
be implemented by container-
runners, and runs Linux,
Widnows and Docker
containers
BBS
An up-to-date cache of the
state of the Diego cluster
(including a picture-in-time
of all desired LRPs, running
LRP instances, and inflight
Tasks) is maintained in the
BBS (Bulletin Board
System/Store).
Brain
Schedule Deployments
using Auction, and Monitor
the health
© IBM Corporation 39
Diego
Cloud Foundry Diego
Diego is a distributed
system that orchestrates
containerized workloads
https://github.com/cloudfoundry-incubator/diego-design-notes
© IBM Corporation 40
Lattice
Doppler/	
  
Traffic	
  Controller	
  
Router	
   Router	
  
EmiBer	
  
AWS
GAE
© IBM Corporation 41
CC	
  	
  
Bridge	
  
Cloud Foundry V3
Cloud	
  	
  
Controller	
  
(API)	
  
	
  
Router	
   Router	
  
EmiBer	
  
Doppler/	
  
Traffic	
  Controller	
  
Run App!
Stager
Stage App!
App Mgr
Run Task!
Launch LRP!
© IBM Corporation 42
CC	
  	
  
Bridge	
  
Cloud Foundry V3
Cloud	
  	
  
Controller	
  
(API)	
  
	
  
Doppler/	
  
Traffic	
  Controller	
  
Run App!
Stager
Stage App!
App Mgr
Run Task!
Launch LRP!
Eclipse
IDE
CLI
Browser hBp	
  	
  	
  
	
  	
  cf	
  push	
  
	
  	
  cf	
  push	
  -­‐docker	
  
	
  	
  cf	
  push	
  –stack	
  	
  	
  	
  	
  	
  
	
  	
  	
  windows	
  
Router	
   Router	
  
EmiBer	
  
© IBM Corporation 43
Same Cloud Foundry developer experience – with added
features
Eclipse
IDE
CLI
Browser hBp	
  	
  	
  
	
  	
  cf	
  push	
  
	
  	
  cf	
  push	
  -­‐docker	
  
	
  	
  cf	
  push	
  –stack	
  	
  	
  	
  	
  	
  
	
  	
  	
  windows	
  
© IBM Corporation 44
© IBM Corporation 45
What’s possible now
Cloud
DEA	
  Pool	
  	
  	
  Apps	
  
Build	
  Packs	
  
Service	
  Nodes	
  
Cloud	
  Controller	
  
Service	
  Connector	
  
Messaging	
  
Health	
  Manager	
  
UAA	
  
Router	
  
PaaS
IaaS
Integration
BOSH	
  
Docker
Service
Broker
© IBM Corporation 46
What’s possible now
Cloud
DEA	
  Pool	
  	
  	
  Apps	
  
Build	
  Packs	
  
Cloud	
  Controller	
  
Service	
  Connector	
  
Messaging	
  
Health	
  Manager	
  
UAA	
  
Router	
  
Docker	
  Service	
  Nodes	
  
PaaS
IaaS
Integration
BOSH	
  
Docker
Service
Broker
© IBM Corporation 47
What’s coming next
Cloud
DIEGO	
  Pool	
  	
  	
  
Apps	
  
Docker	
  Files/Build	
  Packs	
  
Cloud	
  Controller	
  
Service	
  Connector	
  
Messaging	
  
UAA	
  
Router	
  
Docker	
  Service	
  Nodes	
  
PaaS
IaaS
Integration
BOSH	
  
Docker
Service
Broker
© IBM Corporation 48
What’s coming next
Cloud
DIEGO	
  Pool	
  	
  	
  
Apps	
  
Docker	
  Files/Build	
  Packs	
  
Cloud	
  Controller	
  
Service	
  Connector	
  
Messaging	
  
UAA	
  
Router	
  
Docker	
  Service	
  Nodes	
  
PaaS
IaaS
Integration
BOSH	
  
Docker
Service
Broker
© IBM Corporation 49
What’s possible future
Cloud
DIEGO	
  Pool	
  	
  	
  
Apps	
  
Docker	
  Files/Build	
  Packs	
  
Cloud	
  Controller	
  
Service	
  Connector	
  
Messaging	
  
UAA	
  
Router	
  
Docker	
  Service	
  Nodes	
  
PaaS
IaaS
Integration
BOSH
Docker
Service
Broker
© IBM Corporation 50
IBM Bluemix
•  IBM Platform as a
Services offering
•  IBM and partner cloud
services
•  Integrated DevOps with
both Browser and
Eclipse-based tools
Services
Lifecycle
Management
IDS
Application
Runtime
Runtimes &
Frameworks
Middleware Application Operational Mobile ExternalData
Node Java Ruby Worklight
WebSphere
Liberty
Eclipse IDE
Application
Composition
Environment
Create & Manage Services
Test/Run Test/Run
Explore
Services
Explore
Services
IBM Bluemix
Check In Code Check In Code
Web IDE
(Eclipse Orion)
© IBM Corporation 51
IBM Bluemix
© IBM Corporation 52
Object Storage Service in IBM Bluemix
© IBM Corporation 53
Container Service in IBM Bluemix
© IBM Corporation 54
Virtual Machine Service in IBM Bluemix
© IBM Corporation 55
IBM “Open by design” projects and products
Infrastructure-as-a-Service Features
OpenStack Self-serve virtual machines, storage, networking, and other infrastructure services
Docker Linux container management with host, cluster, and policy management
Platform-as-a-Service Features
Cloud Foundry Lifecycle managed application and service management
Docker Application and service container encapsulation and management
IBM products Features
Bluemix (instant runtimes) Hosted Cloud Foundry based PaaS to manage scalable application and services lifecycle
Bluemix (containers) Hosted OpenStack-based environment for build, deployment of Docker containers
Bluemix (virtual machines) Hosted OpenStack-based virtual machine environment
Bluemix Local On premises version of Cloud Foundry and OpenStack based Bluemix
Cloud Manager with OpenStack IBM branded distribution of OpenStack
Cloud Orchestrator IBM branded distribution of OpenStack with patterns and automation
Cloud OpenStack Services Hosted dedicated OpenStack environment
Object Storage and Elastic Storage Easily consumable storage services based on OpenStack components
Docker Hub Enterprise IBM resold and integrated version of a Docker image registry
© IBM Corporation 56
Agenda
•  OpenStack overview
•  Cloud Foundry introduction and architectural overview
•  Docker introduction and architectural overview
•  How Cloud Foundry and OpenStack intersect
•  How OpenStack and Docker intersect
•  How Cloud Foundry and Docker intersect
•  How they all come together
© IBM Corporation 57
Questions? Reach out at the following Twitter handles
@AnimeshSingh @DanielKrook@Manuel_Silveyra
Meet the IBM Team at these sessions
Monday, May 18th
12:05 pm - A Conversation with Cinder Developers - Jay Bryant
4:40 pm - Tales From the Gate: How Debugging the Gate Helps Your Enterprise
- Matt Riedemann
4:40 pm - From Archive to Insight: Debunking Myths of Analytics on Object
Stores - Dean Hildebrand, Simon Lorenz
5:30 pm - OpenStack, Docker, and Cloud Foundry - How does the Leading Open
Source Triumvirate Come Together - Animesh Singh, Daniel Krook, Manuel
Silveyra, Kalonji Bankole
Tuesday, May 19th
11:15 am How to Configure your Cloud and Tempest for Interoperability Testing
Catherine Diep
12:05 pm - Past, Present and Future of Fibre Channel in OpenStack - Jay Bryant
2:00 pm - Building a Production Grade PaaS platform like Bluemix on
OpenStack, leveraging Container based scalable services - Animesh Singh,
James Busche
2:00 pm - Standing Tall in the Room - Sponsored by the Women of OpenStack -
Radha Ratnaparkhi
5:30 pm New Advances in Federated Identity and Federated Service Provider
Support for OpenStack Clouds - Brad Topol, Steve Martinelli
Wednesday, May 20th
9:50 am - Network Connectivity in a Hybrid OpenStack Cloud - John Kasperski,
Vinit Jain
1:50 pm - Leveraging open source tools to gain insight into OpenStack Swift -
Dmitry Sotnikov, Michael Factor
1:50 pm - Keystone advanced authentication methods - Steve Martinelli, Henry
Nash
2:40 pm - Helping Telcos go Green and save OpEx via Policy - Dilip
Krishnaswamy
Thursday, May 21st
9:00 am - Big Data Analytics and Docker: The Thrilla in Manila - Bill Owen,
Dean Hildebrand, Michael Hines, Nilesh Bhosale
9:50 am - Role of NFV Research in Open Source and Open Standards - Dilip
Krishnaswamy
1:30 pm - On-demand Disaster Recovery (DR) service enablement through
Software Defined Environments under hybrid clouds - Venkata Jagana,
Ramesh Palakodeti, CV Venugopal, Mike Williams, Ann Corrao
1:30pm - OpenStack Networking: It's time to talk Performance - Bengi Karacali,
John Tracey,Mohammad Banikazemi, George Almasi
4:10 pm - Beyond the Horizon: Innovating and Customizing Horizon using
AngularJS - Cindy Lu, Thai Tran
© IBM Corporation 59
http://www.meetup.com/OpenStack http://www.meetup.com/CloudFoundry
Tomorrow – 2PM : Building a Production Grade PaaS Platform like Bluemix on OpenStack
Apps
@AnimeshSingh @jim1348b @Bodine_Andrew

Contenu connexe

Tendances

Optimizing Cloud Foundry and OpenStack for large scale deployments
Optimizing Cloud Foundry and OpenStack for large scale deploymentsOptimizing Cloud Foundry and OpenStack for large scale deployments
Optimizing Cloud Foundry and OpenStack for large scale deploymentsAnimesh Singh
 
Cloud Foundry Anniversary: Technical Slides
Cloud Foundry Anniversary: Technical Slides Cloud Foundry Anniversary: Technical Slides
Cloud Foundry Anniversary: Technical Slides marklucovsky
 
WebSphere Application Server Liberty Profile and Docker
WebSphere Application Server Liberty Profile and DockerWebSphere Application Server Liberty Profile and Docker
WebSphere Application Server Liberty Profile and DockerDavid Currie
 
WebSphere Application Server Liberty Profile and Docker
WebSphere Application Server Liberty Profile and DockerWebSphere Application Server Liberty Profile and Docker
WebSphere Application Server Liberty Profile and DockerDavid Currie
 
Automated Lifecycle Management - CloudFoundry on OpenStack
Automated Lifecycle Management - CloudFoundry on OpenStackAutomated Lifecycle Management - CloudFoundry on OpenStack
Automated Lifecycle Management - CloudFoundry on OpenStackAnimesh Singh
 
Building a PaaS Platform like Bluemix on OpenStack
Building a PaaS Platform like Bluemix on OpenStackBuilding a PaaS Platform like Bluemix on OpenStack
Building a PaaS Platform like Bluemix on OpenStackAnimesh Singh
 
Cloud Foundry Diego: The New Cloud Runtime - CloudOpen Europe Talk 2015
Cloud Foundry Diego: The New Cloud Runtime - CloudOpen Europe Talk 2015Cloud Foundry Diego: The New Cloud Runtime - CloudOpen Europe Talk 2015
Cloud Foundry Diego: The New Cloud Runtime - CloudOpen Europe Talk 2015David Soul
 
IBM WebSphere Application Server traditional and Docker
IBM WebSphere Application Server traditional and DockerIBM WebSphere Application Server traditional and Docker
IBM WebSphere Application Server traditional and DockerDavid Currie
 
Developing Enterprise Applications for the Cloud, from Monolith to Microservices
Developing Enterprise Applications for the Cloud,from Monolith to MicroservicesDeveloping Enterprise Applications for the Cloud,from Monolith to Microservices
Developing Enterprise Applications for the Cloud, from Monolith to MicroservicesDavid Currie
 
Introduction to Platform-as-a-Service and Cloud Foundry
Introduction to Platform-as-a-Service and Cloud FoundryIntroduction to Platform-as-a-Service and Cloud Foundry
Introduction to Platform-as-a-Service and Cloud FoundryManuel Silveyra
 
Run your Java apps on Cloud Foundry
Run your Java apps on Cloud FoundryRun your Java apps on Cloud Foundry
Run your Java apps on Cloud FoundryAndy Piper
 
Altoros Cloud Foundry Training: hands-on workshop for DevOps, Architects and ...
Altoros Cloud Foundry Training: hands-on workshop for DevOps, Architects and ...Altoros Cloud Foundry Training: hands-on workshop for DevOps, Architects and ...
Altoros Cloud Foundry Training: hands-on workshop for DevOps, Architects and ...Manuel Garcia
 
WebSphere and Docker
WebSphere and DockerWebSphere and Docker
WebSphere and DockerDavid Currie
 
Introduction to Microservices and Cloud Native Application Architecture
Introduction to Microservices and Cloud Native Application ArchitectureIntroduction to Microservices and Cloud Native Application Architecture
Introduction to Microservices and Cloud Native Application ArchitectureDavid Currie
 
Cloud Foundry Introduction and Overview
Cloud Foundry Introduction and OverviewCloud Foundry Introduction and Overview
Cloud Foundry Introduction and OverviewAndy Piper
 
AAI-3218 Production Deployment Best Practices for WebSphere Liberty Profile
AAI-3218 Production Deployment Best Practices for WebSphere Liberty ProfileAAI-3218 Production Deployment Best Practices for WebSphere Liberty Profile
AAI-3218 Production Deployment Best Practices for WebSphere Liberty ProfileWASdev Community
 
Cloudfoundry architecture
Cloudfoundry architectureCloudfoundry architecture
Cloudfoundry architectureRamnivas Laddad
 

Tendances (20)

Optimizing Cloud Foundry and OpenStack for large scale deployments
Optimizing Cloud Foundry and OpenStack for large scale deploymentsOptimizing Cloud Foundry and OpenStack for large scale deployments
Optimizing Cloud Foundry and OpenStack for large scale deployments
 
Cloud Foundry Overview
Cloud Foundry OverviewCloud Foundry Overview
Cloud Foundry Overview
 
Cloud Foundry Anniversary: Technical Slides
Cloud Foundry Anniversary: Technical Slides Cloud Foundry Anniversary: Technical Slides
Cloud Foundry Anniversary: Technical Slides
 
WebSphere Application Server Liberty Profile and Docker
WebSphere Application Server Liberty Profile and DockerWebSphere Application Server Liberty Profile and Docker
WebSphere Application Server Liberty Profile and Docker
 
WebSphere Application Server Liberty Profile and Docker
WebSphere Application Server Liberty Profile and DockerWebSphere Application Server Liberty Profile and Docker
WebSphere Application Server Liberty Profile and Docker
 
Automated Lifecycle Management - CloudFoundry on OpenStack
Automated Lifecycle Management - CloudFoundry on OpenStackAutomated Lifecycle Management - CloudFoundry on OpenStack
Automated Lifecycle Management - CloudFoundry on OpenStack
 
Building a PaaS Platform like Bluemix on OpenStack
Building a PaaS Platform like Bluemix on OpenStackBuilding a PaaS Platform like Bluemix on OpenStack
Building a PaaS Platform like Bluemix on OpenStack
 
Cloud Foundry Diego: The New Cloud Runtime - CloudOpen Europe Talk 2015
Cloud Foundry Diego: The New Cloud Runtime - CloudOpen Europe Talk 2015Cloud Foundry Diego: The New Cloud Runtime - CloudOpen Europe Talk 2015
Cloud Foundry Diego: The New Cloud Runtime - CloudOpen Europe Talk 2015
 
IBM WebSphere Application Server traditional and Docker
IBM WebSphere Application Server traditional and DockerIBM WebSphere Application Server traditional and Docker
IBM WebSphere Application Server traditional and Docker
 
Developing Enterprise Applications for the Cloud, from Monolith to Microservices
Developing Enterprise Applications for the Cloud,from Monolith to MicroservicesDeveloping Enterprise Applications for the Cloud,from Monolith to Microservices
Developing Enterprise Applications for the Cloud, from Monolith to Microservices
 
Introduction to Platform-as-a-Service and Cloud Foundry
Introduction to Platform-as-a-Service and Cloud FoundryIntroduction to Platform-as-a-Service and Cloud Foundry
Introduction to Platform-as-a-Service and Cloud Foundry
 
Run your Java apps on Cloud Foundry
Run your Java apps on Cloud FoundryRun your Java apps on Cloud Foundry
Run your Java apps on Cloud Foundry
 
Altoros Cloud Foundry Training: hands-on workshop for DevOps, Architects and ...
Altoros Cloud Foundry Training: hands-on workshop for DevOps, Architects and ...Altoros Cloud Foundry Training: hands-on workshop for DevOps, Architects and ...
Altoros Cloud Foundry Training: hands-on workshop for DevOps, Architects and ...
 
Watson on bluemix
Watson on bluemixWatson on bluemix
Watson on bluemix
 
Cloud foundry
Cloud foundryCloud foundry
Cloud foundry
 
WebSphere and Docker
WebSphere and DockerWebSphere and Docker
WebSphere and Docker
 
Introduction to Microservices and Cloud Native Application Architecture
Introduction to Microservices and Cloud Native Application ArchitectureIntroduction to Microservices and Cloud Native Application Architecture
Introduction to Microservices and Cloud Native Application Architecture
 
Cloud Foundry Introduction and Overview
Cloud Foundry Introduction and OverviewCloud Foundry Introduction and Overview
Cloud Foundry Introduction and Overview
 
AAI-3218 Production Deployment Best Practices for WebSphere Liberty Profile
AAI-3218 Production Deployment Best Practices for WebSphere Liberty ProfileAAI-3218 Production Deployment Best Practices for WebSphere Liberty Profile
AAI-3218 Production Deployment Best Practices for WebSphere Liberty Profile
 
Cloudfoundry architecture
Cloudfoundry architectureCloudfoundry architecture
Cloudfoundry architecture
 

En vedette

Cloud Foundry Technical Overview
Cloud Foundry Technical OverviewCloud Foundry Technical Overview
Cloud Foundry Technical Overviewcornelia davis
 
Build Scalable Internet of Things Apps using Cloud Foundry, Bluemix & Cloudant
Build Scalable Internet of Things Apps using Cloud Foundry, Bluemix & CloudantBuild Scalable Internet of Things Apps using Cloud Foundry, Bluemix & Cloudant
Build Scalable Internet of Things Apps using Cloud Foundry, Bluemix & CloudantAnimesh Singh
 
Cloud Foundry vs Docker vs Kubernetes - http://bit.ly/2rzUM2U
Cloud Foundry vs Docker vs Kubernetes - http://bit.ly/2rzUM2UCloud Foundry vs Docker vs Kubernetes - http://bit.ly/2rzUM2U
Cloud Foundry vs Docker vs Kubernetes - http://bit.ly/2rzUM2USufyaan Kazi
 
Cloud foundry architecture and deep dive
Cloud foundry architecture and deep diveCloud foundry architecture and deep dive
Cloud foundry architecture and deep diveAnimesh Singh
 
How to build a Distributed Serverless Polyglot Microservices IoT Platform us...
How to build a Distributed Serverless Polyglot Microservices IoT Platform us...How to build a Distributed Serverless Polyglot Microservices IoT Platform us...
How to build a Distributed Serverless Polyglot Microservices IoT Platform us...Animesh Singh
 
Why Docker
Why DockerWhy Docker
Why DockerdotCloud
 
Docker introduction
Docker introductionDocker introduction
Docker introductiondotCloud
 
Docker 101: Introduction to Docker
Docker 101: Introduction to DockerDocker 101: Introduction to Docker
Docker 101: Introduction to DockerDocker, Inc.
 
OpenStack Introduction
OpenStack IntroductionOpenStack Introduction
OpenStack Introductionopenstackindia
 
Finding and-organizing Great Cloud Foundry User Groups
Finding and-organizing Great Cloud Foundry User GroupsFinding and-organizing Great Cloud Foundry User Groups
Finding and-organizing Great Cloud Foundry User GroupsAnimesh Singh
 
How to build an event-driven, polyglot serverless microservices framework on ...
How to build an event-driven, polyglot serverless microservices framework on ...How to build an event-driven, polyglot serverless microservices framework on ...
How to build an event-driven, polyglot serverless microservices framework on ...Animesh Singh
 
Cloud foundry presentation
Cloud foundry presentation Cloud foundry presentation
Cloud foundry presentation Vivek Parihar
 
Docker 101 - Nov 2016
Docker 101 - Nov 2016Docker 101 - Nov 2016
Docker 101 - Nov 2016Docker, Inc.
 
OpenStack Tutorial
OpenStack TutorialOpenStack Tutorial
OpenStack TutorialBret Piatt
 
OpenStack Architecture
OpenStack ArchitectureOpenStack Architecture
OpenStack ArchitectureMirantis
 
Introducing OpenStack for Beginners
Introducing OpenStack for Beginners Introducing OpenStack for Beginners
Introducing OpenStack for Beginners openstackindia
 
Continuous Delivery of Cloud Applications with Docker Containers and IBM Bluemix
Continuous Delivery of Cloud Applications with Docker Containers and IBM BluemixContinuous Delivery of Cloud Applications with Docker Containers and IBM Bluemix
Continuous Delivery of Cloud Applications with Docker Containers and IBM BluemixFlorian Georg
 
Docker with Cloud Service
Docker with Cloud ServiceDocker with Cloud Service
Docker with Cloud ServiceCaesar Chi
 

En vedette (20)

Cloud Foundry Technical Overview
Cloud Foundry Technical OverviewCloud Foundry Technical Overview
Cloud Foundry Technical Overview
 
Build Scalable Internet of Things Apps using Cloud Foundry, Bluemix & Cloudant
Build Scalable Internet of Things Apps using Cloud Foundry, Bluemix & CloudantBuild Scalable Internet of Things Apps using Cloud Foundry, Bluemix & Cloudant
Build Scalable Internet of Things Apps using Cloud Foundry, Bluemix & Cloudant
 
Cloud Foundry vs Docker vs Kubernetes - http://bit.ly/2rzUM2U
Cloud Foundry vs Docker vs Kubernetes - http://bit.ly/2rzUM2UCloud Foundry vs Docker vs Kubernetes - http://bit.ly/2rzUM2U
Cloud Foundry vs Docker vs Kubernetes - http://bit.ly/2rzUM2U
 
Cloud foundry architecture and deep dive
Cloud foundry architecture and deep diveCloud foundry architecture and deep dive
Cloud foundry architecture and deep dive
 
How to build a Distributed Serverless Polyglot Microservices IoT Platform us...
How to build a Distributed Serverless Polyglot Microservices IoT Platform us...How to build a Distributed Serverless Polyglot Microservices IoT Platform us...
How to build a Distributed Serverless Polyglot Microservices IoT Platform us...
 
Why Docker
Why DockerWhy Docker
Why Docker
 
Docker introduction
Docker introductionDocker introduction
Docker introduction
 
Docker 101: Introduction to Docker
Docker 101: Introduction to DockerDocker 101: Introduction to Docker
Docker 101: Introduction to Docker
 
OpenStack Introduction
OpenStack IntroductionOpenStack Introduction
OpenStack Introduction
 
OpenStack Framework Introduction
OpenStack Framework IntroductionOpenStack Framework Introduction
OpenStack Framework Introduction
 
Finding and-organizing Great Cloud Foundry User Groups
Finding and-organizing Great Cloud Foundry User GroupsFinding and-organizing Great Cloud Foundry User Groups
Finding and-organizing Great Cloud Foundry User Groups
 
How to build an event-driven, polyglot serverless microservices framework on ...
How to build an event-driven, polyglot serverless microservices framework on ...How to build an event-driven, polyglot serverless microservices framework on ...
How to build an event-driven, polyglot serverless microservices framework on ...
 
Cloud foundry presentation
Cloud foundry presentation Cloud foundry presentation
Cloud foundry presentation
 
Docker by Example - Basics
Docker by Example - Basics Docker by Example - Basics
Docker by Example - Basics
 
Docker 101 - Nov 2016
Docker 101 - Nov 2016Docker 101 - Nov 2016
Docker 101 - Nov 2016
 
OpenStack Tutorial
OpenStack TutorialOpenStack Tutorial
OpenStack Tutorial
 
OpenStack Architecture
OpenStack ArchitectureOpenStack Architecture
OpenStack Architecture
 
Introducing OpenStack for Beginners
Introducing OpenStack for Beginners Introducing OpenStack for Beginners
Introducing OpenStack for Beginners
 
Continuous Delivery of Cloud Applications with Docker Containers and IBM Bluemix
Continuous Delivery of Cloud Applications with Docker Containers and IBM BluemixContinuous Delivery of Cloud Applications with Docker Containers and IBM Bluemix
Continuous Delivery of Cloud Applications with Docker Containers and IBM Bluemix
 
Docker with Cloud Service
Docker with Cloud ServiceDocker with Cloud Service
Docker with Cloud Service
 

Similaire à Cloud foundry Docker Openstack - Leading Open Source Triumvirate

.docker : How to deploy Digital Experience in a container, drinking a cup of ...
.docker : How to deploy Digital Experience in a container, drinking a cup of ....docker : How to deploy Digital Experience in a container, drinking a cup of ...
.docker : How to deploy Digital Experience in a container, drinking a cup of ...ICON UK EVENTS Limited
 
docker : how to deploy Digital Experience in a container drinking a cup of co...
docker : how to deploy Digital Experience in a container drinking a cup of co...docker : how to deploy Digital Experience in a container drinking a cup of co...
docker : how to deploy Digital Experience in a container drinking a cup of co...Matteo Bisi
 
.docker : how to deploy Digital Experience in a container drinking a cup of c...
.docker : how to deploy Digital Experience in a container drinking a cup of c....docker : how to deploy Digital Experience in a container drinking a cup of c...
.docker : how to deploy Digital Experience in a container drinking a cup of c...Andrea Fontana
 
IBM Container Service Overview
IBM Container Service OverviewIBM Container Service Overview
IBM Container Service OverviewKyle Brown
 
Cloud Foundry and OpenStack: How They Fit - Cloud Expo 2014
Cloud Foundry and OpenStack: How They Fit - Cloud Expo 2014Cloud Foundry and OpenStack: How They Fit - Cloud Expo 2014
Cloud Foundry and OpenStack: How They Fit - Cloud Expo 2014Jason Anderson
 
Hitchhiker's guide to Cloud-Native Build Pipelines and Infrastructure as Code
Hitchhiker's guide to Cloud-Native Build Pipelines and Infrastructure as CodeHitchhiker's guide to Cloud-Native Build Pipelines and Infrastructure as Code
Hitchhiker's guide to Cloud-Native Build Pipelines and Infrastructure as CodeRobert van Mölken
 
Elevating your Continuous Delivery Strategy Above the Rolling Clouds
Elevating your Continuous Delivery Strategy Above the Rolling CloudsElevating your Continuous Delivery Strategy Above the Rolling Clouds
Elevating your Continuous Delivery Strategy Above the Rolling CloudsMichael Elder
 
The ABC of Docker: The Absolute Best Compendium of Docker
The ABC of Docker: The Absolute Best Compendium of DockerThe ABC of Docker: The Absolute Best Compendium of Docker
The ABC of Docker: The Absolute Best Compendium of DockerAniekan Akpaffiong
 
IBM Cloud UCC Talk, 22nd November 2017
IBM Cloud UCC Talk, 22nd November 2017IBM Cloud UCC Talk, 22nd November 2017
IBM Cloud UCC Talk, 22nd November 2017Michael O'Sullivan
 
Cloud Native Application
Cloud Native ApplicationCloud Native Application
Cloud Native ApplicationVMUG IT
 
Cloud Native Application @ VMUG.IT 20150529
Cloud Native Application @ VMUG.IT 20150529Cloud Native Application @ VMUG.IT 20150529
Cloud Native Application @ VMUG.IT 20150529VMUG IT
 
Introduction to Apache Mesos and DC/OS
Introduction to Apache Mesos and DC/OSIntroduction to Apache Mesos and DC/OS
Introduction to Apache Mesos and DC/OSSteve Wong
 
Understanding Docker and IBM Bluemix Container Service
Understanding Docker and IBM Bluemix Container ServiceUnderstanding Docker and IBM Bluemix Container Service
Understanding Docker and IBM Bluemix Container ServiceAndrew Ferrier
 
Kubernetes solutions
Kubernetes solutionsKubernetes solutions
Kubernetes solutionsEric Cattoir
 
DevOps and BigData Analytics
DevOps and BigData Analytics DevOps and BigData Analytics
DevOps and BigData Analytics sbbabu
 
Dockercon eu tour 2015 - Devoxx Casablanca
Dockercon eu tour 2015 - Devoxx CasablancaDockercon eu tour 2015 - Devoxx Casablanca
Dockercon eu tour 2015 - Devoxx CasablancaMichel Courtine
 

Similaire à Cloud foundry Docker Openstack - Leading Open Source Triumvirate (20)

.docker : How to deploy Digital Experience in a container, drinking a cup of ...
.docker : How to deploy Digital Experience in a container, drinking a cup of ....docker : How to deploy Digital Experience in a container, drinking a cup of ...
.docker : How to deploy Digital Experience in a container, drinking a cup of ...
 
docker : how to deploy Digital Experience in a container drinking a cup of co...
docker : how to deploy Digital Experience in a container drinking a cup of co...docker : how to deploy Digital Experience in a container drinking a cup of co...
docker : how to deploy Digital Experience in a container drinking a cup of co...
 
.docker : how to deploy Digital Experience in a container drinking a cup of c...
.docker : how to deploy Digital Experience in a container drinking a cup of c....docker : how to deploy Digital Experience in a container drinking a cup of c...
.docker : how to deploy Digital Experience in a container drinking a cup of c...
 
IBM Container Service Overview
IBM Container Service OverviewIBM Container Service Overview
IBM Container Service Overview
 
Cloud Foundry and OpenStack: How They Fit - Cloud Expo 2014
Cloud Foundry and OpenStack: How They Fit - Cloud Expo 2014Cloud Foundry and OpenStack: How They Fit - Cloud Expo 2014
Cloud Foundry and OpenStack: How They Fit - Cloud Expo 2014
 
Hitchhiker's guide to Cloud-Native Build Pipelines and Infrastructure as Code
Hitchhiker's guide to Cloud-Native Build Pipelines and Infrastructure as CodeHitchhiker's guide to Cloud-Native Build Pipelines and Infrastructure as Code
Hitchhiker's guide to Cloud-Native Build Pipelines and Infrastructure as Code
 
Docker slides
Docker slidesDocker slides
Docker slides
 
Elevating your Continuous Delivery Strategy Above the Rolling Clouds
Elevating your Continuous Delivery Strategy Above the Rolling CloudsElevating your Continuous Delivery Strategy Above the Rolling Clouds
Elevating your Continuous Delivery Strategy Above the Rolling Clouds
 
The ABC of Docker: The Absolute Best Compendium of Docker
The ABC of Docker: The Absolute Best Compendium of DockerThe ABC of Docker: The Absolute Best Compendium of Docker
The ABC of Docker: The Absolute Best Compendium of Docker
 
BRKSDN-2115
BRKSDN-2115 BRKSDN-2115
BRKSDN-2115
 
IBM Cloud UCC Talk, 22nd November 2017
IBM Cloud UCC Talk, 22nd November 2017IBM Cloud UCC Talk, 22nd November 2017
IBM Cloud UCC Talk, 22nd November 2017
 
Cloud Native Application
Cloud Native ApplicationCloud Native Application
Cloud Native Application
 
Cloud Native Application @ VMUG.IT 20150529
Cloud Native Application @ VMUG.IT 20150529Cloud Native Application @ VMUG.IT 20150529
Cloud Native Application @ VMUG.IT 20150529
 
Introduction to Apache Mesos and DC/OS
Introduction to Apache Mesos and DC/OSIntroduction to Apache Mesos and DC/OS
Introduction to Apache Mesos and DC/OS
 
Understanding Docker and IBM Bluemix Container Service
Understanding Docker and IBM Bluemix Container ServiceUnderstanding Docker and IBM Bluemix Container Service
Understanding Docker and IBM Bluemix Container Service
 
Kubernetes solutions
Kubernetes solutionsKubernetes solutions
Kubernetes solutions
 
DevOps and BigData Analytics
DevOps and BigData Analytics DevOps and BigData Analytics
DevOps and BigData Analytics
 
What is Docker?
What is Docker?What is Docker?
What is Docker?
 
Dockercon eu tour 2015 - Devoxx Casablanca
Dockercon eu tour 2015 - Devoxx CasablancaDockercon eu tour 2015 - Devoxx Casablanca
Dockercon eu tour 2015 - Devoxx Casablanca
 
PaaSVSContainerization
PaaSVSContainerizationPaaSVSContainerization
PaaSVSContainerization
 

Plus de Animesh Singh

Machine Learning Exchange (MLX)
Machine Learning Exchange (MLX)Machine Learning Exchange (MLX)
Machine Learning Exchange (MLX)Animesh Singh
 
KFServing Payload Logging for Trusted AI
KFServing Payload Logging for Trusted AIKFServing Payload Logging for Trusted AI
KFServing Payload Logging for Trusted AIAnimesh Singh
 
KFServing and Kubeflow Pipelines
KFServing and Kubeflow PipelinesKFServing and Kubeflow Pipelines
KFServing and Kubeflow PipelinesAnimesh Singh
 
Kubeflow Distributed Training and HPO
Kubeflow Distributed Training and HPOKubeflow Distributed Training and HPO
Kubeflow Distributed Training and HPOAnimesh Singh
 
Kubeflow Pipelines (with Tekton)
Kubeflow Pipelines (with Tekton)Kubeflow Pipelines (with Tekton)
Kubeflow Pipelines (with Tekton)Animesh Singh
 
KFServing - Serverless Model Inferencing
KFServing - Serverless Model InferencingKFServing - Serverless Model Inferencing
KFServing - Serverless Model InferencingAnimesh Singh
 
End to end Machine Learning using Kubeflow - Build, Train, Deploy and Manage
End to end Machine Learning using Kubeflow - Build, Train, Deploy and ManageEnd to end Machine Learning using Kubeflow - Build, Train, Deploy and Manage
End to end Machine Learning using Kubeflow - Build, Train, Deploy and ManageAnimesh Singh
 
Defend against adversarial AI using Adversarial Robustness Toolbox
Defend against adversarial AI using Adversarial Robustness Toolbox Defend against adversarial AI using Adversarial Robustness Toolbox
Defend against adversarial AI using Adversarial Robustness Toolbox Animesh Singh
 
Advanced Model Inferencing leveraging Kubeflow Serving, KNative and Istio
Advanced Model Inferencing leveraging Kubeflow Serving, KNative and IstioAdvanced Model Inferencing leveraging Kubeflow Serving, KNative and Istio
Advanced Model Inferencing leveraging Kubeflow Serving, KNative and IstioAnimesh Singh
 
Hybrid Cloud, Kubeflow and Tensorflow Extended [TFX]
Hybrid Cloud, Kubeflow and Tensorflow Extended [TFX]Hybrid Cloud, Kubeflow and Tensorflow Extended [TFX]
Hybrid Cloud, Kubeflow and Tensorflow Extended [TFX]Animesh Singh
 
Trusted, Transparent and Fair AI using Open Source
Trusted, Transparent and Fair AI using Open SourceTrusted, Transparent and Fair AI using Open Source
Trusted, Transparent and Fair AI using Open SourceAnimesh Singh
 
AIF360 - Trusted and Fair AI
AIF360 - Trusted and Fair AIAIF360 - Trusted and Fair AI
AIF360 - Trusted and Fair AIAnimesh Singh
 
AI & Machine Learning Pipelines with Knative
AI & Machine Learning Pipelines with KnativeAI & Machine Learning Pipelines with Knative
AI & Machine Learning Pipelines with KnativeAnimesh Singh
 
Fabric for Deep Learning
Fabric for Deep LearningFabric for Deep Learning
Fabric for Deep LearningAnimesh Singh
 
Microservices, Kubernetes and Istio - A Great Fit!
Microservices, Kubernetes and Istio - A Great Fit!Microservices, Kubernetes and Istio - A Great Fit!
Microservices, Kubernetes and Istio - A Great Fit!Animesh Singh
 
Introducing Cloud Native, Event Driven, Serverless, Micrsoservices Framework ...
Introducing Cloud Native, Event Driven, Serverless, Micrsoservices Framework ...Introducing Cloud Native, Event Driven, Serverless, Micrsoservices Framework ...
Introducing Cloud Native, Event Driven, Serverless, Micrsoservices Framework ...Animesh Singh
 
CAPS: What's best for deploying and managing OpenStack? Chef vs. Ansible vs. ...
CAPS: What's best for deploying and managing OpenStack? Chef vs. Ansible vs. ...CAPS: What's best for deploying and managing OpenStack? Chef vs. Ansible vs. ...
CAPS: What's best for deploying and managing OpenStack? Chef vs. Ansible vs. ...Animesh Singh
 
Cloud Foundry BOSH CPI for OpenStack
Cloud Foundry BOSH CPI for OpenStackCloud Foundry BOSH CPI for OpenStack
Cloud Foundry BOSH CPI for OpenStackAnimesh Singh
 
IBM BlueMix Architecture and Deep Dive (Powered by CloudFoundry)
IBM BlueMix Architecture and Deep Dive (Powered by CloudFoundry) IBM BlueMix Architecture and Deep Dive (Powered by CloudFoundry)
IBM BlueMix Architecture and Deep Dive (Powered by CloudFoundry) Animesh Singh
 

Plus de Animesh Singh (20)

Machine Learning Exchange (MLX)
Machine Learning Exchange (MLX)Machine Learning Exchange (MLX)
Machine Learning Exchange (MLX)
 
KFServing Payload Logging for Trusted AI
KFServing Payload Logging for Trusted AIKFServing Payload Logging for Trusted AI
KFServing Payload Logging for Trusted AI
 
KFServing and Kubeflow Pipelines
KFServing and Kubeflow PipelinesKFServing and Kubeflow Pipelines
KFServing and Kubeflow Pipelines
 
KFServing and Feast
KFServing and FeastKFServing and Feast
KFServing and Feast
 
Kubeflow Distributed Training and HPO
Kubeflow Distributed Training and HPOKubeflow Distributed Training and HPO
Kubeflow Distributed Training and HPO
 
Kubeflow Pipelines (with Tekton)
Kubeflow Pipelines (with Tekton)Kubeflow Pipelines (with Tekton)
Kubeflow Pipelines (with Tekton)
 
KFServing - Serverless Model Inferencing
KFServing - Serverless Model InferencingKFServing - Serverless Model Inferencing
KFServing - Serverless Model Inferencing
 
End to end Machine Learning using Kubeflow - Build, Train, Deploy and Manage
End to end Machine Learning using Kubeflow - Build, Train, Deploy and ManageEnd to end Machine Learning using Kubeflow - Build, Train, Deploy and Manage
End to end Machine Learning using Kubeflow - Build, Train, Deploy and Manage
 
Defend against adversarial AI using Adversarial Robustness Toolbox
Defend against adversarial AI using Adversarial Robustness Toolbox Defend against adversarial AI using Adversarial Robustness Toolbox
Defend against adversarial AI using Adversarial Robustness Toolbox
 
Advanced Model Inferencing leveraging Kubeflow Serving, KNative and Istio
Advanced Model Inferencing leveraging Kubeflow Serving, KNative and IstioAdvanced Model Inferencing leveraging Kubeflow Serving, KNative and Istio
Advanced Model Inferencing leveraging Kubeflow Serving, KNative and Istio
 
Hybrid Cloud, Kubeflow and Tensorflow Extended [TFX]
Hybrid Cloud, Kubeflow and Tensorflow Extended [TFX]Hybrid Cloud, Kubeflow and Tensorflow Extended [TFX]
Hybrid Cloud, Kubeflow and Tensorflow Extended [TFX]
 
Trusted, Transparent and Fair AI using Open Source
Trusted, Transparent and Fair AI using Open SourceTrusted, Transparent and Fair AI using Open Source
Trusted, Transparent and Fair AI using Open Source
 
AIF360 - Trusted and Fair AI
AIF360 - Trusted and Fair AIAIF360 - Trusted and Fair AI
AIF360 - Trusted and Fair AI
 
AI & Machine Learning Pipelines with Knative
AI & Machine Learning Pipelines with KnativeAI & Machine Learning Pipelines with Knative
AI & Machine Learning Pipelines with Knative
 
Fabric for Deep Learning
Fabric for Deep LearningFabric for Deep Learning
Fabric for Deep Learning
 
Microservices, Kubernetes and Istio - A Great Fit!
Microservices, Kubernetes and Istio - A Great Fit!Microservices, Kubernetes and Istio - A Great Fit!
Microservices, Kubernetes and Istio - A Great Fit!
 
Introducing Cloud Native, Event Driven, Serverless, Micrsoservices Framework ...
Introducing Cloud Native, Event Driven, Serverless, Micrsoservices Framework ...Introducing Cloud Native, Event Driven, Serverless, Micrsoservices Framework ...
Introducing Cloud Native, Event Driven, Serverless, Micrsoservices Framework ...
 
CAPS: What's best for deploying and managing OpenStack? Chef vs. Ansible vs. ...
CAPS: What's best for deploying and managing OpenStack? Chef vs. Ansible vs. ...CAPS: What's best for deploying and managing OpenStack? Chef vs. Ansible vs. ...
CAPS: What's best for deploying and managing OpenStack? Chef vs. Ansible vs. ...
 
Cloud Foundry BOSH CPI for OpenStack
Cloud Foundry BOSH CPI for OpenStackCloud Foundry BOSH CPI for OpenStack
Cloud Foundry BOSH CPI for OpenStack
 
IBM BlueMix Architecture and Deep Dive (Powered by CloudFoundry)
IBM BlueMix Architecture and Deep Dive (Powered by CloudFoundry) IBM BlueMix Architecture and Deep Dive (Powered by CloudFoundry)
IBM BlueMix Architecture and Deep Dive (Powered by CloudFoundry)
 

Dernier

Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clashcharlottematthew16
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningLars Bell
 
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DayH2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DaySri Ambati
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfRankYa
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionDilum Bandara
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfPrecisely
 

Dernier (20)

Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clash
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine Tuning
 
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DayH2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdf
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An Introduction
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
 

Cloud foundry Docker Openstack - Leading Open Source Triumvirate

  • 1. © IBM Corporation 1 OpenStack, Docker, Cloud Foundry How does the leading open source triumvirate come together? Animesh Singh Manuel Silveyra Daniel Krook
  • 2. © IBM Corporation 2 The leading open source triumvirate @AnimeshSingh @DanielKrook@Manuel_Silveyra
  • 3. © IBM Corporation 3 In the top 5 of open source cloud projects http://analystpov.com/cloud-computing/top-15-open-source-cloud-computing-technologies-2014-24727
  • 4. © IBM Corporation 4 IBM Cloud and open technologies At all tiers, IBM is committed to building its cloud on an open cloud architecture     OAuth   OSLC Infrastructure as a Service Platform as a Service Software as a Service API Economy Cloud operating environment Software- defined environment TOSCA http://www.ibm.com/developerworks/cloud/library/cl-open-architecture/ Products and services built on open source and open standards benefit IBM and customers
  • 5. © IBM Corporation 5 IBM Cloud and open technologies At all tiers, IBM is committed to building its cloud on an open cloud architecture     OAuth   OSLC Infrastructure as a Service Platform as a Service Software as a Service API Economy TOSCA http://www.ibm.com/developerworks/cloud/library/cl-open-architecture/ Products and services built on open source and open standards benefit IBM and customers
  • 6. © IBM Corporation 6 Agenda •  OpenStack overview •  Cloud Foundry introduction and architectural overview •  Docker introduction and architectural overview •  How Cloud Foundry and OpenStack intersect •  How OpenStack and Docker intersect •  How Cloud Foundry and Docker intersect •  How they all come together
  • 8. © IBM Corporation 8 OpenStack overview Collection of well integrated IaaS modules for compute, network, and storage •  Compute (Nova) •  Networking (Neutron) •  Object Storage (Swift) •  Block Storage (Cinder) •  Identity(Keystone) •  Image Service (Glance) •  Dashboard (Horizon) OpenStack is the ubiquitous open source cloud computing platform for public and private clouds, regardless of size.
  • 10. © IBM Corporation 10 Cloud Foundry overview Open Cloud Platform •  There is an increasing appetite for cloud-based mobile, social and analytics applications from line-of-business executives - drives the need for a more open cloud development platform. Meets Developers’ Needs •  Focus on app development, not provisioning VMs, databases, messaging servers, etc. •  Agile development model •  Deploy and scale in seconds Compelling Community •  Cloud Foundry has an emerging ecosystem as well as a mature set of capabilities and robustness Cloud Foundry is the industry’s Open PaaS and provides a choice of clouds, frameworks, and application services.
  • 11. © IBM Corporation 11 Cloud Foundry architecture •  The platform is abstracted as a set of large-scale distributed services. •  It uses Cloud Foundry BOSH to operate the underlying infrastructure from the IaaS providers. •  Components are dynamically discoverable and loosely coupled. •  Health is exposed through HTTP endpoints so agents can collect state information and act on it.
  • 13. © IBM Corporation 13 Docker overview Build Ship Run Application portability •  Run Docker containers unchanged in any environment, on any infrastructure Organizational speed & agility via separation of concerns •  Development owns the “inside” of the container – the app and its dependencies •  Operations owns the “outside” of the container – host, cluster, and policies for deployment •  Each team can add their part of the image (e.g. OS, configuration, security, monitoring tools, etc.) Service reliability •  Faithful representation of app with encapsulated dependencies Docker is an open platform for building distributed applications for developers and operators.
  • 14. © IBM Corporation 14 Docker architecture •  Docker uses a client-server architecture. •  The Docker client talks to the Docker daemon, which does the heavy lifting of building, running, and distributing your Docker containers. •  Both the Docker client and the daemon can run on the same system, or you can connect a Docker client to a remote Docker daemon. •  The Docker client and daemon communicate via sockets or through a RESTful API.
  • 15. © IBM Corporation 15 Docker containers •  A Docker container consists of an operating system, user-added files, and metadata – Basically a way to run mini operating systems in your host operating system with strong guarantees of isolation •  The Docker image is read-only. When Docker runs a container from an image, it adds a read-write layer on top of the image (using a union file system) in which your application can then run. •  Underlying Technology : Written in Go and makes use of several Linux kernel features •  Namespaces - pid, net, mnt, ipc, etc. •  Control Groups - cgroups (memory, cpu, blkio, devices) •  Union File Systems - UnionFS (AUFS, btrfs, vfs) •  Container Format - libcontainer or LXC
  • 16. © IBM Corporation 16 Docker containers vs. virtual machines Virtual Machines •  Each virtualized application includes not only the application - which may be only 10s of MB - and the necessary binaries and libraries, but also an entire guest operating system - which may weigh 10s of GB. Docker •  The Docker Engine container comprises just the application and its dependencies. It runs as an isolated process in userspace on the host operating system, sharing the kernel with other containers Compared with Hypervisors, Docker which is OS-Level Virtualization: •  CPU Performance => native performance •  Memory Performance => few % for (optional) accounting •  Network Performance => small overhead; can be optimized to zero overhead •  creating a new base image takes a few seconds (copy-on-write) •  apps in different containers can share the same binaries / libs
  • 18. © IBM Corporation 18 Cloud Foundry and OpenStack integration Cloud  Provider  Interface   Cloud DEA  Pool      Apps   Build  Packs   Service  Nodes   Cloud  Controller   Service  Connector   Messaging   Health  Manager   UAA   Router   PaaS IaaS Integration BOSH  
  • 19. © IBM Corporation 19 BOSH deploys Cloud Foundry resources to OpenStack Deployment Manifest •  Release name/version •  # VMs, job params •  Stemcells to use Stemcell •  Base OS •  BOSH agent Release •  Name •  Software packages •  Config templates •  Scripts BOSH Cloud Foundry Virtual Machine •  Configuration •  Software Packages Virtual Machine •  Configuration •  Software Packages Virtual Machine •  Configuration •  Software Packages Virtual Machine •  Configuration •  Software packages
  • 20. © IBM Corporation 20 Sample manifest snippet for a BOSH deployed component
  • 22. © IBM Corporation 22 Docker in OpenStack via the Nova Driver and Glance •  Docker is hypervisor driver for OpenStack Nova Compute. It was introduced with the Havana release, but lives out-of- tree for Icehouse, Juno, and Kilo. •  The Nova driver embeds a tiny HTTP client which talks with the Docker internal REST API through a Unix socket. It uses the HTTP API to control containers and fetch information about them. •  The driver will fetch images from the OpenStack Image Service (Glance) and load them into the Docker file system. Images may be placed in Glance by exporting them from Docker using the 'docker save' command. •  Well integrated with Horizon UI.
  • 23. © IBM Corporation 23 Heat template plugin for Docker in OpenStack •  Not a replacement for Docker Nova Driver. •  OpenStack Orchestration (Heat) is a solution for providing orchestration of resources inside OpenStack clouds. •  Using the Heat plugin, users may deploy and manage Docker Containers on top of traditional OpenStack deployments, making it compatible with existing OpenStack clouds. •  It allows to use the whole Docker API from a Heat template, and makes linking of containers easier. •  In the example here, multiple containers may be created and linked together by simply adding more sections like “my_docker_container”. They’re not constrained by the OpenStack APIs and may leverage the full power of the Docker Remote API.
  • 24. © IBM Corporation 24 User interface integration with Horizon Horizon UI > Orchestration > Stacks Configure the Stack (parameters of the Heat template)
  • 25. © IBM Corporation 25 OpenStack Kolla runs OpenStack itself in Containers •  Containers used as building blocks for an OpenStack control plane (compute, storage, network, and others) to simplify the operational experience •  Containerized services become independently manageable atomic microservices •  Container sets group related OpenStack services •  Database control •  Messaging control •  High availability control •  OpenStack interface •  OpenStack control •  OpenStack compute operation •  OpenStack network operation •  OpenStack storage operation
  • 26. © IBM Corporation 26 OpenStack Magnum runs Containers on OpenStack in VMs •  Magnum is a Platform-as-a-Service (or Containers- as-a-Service) solution for OpenStack. Joined March 2015. Not just Docker images/containers. •  Magnum combines OpenStack with a pluggable container orchestration engine of your choice (Kubernetes or Docker Swarm so far) •  Users leverage the same cloud account and credentials they use to provision other cloud resources, such as Compute, Storage, Network. •  Different users and project groups are properly isolated from each other so that they have no visibility into, or access to, other containers in the system
  • 28. © IBM Corporation 28 Cloud Foundry developer experience Eclipse IDE CLI Browser    cf  push   hBp      
  • 29. © IBM Corporation 29 Cloud Foundry runtime architecture Eclipse IDE CLI Browser    cf  push   hBp       Cloud  Controller   (API)     Router   DEA  Pool       DEA  Pool       VM  Pool       Apps   Apps   Apps   Apps  
  • 30. © IBM Corporation 30 Cloud Foundry runtime architecture Eclipse IDE CLI Browser    cf  push   hBp       Cloud  Controller   (API)     Router   DEA  Pool       DEA  Pool      Droplet  ExecuGon     Agent  (DEA)    VM  Pool       NATS   (Message  bus)   Health   Manager  
  • 31. © IBM Corporation 31 Warden Containers in Cloud Foundry architecture Eclipse IDE CLI Browser    cf  push   hBp       Cloud  Controller   (API)     Router   DEA  Pool       DEA  Pool      Droplet  ExecuGon     Agent  (DEA)    VM  Pool       NATS   (Message  bus)   Health   Manager   Warden Server Container Manager
  • 32. © IBM Corporation 32 Cloud Foundry services architecture – Docker service Eclipse IDE CLI Browser    cf  create-­‐service   Cloud  Controller   (API)   Docker   Service   Broker   Provision Instance (PUT /v2/service instances/:id) Create Binding (PUT /v2/ service_instances/:id Fetch Catalog (GET /v2/catalog DEA  Pool       Docker Backend Docker instance Docker instance DEA  Pool       DEA Pool App App Docker instance App    cf  bind-­‐service  
  • 33. © IBM Corporation 33 Current Cloud Foundry architecture is being rewritten Cloud  Controller   (API)     Router   DEA  Pool       DEA  Pool      Droplet  ExecuGon     Agent  (DEA)    VM  Pool       NATS   (Message  bus)   Health   Manager   Warden Server Container Manager
  • 34. © IBM Corporation 34 Cloud  Controller   (API)     Router   DEA  Pool       DEA  Pool      Droplet  ExecuGon     Agent  (DEA)    VM  Pool       NATS   (Message  bus)   Health   Manager   Warden Server Container Manager What’s being rewritten
  • 35. © IBM Corporation 35 Why rewrite Cloud  Controller   (API)     Router   •  Tight Coupling Between CC and rest of the components Between Warden Server and backend •  Triangular Dependencies Between CC, Health Monitor and DEAs •  Domain Specific Apps specific Hard to extend to new domains (e.g. cron-like jobs) •  Platform Specific Custom Linux containers only – Warden containers
  • 36. © IBM Corporation 36 Rewrite Goal : Run loosely coupled one off tasks and LRPs…. Executor Pool Run Tasks! Launch Long Running Processes! Run Task! Launch LRP!
  • 37. © IBM Corporation 37 ..using generic recipes across various container backends Run Task! Launch LRP! Executor Pool Run Tasks! Launch LRPs! Rep Exec Recipes! Exec Garden Manage Containers! Garden Backend Run Containers!
  • 38. © IBM Corporation 38 Introducing Diego Brain BBS CELLS Cloud Foundry Diego Diego is a distributed system that orchestrates containerized workloads GARDEN Garden Garden defines an interface to be implemented by container- runners, and runs Linux, Widnows and Docker containers BBS An up-to-date cache of the state of the Diego cluster (including a picture-in-time of all desired LRPs, running LRP instances, and inflight Tasks) is maintained in the BBS (Bulletin Board System/Store). Brain Schedule Deployments using Auction, and Monitor the health
  • 39. © IBM Corporation 39 Diego Cloud Foundry Diego Diego is a distributed system that orchestrates containerized workloads https://github.com/cloudfoundry-incubator/diego-design-notes
  • 40. © IBM Corporation 40 Lattice Doppler/   Traffic  Controller   Router   Router   EmiBer   AWS GAE
  • 41. © IBM Corporation 41 CC     Bridge   Cloud Foundry V3 Cloud     Controller   (API)     Router   Router   EmiBer   Doppler/   Traffic  Controller   Run App! Stager Stage App! App Mgr Run Task! Launch LRP!
  • 42. © IBM Corporation 42 CC     Bridge   Cloud Foundry V3 Cloud     Controller   (API)     Doppler/   Traffic  Controller   Run App! Stager Stage App! App Mgr Run Task! Launch LRP! Eclipse IDE CLI Browser hBp          cf  push      cf  push  -­‐docker      cf  push  –stack                  windows   Router   Router   EmiBer  
  • 43. © IBM Corporation 43 Same Cloud Foundry developer experience – with added features Eclipse IDE CLI Browser hBp          cf  push      cf  push  -­‐docker      cf  push  –stack                  windows  
  • 45. © IBM Corporation 45 What’s possible now Cloud DEA  Pool      Apps   Build  Packs   Service  Nodes   Cloud  Controller   Service  Connector   Messaging   Health  Manager   UAA   Router   PaaS IaaS Integration BOSH   Docker Service Broker
  • 46. © IBM Corporation 46 What’s possible now Cloud DEA  Pool      Apps   Build  Packs   Cloud  Controller   Service  Connector   Messaging   Health  Manager   UAA   Router   Docker  Service  Nodes   PaaS IaaS Integration BOSH   Docker Service Broker
  • 47. © IBM Corporation 47 What’s coming next Cloud DIEGO  Pool       Apps   Docker  Files/Build  Packs   Cloud  Controller   Service  Connector   Messaging   UAA   Router   Docker  Service  Nodes   PaaS IaaS Integration BOSH   Docker Service Broker
  • 48. © IBM Corporation 48 What’s coming next Cloud DIEGO  Pool       Apps   Docker  Files/Build  Packs   Cloud  Controller   Service  Connector   Messaging   UAA   Router   Docker  Service  Nodes   PaaS IaaS Integration BOSH   Docker Service Broker
  • 49. © IBM Corporation 49 What’s possible future Cloud DIEGO  Pool       Apps   Docker  Files/Build  Packs   Cloud  Controller   Service  Connector   Messaging   UAA   Router   Docker  Service  Nodes   PaaS IaaS Integration BOSH Docker Service Broker
  • 50. © IBM Corporation 50 IBM Bluemix •  IBM Platform as a Services offering •  IBM and partner cloud services •  Integrated DevOps with both Browser and Eclipse-based tools Services Lifecycle Management IDS Application Runtime Runtimes & Frameworks Middleware Application Operational Mobile ExternalData Node Java Ruby Worklight WebSphere Liberty Eclipse IDE Application Composition Environment Create & Manage Services Test/Run Test/Run Explore Services Explore Services IBM Bluemix Check In Code Check In Code Web IDE (Eclipse Orion)
  • 51. © IBM Corporation 51 IBM Bluemix
  • 52. © IBM Corporation 52 Object Storage Service in IBM Bluemix
  • 53. © IBM Corporation 53 Container Service in IBM Bluemix
  • 54. © IBM Corporation 54 Virtual Machine Service in IBM Bluemix
  • 55. © IBM Corporation 55 IBM “Open by design” projects and products Infrastructure-as-a-Service Features OpenStack Self-serve virtual machines, storage, networking, and other infrastructure services Docker Linux container management with host, cluster, and policy management Platform-as-a-Service Features Cloud Foundry Lifecycle managed application and service management Docker Application and service container encapsulation and management IBM products Features Bluemix (instant runtimes) Hosted Cloud Foundry based PaaS to manage scalable application and services lifecycle Bluemix (containers) Hosted OpenStack-based environment for build, deployment of Docker containers Bluemix (virtual machines) Hosted OpenStack-based virtual machine environment Bluemix Local On premises version of Cloud Foundry and OpenStack based Bluemix Cloud Manager with OpenStack IBM branded distribution of OpenStack Cloud Orchestrator IBM branded distribution of OpenStack with patterns and automation Cloud OpenStack Services Hosted dedicated OpenStack environment Object Storage and Elastic Storage Easily consumable storage services based on OpenStack components Docker Hub Enterprise IBM resold and integrated version of a Docker image registry
  • 56. © IBM Corporation 56 Agenda •  OpenStack overview •  Cloud Foundry introduction and architectural overview •  Docker introduction and architectural overview •  How Cloud Foundry and OpenStack intersect •  How OpenStack and Docker intersect •  How Cloud Foundry and Docker intersect •  How they all come together
  • 57. © IBM Corporation 57 Questions? Reach out at the following Twitter handles @AnimeshSingh @DanielKrook@Manuel_Silveyra
  • 58. Meet the IBM Team at these sessions Monday, May 18th 12:05 pm - A Conversation with Cinder Developers - Jay Bryant 4:40 pm - Tales From the Gate: How Debugging the Gate Helps Your Enterprise - Matt Riedemann 4:40 pm - From Archive to Insight: Debunking Myths of Analytics on Object Stores - Dean Hildebrand, Simon Lorenz 5:30 pm - OpenStack, Docker, and Cloud Foundry - How does the Leading Open Source Triumvirate Come Together - Animesh Singh, Daniel Krook, Manuel Silveyra, Kalonji Bankole Tuesday, May 19th 11:15 am How to Configure your Cloud and Tempest for Interoperability Testing Catherine Diep 12:05 pm - Past, Present and Future of Fibre Channel in OpenStack - Jay Bryant 2:00 pm - Building a Production Grade PaaS platform like Bluemix on OpenStack, leveraging Container based scalable services - Animesh Singh, James Busche 2:00 pm - Standing Tall in the Room - Sponsored by the Women of OpenStack - Radha Ratnaparkhi 5:30 pm New Advances in Federated Identity and Federated Service Provider Support for OpenStack Clouds - Brad Topol, Steve Martinelli Wednesday, May 20th 9:50 am - Network Connectivity in a Hybrid OpenStack Cloud - John Kasperski, Vinit Jain 1:50 pm - Leveraging open source tools to gain insight into OpenStack Swift - Dmitry Sotnikov, Michael Factor 1:50 pm - Keystone advanced authentication methods - Steve Martinelli, Henry Nash 2:40 pm - Helping Telcos go Green and save OpEx via Policy - Dilip Krishnaswamy Thursday, May 21st 9:00 am - Big Data Analytics and Docker: The Thrilla in Manila - Bill Owen, Dean Hildebrand, Michael Hines, Nilesh Bhosale 9:50 am - Role of NFV Research in Open Source and Open Standards - Dilip Krishnaswamy 1:30 pm - On-demand Disaster Recovery (DR) service enablement through Software Defined Environments under hybrid clouds - Venkata Jagana, Ramesh Palakodeti, CV Venugopal, Mike Williams, Ann Corrao 1:30pm - OpenStack Networking: It's time to talk Performance - Bengi Karacali, John Tracey,Mohammad Banikazemi, George Almasi 4:10 pm - Beyond the Horizon: Innovating and Customizing Horizon using AngularJS - Cindy Lu, Thai Tran
  • 59. © IBM Corporation 59 http://www.meetup.com/OpenStack http://www.meetup.com/CloudFoundry Tomorrow – 2PM : Building a Production Grade PaaS Platform like Bluemix on OpenStack Apps @AnimeshSingh @jim1348b @Bodine_Andrew