SlideShare a Scribd company logo
1 of 42
Download to read offline
OPENSTACK
TECHNOLOGY101
Boston OpenStack Meet-Up
February 19, 2014
Theme: Open Source Cloud Computing
“The implications of a DYI
approach are profound,
organizations won’t see the
impact of their choice for months,
or years. There are a growing
number of IT organizations that
embrace risk in a new way and
reject the established approach
to enterprise software.”
Alessandro Perilli
Gartner
Agenda
• What is OpenStack?
• A brief history
• The OpenStack Foundation
• The OpenStack projects
• Compute: Nova, Glance
• Storage – Swift, Cinder
• Networks: Neutron
• Tools: Horizon, Ceilometer,
Heat, Oslo
• Security: Keystone

OpenStack looks more attractive than
most commercial solutions due to its
inherent capability to mix and match
different modules and deeply tweak the
resulting cloud infrastructure stack.
What is OpenStack?
Quick Start for the Terminally Busy…
●
●
●
●

●

Open Source Cloud software
Launched by NASA and Rackspace in 2010
Massively scalable
Managed by the OpenStack
Foundation
Rapidly taking over
the Cloud world!
What is OpenStack?
A Brief History

• Jointly founded in July 2010 by Rackspace and NASA

with merger of two projects:
• Swift object storage based on Rackspace's Cloud Files platform

• Nova based on Nebula compute platform

• Fastest growing Open Source project to date!
• Strong Community Support
OpenStack Project Release History
Six Month Cycle – Currently working on Icehouse

• Releases are timed to

correspond with the
developer Summit meeting
• Still no reliable upgrade
paths between releases
• Expect large deltas
between releases for the
next year or so as new
features and core
functionality are added
What is OpenStack?
An Open Source Foundation
What is OpenStack?
An Open Source Foundation

• Independent home for the OpenStack project
• Uses the Apache licensing model

• Serves developers, users, and the

entire ecosystem by providing:
• Shared resources
• Enable technology vendors targeting the platform

• Individual membership is free and accessible to anyone
What is OpenStack?
Open Source Cloud Platform
• Open source software for building private and public clouds
• Designed for flexibility and many different use cases
• Mix and match components
• Kit of administrative tools
• Enables multi-tenancy
• Quota for different users
• Users can be associated with multiple tenants

• Provides virtual machines (VM) on demand
• Self service provisioning
• Snapshotting capability
• Storage volumes
• Block storage for VM images
• Object storage for VM images and arbitrary files
OpenStack: The Open Source Cloud
Operating System
High Level Architecture - Havana
Horizon

Neutron
Glance

Nova

Cinder
Keystone
Adapted from : http://26a0ff8ca8ba32139f7d-db711c577a50b6bdc946ea71aaca027d.r97.cf1.rackcdn.com/openstack-conceptual-arch-folsom.jpg

Swift
What is OpenStack?
An Open Source Set of Cloud Technologies
• Compute (codenamed "Nova") provides virtual servers upon demand.
• Image (codenamed "Glance") provides a catalog and repository for virtual

•

•

•
•
•

disk images. These disk images are mostly commonly used in OpenStack
Compute.
Dashboard (codenamed "Horizon") provides a modular web-based user
interface for all the OpenStack services. Used to perform most operations
like launching an instance, assigning IP addresses and setting access
controls.
Identity (codenamed "Keystone") provides authentication and authorization
for all the OpenStack services. It also provides a service catalog of services
within a particular OpenStack cloud.
Object Store (codenamed "Swift") provides object storage. It allows you to
store or retrieve files (but not mount directories like a fileserver).
Block Storage (codenamed "Cinder") provides persistent block storage to
guest VMs.
Network (codenamed “Neutron") provides "network connectivity as a
service" between interface devices managed by other OpenStack services.
OpenStack Overall Architecture Compute
Horizon

Neutron
Glance

Nova

Cinder

Keystone

Swift
OpenStack Nova Compute - Introduction
• OpenStack Compute is a tool to orchestrate a cloud, including

running instances, managing networks, and controlling access
to the cloud through users and projects.
• The underlying open source project's name is Nova, and it
provides the software that can control an Infrastructure as a
Service (IaaS) cloud computing platform.
• It is similar in scope to Amazon EC2 and Rackspace Cloud
Servers.
• OpenStack Compute does not include any virtualization
software; rather it defines drivers that interact with underlying
virtualization mechanisms that run on a host operating system,
and exposes functionality over a web-based API.
OpenStack Nova Compute –
Message Queue
• Nova-compute is a worker daemon, which primarily

creates and terminates VMs via hypervisor API.
OpenStack Nova Compute – Supported
Hypervisors
• The process for selecting a hypervisor usually means

prioritizing and making decisions based on budget and
resource constraints as well as the list of supported features
and required technical specifications.
• Most development is done on KVM and Xen-based hypervisors

• With OpenStack Compute, you can orchestrate clouds using

multiple hypervisors in different zones.
• KVM - Kernel-based Virtual Machine. The virtual disk formats
that it supports it inherits from QEMU since it uses a modified
QEMU program to launch the virtual machine. The supported
formats include raw images, the qcow2, and VMware formats.
• LXC - Linux Containers (through libvirt), use to run Linux-based
virtual machines.
• QEMU - Quick EMUlator, generally only used for development
purposes.
OpenStack Nova Compute – Supported
Hypervisors
• UML - User Mode Linux, generally only used for development
•

•

•
•

•

purposes.
VMWare vSphere 4.1 update 1 and newer, runs VMWare-based Linux
and Windows images through a connection with a vCenter server or
directly with an ESXi host.
Xen - XenServer, Xen Cloud Platform (XCP), use to run Linux or
Windows virtual machines. You must install the nova-compute service
in a para-virtualized VM.
PowerVM - Server virtualization with IBM PowerVM, use to run AIX,
IBM i and Linux environments on IBM POWER technology.
Hyper-V - Server virtualization with Microsoft's Hyper-V, use to run
Windows, Linux, and FreeBSD virtual machines. Runs nova-compute
natively on the Windows virtualization platform.
Bare Metal - Not a hypervisor in the traditional sense, this driver
provisions physical hardware via pluggable sub-drivers (eg. PXE for
image deployment, and IPMI for power management).
OpenStack Overall Architecture – Image
Store
Horizon

• Glance
Neutron
Glance

Nova

Cinder

Keystone

Swift
OpenStack Glance – Introduction
• The Glance project provides services for discovering,

registering, and retrieving virtual machine images. Glance
has a RESTful API that allows querying of VM image
metadata as well as retrieval of the actual image
• Basically a database and some tools
• VM images made available through Glance can be stored
in a variety of locations:
• Simple filesystems like ZFS, LVM, etc.
• Direct attached storage
• Object-storage systems like OpenStack Swift project or S3

• Block storage like OpenStack Cinder project
OpenStack Glance – Reference
Architecture
OpenStack Overall Architecture Dashboard
Horizon

• Horizon
Neutron
Glance

Nova

Cinder

Keystone

Swift
OpenStack Horizon Dashboard –
Introduction
Horizon

Basic Operations

• Provides a baseline user

• From UI
• Login in to Horizon
• Specify parameters of VM in
“create VM” form
• Hit “create” button

interface for managing
OpenStack Services
• Stateless
• Error handling is delegated

to back-end
• Doesn’t support all API
functions
• Can use memcached or
database to store sessions
• Gets updated via nova-api
polling

• Under the Hood
• Form parameters are converted to
Post data
• “Create” request initiates HTTP
POST request to back-end
• To Keystone if authorization token

is not cached
• To nova-api if authorization token
has not yet expired
OpenStack Horizon Dashboard –
Reference Architecture

Horizon

End Users

Administrators
OpenStack Horizon Dashboard –
Example
OpenStack Overall Architecture - Security
Horizon

• Keystone
Neutron
Glance

Nova

Cinder

Keystone
Adapted from : http://26a0ff8ca8ba32139f7d-db711c577a50b6bdc946ea71aaca027d.r97.cf1.rackcdn.com/openstack-conceptual-arch-folsom.jpg

Swift
OpenStack Security - Keystone
Introduction
• Keystone provides a single point of integration for

OpenStack policy, catalog, token and authentication.
• Keystone handles API requests as well as providing configurable

catalog, policy, token and identity services.

• Communicates via OpenStack Identity API (version 2)
• Each Keystone function has a pluggable backend which

allows different ways to use the particular service.
• Standard backends include LDAP or SQL, as well as Key Value

Stores (KVS).

• Most commonly used in delegated authorization

deployments
• Most people will use this as a point of customization for
their current authentication services.
Keystone relationship to other OpenStack
Elements
OpenStack Overall Architecture - Storage
Horizon

• Swift and Cinder
Neutron
Glance

Nova

Cinder
Keystone

Swift
OpenStack Storage - Introduction
• Storage is found in many parts of the OpenStack stack,

and the differing types can cause confusion to even
experienced cloud Volumes block storage
engineers.
On-instance / ephemeral
Object Storage (Swift)
(Cinder)

Used for running Operating
System and scratch space

Used for adding additional
persistent storage to a virtual
machine (VM)

Used for storing virtual machine
images and data

Persists until VM is terminated

Persists until deleted

Persists until deleted

Access associated with a VM

Access associated with a VM

Available from anywhere

Implemented as a filesystem
underlying OpenStack Compute

Mounted via OpenStack BlockStorage controlled protocol (for
example, iSCSI)

REST API

Administrator configures size
setting, based on flavors

Sizings based on need

Easily scalable for future growth

Example: 10GB first disk,
30GB/core second disk

Example: 1TB "extra hard drive"

Example: 10s of TBs of dataset
storage
OpenStack Storage - Uses
• The two common use cases for providing object storage

in a compute cloud are:
• To provide users with a persistent

storage mechanism
• As a scalable, reliable data store
for virtual machine images
OpenStack Storage - Swift Key Features
OpenStack Storage - Swift Architecture

Disk
Server/Node

Zone
Multiple zones
make up a
Region
OpenStack Storage – Cinder Architecture
OpenStack Storage – Cinder Introduction
• Cinder separates out the persistent block storage functionality that was

previously part of OpenStack Compute into its own service.
• The OpenStack Block Storage API allows for manipulation of volumes,
volume types (similar to compute flavors) and volume snapshots.
• cinder-api accepts API requests and routes them to cinder-volume for action.
• cinder-volume acts upon the requests by reading or writing to the Cinder database

to maintain state, interacting with other processes (like cinder-scheduler) through a
message queue and directly upon block storage providing hardware or software.
• It can interact with a variety of storage providers through a driver architecture.
• Available drivers: IBM, SolidFire, NetApp, Nexenta, Zadara, linux iSCSI and other
storage providers.
• Much like nova-scheduler, the cinder-scheduler daemon picks the optimal block
storage provider node to create the volume on.

• Cinder deployments will also make use of a messaging queue to route

information between the cinder processes as well as a database to store
volume state.
• Like Neutron, Cinder will mainly interact with Nova, providing volumes for
its instances.
OpenStack Overall Architecture - Network
Horizon

• Neutron – Software Defined Networking
Neutron
Glance

Nova

Cinder

Keystone

Swift
OpenStack Network – Neutron
Introduction
• Neutron is an OpenStack project to provide "networking

as a service" between interface devices (e.g., vNICs)
managed by other OpenStack services (e.g., nova).
• Starting in the Folsom release, Neutron is a core and
supported part of the OpenStack platform
OpenStack Network - Neutron
Deployment
• Sample Deployment Model
OpenStack Network - Neutron
Architecture
• Plugin and Agent Summary
Icehouse Official Projects
• Integrated Projects (Icehouse release)
• OpenStack Compute (nova): https://launchpad.net/nova
• OpenStack Object Storage (swift): https://launchpad.net/swift
• OpenStack Image Service (glance): https://launchpad.net/glance
• OpenStack Identity (keystone): https://launchpad.net/keystone
• OpenStack Dashboard (horizon): https://launchpad.net/horizon
• OpenStack Networking (Neutron): https://launchpad.net/Neutron
• OpenStack Block Storage service (cinder):
https://launchpad.net/cinder
• Ceilometer: https://launchpad.net/ceilometer
• Heat: https://launchpad.net/heat
OpenStack Icehouse Roadmap Highlights
• Database Service (Trove) - Scalable and reliable Cloud

•
•
•
•

Database as a Service provisioning functionality for both
relational and non-relational database engines
Bare Metal (Ironic) - Provides an API for management and
provisioning of physical machines.
Queue Service (Marconi) - message queueing API and
service for distributed application messaging
Data Processing (Savannah) – Hadoop on OpenStack
Icehouse Release Features and
Status: http://wiki.openstack.org/releasestatus/
Additional Resources
• http://www.openstack.org/ - Main site
• http://docs.openstack.org/trunk/openstack•

•
•

•

•
•

compute/admin/content/ch_getting-started-with-openstack.html
http://docs.openstack.org/trunk/openstack-compute/admin/bkcompute-adminguide-trunk.pdf - Current OpenStack computer
Administration Manual – Dec 18, 2012
http://www.openstack.org/software/start/ - How To Get Started
With OpenStack
https://github.com/mseknibilel/OpenStack-Folsom-Installguide/blob/master/OpenStack_Folsom_Install_Guide_WebVers
ion.rst - OpenStack Folsom Install Guide
http://www.packtpub.com/openstack-cloud-computingcookbook/book OpenStack Cloud Computing Cookbook
http://www.openstack.org/blog/tag/training/ - Tag: Training
OPENSTACK
ICEHOUSE 101
Questions?

More Related Content

What's hot

Architecture Openstack for the Enterprise
Architecture Openstack for the EnterpriseArchitecture Openstack for the Enterprise
Architecture Openstack for the Enterprise
Keith Tobin
 
2 Day Bootcamp for OpenStack--Cloud Training by Mirantis (Preview)
2 Day Bootcamp for OpenStack--Cloud Training by Mirantis (Preview)2 Day Bootcamp for OpenStack--Cloud Training by Mirantis (Preview)
2 Day Bootcamp for OpenStack--Cloud Training by Mirantis (Preview)
Mirantis
 

What's hot (20)

Architecture Openstack for the Enterprise
Architecture Openstack for the EnterpriseArchitecture Openstack for the Enterprise
Architecture Openstack for the Enterprise
 
Getting started with OpenStack
Getting started with OpenStackGetting started with OpenStack
Getting started with OpenStack
 
Cloud computing and OpenStack
Cloud computing and OpenStackCloud computing and OpenStack
Cloud computing and OpenStack
 
Red Hat OpenStack - Open Cloud Infrastructure
Red Hat OpenStack - Open Cloud InfrastructureRed Hat OpenStack - Open Cloud Infrastructure
Red Hat OpenStack - Open Cloud Infrastructure
 
Cloud Computing Open Stack Compute Node
Cloud Computing Open Stack Compute NodeCloud Computing Open Stack Compute Node
Cloud Computing Open Stack Compute Node
 
VNG/IRD - Cloud computing & Openstack discussion 3/5/2014
VNG/IRD - Cloud computing & Openstack discussion 3/5/2014VNG/IRD - Cloud computing & Openstack discussion 3/5/2014
VNG/IRD - Cloud computing & Openstack discussion 3/5/2014
 
Openstackoverview-DEC2013
Openstackoverview-DEC2013Openstackoverview-DEC2013
Openstackoverview-DEC2013
 
Openstack architure part 1
Openstack architure part 1Openstack architure part 1
Openstack architure part 1
 
Designing OpenStack Architectures
Designing OpenStack ArchitecturesDesigning OpenStack Architectures
Designing OpenStack Architectures
 
Openstack 101
Openstack 101Openstack 101
Openstack 101
 
What Is OpenStack | OpenStack Tutorial For Beginners | OpenStack Training | E...
What Is OpenStack | OpenStack Tutorial For Beginners | OpenStack Training | E...What Is OpenStack | OpenStack Tutorial For Beginners | OpenStack Training | E...
What Is OpenStack | OpenStack Tutorial For Beginners | OpenStack Training | E...
 
Introduction To OpenStack
Introduction To OpenStackIntroduction To OpenStack
Introduction To OpenStack
 
OpenStack Introduction
OpenStack IntroductionOpenStack Introduction
OpenStack Introduction
 
Introduction to OpenStack Storage
Introduction to OpenStack StorageIntroduction to OpenStack Storage
Introduction to OpenStack Storage
 
RedHat OpenStack Platform Overview
RedHat OpenStack Platform OverviewRedHat OpenStack Platform Overview
RedHat OpenStack Platform Overview
 
Mirantis OpenStack 5.0 Overview
Mirantis OpenStack 5.0 OverviewMirantis OpenStack 5.0 Overview
Mirantis OpenStack 5.0 Overview
 
Openstack - An introduction/Installation - Presented at Dr Dobb's conference...
 Openstack - An introduction/Installation - Presented at Dr Dobb's conference... Openstack - An introduction/Installation - Presented at Dr Dobb's conference...
Openstack - An introduction/Installation - Presented at Dr Dobb's conference...
 
Openstack Fundamentals by CloudZone @Back2School
Openstack Fundamentals by CloudZone @Back2SchoolOpenstack Fundamentals by CloudZone @Back2School
Openstack Fundamentals by CloudZone @Back2School
 
Mirantis OpenStack 4.0 Overview
Mirantis OpenStack 4.0 OverviewMirantis OpenStack 4.0 Overview
Mirantis OpenStack 4.0 Overview
 
2 Day Bootcamp for OpenStack--Cloud Training by Mirantis (Preview)
2 Day Bootcamp for OpenStack--Cloud Training by Mirantis (Preview)2 Day Bootcamp for OpenStack--Cloud Training by Mirantis (Preview)
2 Day Bootcamp for OpenStack--Cloud Training by Mirantis (Preview)
 

Viewers also liked

Introducing OpenStack for Beginners
Introducing OpenStack for Beginners Introducing OpenStack for Beginners
Introducing OpenStack for Beginners
openstackindia
 
What's new in OpenStack Liberty
What's new in OpenStack LibertyWhat's new in OpenStack Liberty
What's new in OpenStack Liberty
Stephen Gordon
 
Deep dive into highly available open stack architecture openstack summit va...
Deep dive into highly available open stack architecture   openstack summit va...Deep dive into highly available open stack architecture   openstack summit va...
Deep dive into highly available open stack architecture openstack summit va...
Arthur Berezin
 
Introduction to OpenStack Architecture
Introduction to OpenStack ArchitectureIntroduction to OpenStack Architecture
Introduction to OpenStack Architecture
OpenStack Foundation
 
OpenStack Introduction
OpenStack IntroductionOpenStack Introduction
OpenStack Introduction
openstackindia
 

Viewers also liked (12)

Introducing OpenStack for Beginners
Introducing OpenStack for Beginners Introducing OpenStack for Beginners
Introducing OpenStack for Beginners
 
The Cloud Native Stack
The Cloud Native StackThe Cloud Native Stack
The Cloud Native Stack
 
What's new in OpenStack Liberty
What's new in OpenStack LibertyWhat's new in OpenStack Liberty
What's new in OpenStack Liberty
 
OpenStack Summits 101: A Guide For Attendees
OpenStack Summits 101: A Guide For AttendeesOpenStack Summits 101: A Guide For Attendees
OpenStack Summits 101: A Guide For Attendees
 
Deep dive into highly available open stack architecture openstack summit va...
Deep dive into highly available open stack architecture   openstack summit va...Deep dive into highly available open stack architecture   openstack summit va...
Deep dive into highly available open stack architecture openstack summit va...
 
Introduction to OpenStack Architecture
Introduction to OpenStack ArchitectureIntroduction to OpenStack Architecture
Introduction to OpenStack Architecture
 
OpenStack Architecture
OpenStack ArchitectureOpenStack Architecture
OpenStack Architecture
 
OpenStack Introduction
OpenStack IntroductionOpenStack Introduction
OpenStack Introduction
 
Kubernetes and OpenStack at Scale
Kubernetes and OpenStack at ScaleKubernetes and OpenStack at Scale
Kubernetes and OpenStack at Scale
 
OpenStack Tutorial
OpenStack TutorialOpenStack Tutorial
OpenStack Tutorial
 
Cloud Native Landscape (CNCF and OCI)
Cloud Native Landscape (CNCF and OCI)Cloud Native Landscape (CNCF and OCI)
Cloud Native Landscape (CNCF and OCI)
 
OpenStack Framework Introduction
OpenStack Framework IntroductionOpenStack Framework Introduction
OpenStack Framework Introduction
 

Similar to OpenStack 101 update

Openstack presentation
Openstack presentationOpenstack presentation
Openstack presentation
Sankalp Jain
 
OpenStack Block Storage 101
OpenStack Block Storage 101OpenStack Block Storage 101
OpenStack Block Storage 101
NetApp
 
Introduction Openstack
Introduction OpenstackIntroduction Openstack
Introduction Openstack
Ranjith Kumar
 

Similar to OpenStack 101 update (20)

OpenStack (projects 101)
OpenStack (projects 101)OpenStack (projects 101)
OpenStack (projects 101)
 
Openstack presentation
Openstack presentationOpenstack presentation
Openstack presentation
 
Chef and OpenStack Workshop from ChefConf 2013
Chef and OpenStack Workshop from ChefConf 2013Chef and OpenStack Workshop from ChefConf 2013
Chef and OpenStack Workshop from ChefConf 2013
 
Quick overview of Openstack architecture
Quick overview of Openstack architectureQuick overview of Openstack architecture
Quick overview of Openstack architecture
 
Introduction to openstack
Introduction to openstackIntroduction to openstack
Introduction to openstack
 
Cloud and OpenStack
Cloud and OpenStackCloud and OpenStack
Cloud and OpenStack
 
Open stack Architecture and Use Cases
Open stack Architecture and Use CasesOpen stack Architecture and Use Cases
Open stack Architecture and Use Cases
 
VMworld 2013: VMware NSX Integration with OpenStack
VMworld 2013: VMware NSX Integration with OpenStack VMworld 2013: VMware NSX Integration with OpenStack
VMworld 2013: VMware NSX Integration with OpenStack
 
Introduction to Open stack - An Overview
Introduction to Open stack - An Overview Introduction to Open stack - An Overview
Introduction to Open stack - An Overview
 
Openstack: starter level
Openstack: starter levelOpenstack: starter level
Openstack: starter level
 
What is OpenStack and the added value of IBM solutions
What is OpenStack and the added value of IBM solutionsWhat is OpenStack and the added value of IBM solutions
What is OpenStack and the added value of IBM solutions
 
Bitnami Bootcamp. OpenStack
Bitnami Bootcamp. OpenStackBitnami Bootcamp. OpenStack
Bitnami Bootcamp. OpenStack
 
Sharad openstack slides
Sharad openstack slidesSharad openstack slides
Sharad openstack slides
 
OpenStack Block Storage 101
OpenStack Block Storage 101OpenStack Block Storage 101
OpenStack Block Storage 101
 
Introduction Openstack
Introduction OpenstackIntroduction Openstack
Introduction Openstack
 
Cloud Foundry and OpenStack – Marriage Made in Heaven !
Cloud Foundry and OpenStack – Marriage Made in Heaven !Cloud Foundry and OpenStack – Marriage Made in Heaven !
Cloud Foundry and OpenStack – Marriage Made in Heaven !
 
Webinar "Introduction to OpenStack"
Webinar "Introduction to OpenStack"Webinar "Introduction to OpenStack"
Webinar "Introduction to OpenStack"
 
2011 Essex Summit: Openstack/Hyper-V clouds
2011 Essex Summit: Openstack/Hyper-V clouds2011 Essex Summit: Openstack/Hyper-V clouds
2011 Essex Summit: Openstack/Hyper-V clouds
 
Webinar - Introduction to Ceph and OpenStack
Webinar - Introduction to Ceph and OpenStackWebinar - Introduction to Ceph and OpenStack
Webinar - Introduction to Ceph and OpenStack
 
Cloud Foundry and OpenStack - A Marriage Made in Heaven! (Cloud Foundry Summi...
Cloud Foundry and OpenStack - A Marriage Made in Heaven! (Cloud Foundry Summi...Cloud Foundry and OpenStack - A Marriage Made in Heaven! (Cloud Foundry Summi...
Cloud Foundry and OpenStack - A Marriage Made in Heaven! (Cloud Foundry Summi...
 

More from Kamesh Pemmaraju

Docker and OpenStack Boston Meetup
Docker and OpenStack Boston MeetupDocker and OpenStack Boston Meetup
Docker and OpenStack Boston Meetup
Kamesh Pemmaraju
 
Software Defined Networking
Software Defined Networking Software Defined Networking
Software Defined Networking
Kamesh Pemmaraju
 

More from Kamesh Pemmaraju (20)

kamesh Videos
kamesh Videoskamesh Videos
kamesh Videos
 
OpenStack networking - Neutron deep dive with PLUMgrid
OpenStack networking - Neutron deep dive with PLUMgridOpenStack networking - Neutron deep dive with PLUMgrid
OpenStack networking - Neutron deep dive with PLUMgrid
 
Mirantis OpenStack and Cumulus Linux Webinar
Mirantis OpenStack and Cumulus Linux WebinarMirantis OpenStack and Cumulus Linux Webinar
Mirantis OpenStack and Cumulus Linux Webinar
 
Designing OpenStack Architectures
Designing OpenStack ArchitecturesDesigning OpenStack Architectures
Designing OpenStack Architectures
 
Open stack icehouse microsoftupdate
Open stack icehouse microsoftupdateOpen stack icehouse microsoftupdate
Open stack icehouse microsoftupdate
 
New Ceph capabilities and Reference Architectures
New Ceph capabilities and Reference ArchitecturesNew Ceph capabilities and Reference Architectures
New Ceph capabilities and Reference Architectures
 
OpenStack and Ceph case study at the University of Alabama
OpenStack and Ceph case study at the University of AlabamaOpenStack and Ceph case study at the University of Alabama
OpenStack and Ceph case study at the University of Alabama
 
High Availability for OpenStack
High Availability for OpenStackHigh Availability for OpenStack
High Availability for OpenStack
 
Dell openstack cloud with inktank ceph – large scale customer deployment
Dell openstack cloud with inktank ceph – large scale customer deploymentDell openstack cloud with inktank ceph – large scale customer deployment
Dell openstack cloud with inktank ceph – large scale customer deployment
 
Whats new in neutron for open stack havana
Whats new in neutron for open stack havanaWhats new in neutron for open stack havana
Whats new in neutron for open stack havana
 
Postgres Plus Cloud Database on OpenStack
Postgres Plus Cloud Database on OpenStackPostgres Plus Cloud Database on OpenStack
Postgres Plus Cloud Database on OpenStack
 
Massachusetts Open Cloud Initiative
Massachusetts Open Cloud InitiativeMassachusetts Open Cloud Initiative
Massachusetts Open Cloud Initiative
 
Dell SUSE Cloud Solution, Powered by OpenStack
Dell SUSE Cloud Solution, Powered by OpenStackDell SUSE Cloud Solution, Powered by OpenStack
Dell SUSE Cloud Solution, Powered by OpenStack
 
Docker and OpenStack Boston Meetup
Docker and OpenStack Boston MeetupDocker and OpenStack Boston Meetup
Docker and OpenStack Boston Meetup
 
Ceph and openstack at the boston meetup
Ceph and openstack at the boston meetupCeph and openstack at the boston meetup
Ceph and openstack at the boston meetup
 
Solving Business Challenges with OpenStack
Solving Business Challenges with OpenStackSolving Business Challenges with OpenStack
Solving Business Challenges with OpenStack
 
Software Defined Networking
Software Defined Networking Software Defined Networking
Software Defined Networking
 
Open stack qa and tempest
Open stack qa and tempestOpen stack qa and tempest
Open stack qa and tempest
 
Wicked Easy Ceph Block Storage & OpenStack Deployment with Crowbar
Wicked Easy Ceph Block Storage & OpenStack Deployment with CrowbarWicked Easy Ceph Block Storage & OpenStack Deployment with Crowbar
Wicked Easy Ceph Block Storage & OpenStack Deployment with Crowbar
 
Hyper-V support for OpenStack Grizzly
Hyper-V support for OpenStack GrizzlyHyper-V support for OpenStack Grizzly
Hyper-V support for OpenStack Grizzly
 

Recently uploaded

Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Victor Rentea
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
WSO2
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 

Recently uploaded (20)

Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital Adaptability
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistan
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 

OpenStack 101 update

  • 2. Theme: Open Source Cloud Computing “The implications of a DYI approach are profound, organizations won’t see the impact of their choice for months, or years. There are a growing number of IT organizations that embrace risk in a new way and reject the established approach to enterprise software.” Alessandro Perilli Gartner
  • 3. Agenda • What is OpenStack? • A brief history • The OpenStack Foundation • The OpenStack projects • Compute: Nova, Glance • Storage – Swift, Cinder • Networks: Neutron • Tools: Horizon, Ceilometer, Heat, Oslo • Security: Keystone OpenStack looks more attractive than most commercial solutions due to its inherent capability to mix and match different modules and deeply tweak the resulting cloud infrastructure stack.
  • 4. What is OpenStack? Quick Start for the Terminally Busy… ● ● ● ● ● Open Source Cloud software Launched by NASA and Rackspace in 2010 Massively scalable Managed by the OpenStack Foundation Rapidly taking over the Cloud world!
  • 5. What is OpenStack? A Brief History • Jointly founded in July 2010 by Rackspace and NASA with merger of two projects: • Swift object storage based on Rackspace's Cloud Files platform • Nova based on Nebula compute platform • Fastest growing Open Source project to date! • Strong Community Support
  • 6. OpenStack Project Release History Six Month Cycle – Currently working on Icehouse • Releases are timed to correspond with the developer Summit meeting • Still no reliable upgrade paths between releases • Expect large deltas between releases for the next year or so as new features and core functionality are added
  • 7. What is OpenStack? An Open Source Foundation
  • 8. What is OpenStack? An Open Source Foundation • Independent home for the OpenStack project • Uses the Apache licensing model • Serves developers, users, and the entire ecosystem by providing: • Shared resources • Enable technology vendors targeting the platform • Individual membership is free and accessible to anyone
  • 9. What is OpenStack? Open Source Cloud Platform • Open source software for building private and public clouds • Designed for flexibility and many different use cases • Mix and match components • Kit of administrative tools • Enables multi-tenancy • Quota for different users • Users can be associated with multiple tenants • Provides virtual machines (VM) on demand • Self service provisioning • Snapshotting capability • Storage volumes • Block storage for VM images • Object storage for VM images and arbitrary files
  • 10. OpenStack: The Open Source Cloud Operating System
  • 11. High Level Architecture - Havana Horizon Neutron Glance Nova Cinder Keystone Adapted from : http://26a0ff8ca8ba32139f7d-db711c577a50b6bdc946ea71aaca027d.r97.cf1.rackcdn.com/openstack-conceptual-arch-folsom.jpg Swift
  • 12. What is OpenStack? An Open Source Set of Cloud Technologies • Compute (codenamed "Nova") provides virtual servers upon demand. • Image (codenamed "Glance") provides a catalog and repository for virtual • • • • • disk images. These disk images are mostly commonly used in OpenStack Compute. Dashboard (codenamed "Horizon") provides a modular web-based user interface for all the OpenStack services. Used to perform most operations like launching an instance, assigning IP addresses and setting access controls. Identity (codenamed "Keystone") provides authentication and authorization for all the OpenStack services. It also provides a service catalog of services within a particular OpenStack cloud. Object Store (codenamed "Swift") provides object storage. It allows you to store or retrieve files (but not mount directories like a fileserver). Block Storage (codenamed "Cinder") provides persistent block storage to guest VMs. Network (codenamed “Neutron") provides "network connectivity as a service" between interface devices managed by other OpenStack services.
  • 13. OpenStack Overall Architecture Compute Horizon Neutron Glance Nova Cinder Keystone Swift
  • 14. OpenStack Nova Compute - Introduction • OpenStack Compute is a tool to orchestrate a cloud, including running instances, managing networks, and controlling access to the cloud through users and projects. • The underlying open source project's name is Nova, and it provides the software that can control an Infrastructure as a Service (IaaS) cloud computing platform. • It is similar in scope to Amazon EC2 and Rackspace Cloud Servers. • OpenStack Compute does not include any virtualization software; rather it defines drivers that interact with underlying virtualization mechanisms that run on a host operating system, and exposes functionality over a web-based API.
  • 15. OpenStack Nova Compute – Message Queue • Nova-compute is a worker daemon, which primarily creates and terminates VMs via hypervisor API.
  • 16. OpenStack Nova Compute – Supported Hypervisors • The process for selecting a hypervisor usually means prioritizing and making decisions based on budget and resource constraints as well as the list of supported features and required technical specifications. • Most development is done on KVM and Xen-based hypervisors • With OpenStack Compute, you can orchestrate clouds using multiple hypervisors in different zones. • KVM - Kernel-based Virtual Machine. The virtual disk formats that it supports it inherits from QEMU since it uses a modified QEMU program to launch the virtual machine. The supported formats include raw images, the qcow2, and VMware formats. • LXC - Linux Containers (through libvirt), use to run Linux-based virtual machines. • QEMU - Quick EMUlator, generally only used for development purposes.
  • 17. OpenStack Nova Compute – Supported Hypervisors • UML - User Mode Linux, generally only used for development • • • • • purposes. VMWare vSphere 4.1 update 1 and newer, runs VMWare-based Linux and Windows images through a connection with a vCenter server or directly with an ESXi host. Xen - XenServer, Xen Cloud Platform (XCP), use to run Linux or Windows virtual machines. You must install the nova-compute service in a para-virtualized VM. PowerVM - Server virtualization with IBM PowerVM, use to run AIX, IBM i and Linux environments on IBM POWER technology. Hyper-V - Server virtualization with Microsoft's Hyper-V, use to run Windows, Linux, and FreeBSD virtual machines. Runs nova-compute natively on the Windows virtualization platform. Bare Metal - Not a hypervisor in the traditional sense, this driver provisions physical hardware via pluggable sub-drivers (eg. PXE for image deployment, and IPMI for power management).
  • 18. OpenStack Overall Architecture – Image Store Horizon • Glance Neutron Glance Nova Cinder Keystone Swift
  • 19. OpenStack Glance – Introduction • The Glance project provides services for discovering, registering, and retrieving virtual machine images. Glance has a RESTful API that allows querying of VM image metadata as well as retrieval of the actual image • Basically a database and some tools • VM images made available through Glance can be stored in a variety of locations: • Simple filesystems like ZFS, LVM, etc. • Direct attached storage • Object-storage systems like OpenStack Swift project or S3 • Block storage like OpenStack Cinder project
  • 20. OpenStack Glance – Reference Architecture
  • 21. OpenStack Overall Architecture Dashboard Horizon • Horizon Neutron Glance Nova Cinder Keystone Swift
  • 22. OpenStack Horizon Dashboard – Introduction Horizon Basic Operations • Provides a baseline user • From UI • Login in to Horizon • Specify parameters of VM in “create VM” form • Hit “create” button interface for managing OpenStack Services • Stateless • Error handling is delegated to back-end • Doesn’t support all API functions • Can use memcached or database to store sessions • Gets updated via nova-api polling • Under the Hood • Form parameters are converted to Post data • “Create” request initiates HTTP POST request to back-end • To Keystone if authorization token is not cached • To nova-api if authorization token has not yet expired
  • 23. OpenStack Horizon Dashboard – Reference Architecture Horizon End Users Administrators
  • 25. OpenStack Overall Architecture - Security Horizon • Keystone Neutron Glance Nova Cinder Keystone Adapted from : http://26a0ff8ca8ba32139f7d-db711c577a50b6bdc946ea71aaca027d.r97.cf1.rackcdn.com/openstack-conceptual-arch-folsom.jpg Swift
  • 26. OpenStack Security - Keystone Introduction • Keystone provides a single point of integration for OpenStack policy, catalog, token and authentication. • Keystone handles API requests as well as providing configurable catalog, policy, token and identity services. • Communicates via OpenStack Identity API (version 2) • Each Keystone function has a pluggable backend which allows different ways to use the particular service. • Standard backends include LDAP or SQL, as well as Key Value Stores (KVS). • Most commonly used in delegated authorization deployments • Most people will use this as a point of customization for their current authentication services.
  • 27. Keystone relationship to other OpenStack Elements
  • 28. OpenStack Overall Architecture - Storage Horizon • Swift and Cinder Neutron Glance Nova Cinder Keystone Swift
  • 29. OpenStack Storage - Introduction • Storage is found in many parts of the OpenStack stack, and the differing types can cause confusion to even experienced cloud Volumes block storage engineers. On-instance / ephemeral Object Storage (Swift) (Cinder) Used for running Operating System and scratch space Used for adding additional persistent storage to a virtual machine (VM) Used for storing virtual machine images and data Persists until VM is terminated Persists until deleted Persists until deleted Access associated with a VM Access associated with a VM Available from anywhere Implemented as a filesystem underlying OpenStack Compute Mounted via OpenStack BlockStorage controlled protocol (for example, iSCSI) REST API Administrator configures size setting, based on flavors Sizings based on need Easily scalable for future growth Example: 10GB first disk, 30GB/core second disk Example: 1TB "extra hard drive" Example: 10s of TBs of dataset storage
  • 30. OpenStack Storage - Uses • The two common use cases for providing object storage in a compute cloud are: • To provide users with a persistent storage mechanism • As a scalable, reliable data store for virtual machine images
  • 31. OpenStack Storage - Swift Key Features
  • 32. OpenStack Storage - Swift Architecture Disk Server/Node Zone Multiple zones make up a Region
  • 33. OpenStack Storage – Cinder Architecture
  • 34. OpenStack Storage – Cinder Introduction • Cinder separates out the persistent block storage functionality that was previously part of OpenStack Compute into its own service. • The OpenStack Block Storage API allows for manipulation of volumes, volume types (similar to compute flavors) and volume snapshots. • cinder-api accepts API requests and routes them to cinder-volume for action. • cinder-volume acts upon the requests by reading or writing to the Cinder database to maintain state, interacting with other processes (like cinder-scheduler) through a message queue and directly upon block storage providing hardware or software. • It can interact with a variety of storage providers through a driver architecture. • Available drivers: IBM, SolidFire, NetApp, Nexenta, Zadara, linux iSCSI and other storage providers. • Much like nova-scheduler, the cinder-scheduler daemon picks the optimal block storage provider node to create the volume on. • Cinder deployments will also make use of a messaging queue to route information between the cinder processes as well as a database to store volume state. • Like Neutron, Cinder will mainly interact with Nova, providing volumes for its instances.
  • 35. OpenStack Overall Architecture - Network Horizon • Neutron – Software Defined Networking Neutron Glance Nova Cinder Keystone Swift
  • 36. OpenStack Network – Neutron Introduction • Neutron is an OpenStack project to provide "networking as a service" between interface devices (e.g., vNICs) managed by other OpenStack services (e.g., nova). • Starting in the Folsom release, Neutron is a core and supported part of the OpenStack platform
  • 37. OpenStack Network - Neutron Deployment • Sample Deployment Model
  • 38. OpenStack Network - Neutron Architecture • Plugin and Agent Summary
  • 39. Icehouse Official Projects • Integrated Projects (Icehouse release) • OpenStack Compute (nova): https://launchpad.net/nova • OpenStack Object Storage (swift): https://launchpad.net/swift • OpenStack Image Service (glance): https://launchpad.net/glance • OpenStack Identity (keystone): https://launchpad.net/keystone • OpenStack Dashboard (horizon): https://launchpad.net/horizon • OpenStack Networking (Neutron): https://launchpad.net/Neutron • OpenStack Block Storage service (cinder): https://launchpad.net/cinder • Ceilometer: https://launchpad.net/ceilometer • Heat: https://launchpad.net/heat
  • 40. OpenStack Icehouse Roadmap Highlights • Database Service (Trove) - Scalable and reliable Cloud • • • • Database as a Service provisioning functionality for both relational and non-relational database engines Bare Metal (Ironic) - Provides an API for management and provisioning of physical machines. Queue Service (Marconi) - message queueing API and service for distributed application messaging Data Processing (Savannah) – Hadoop on OpenStack Icehouse Release Features and Status: http://wiki.openstack.org/releasestatus/
  • 41. Additional Resources • http://www.openstack.org/ - Main site • http://docs.openstack.org/trunk/openstack• • • • • • compute/admin/content/ch_getting-started-with-openstack.html http://docs.openstack.org/trunk/openstack-compute/admin/bkcompute-adminguide-trunk.pdf - Current OpenStack computer Administration Manual – Dec 18, 2012 http://www.openstack.org/software/start/ - How To Get Started With OpenStack https://github.com/mseknibilel/OpenStack-Folsom-Installguide/blob/master/OpenStack_Folsom_Install_Guide_WebVers ion.rst - OpenStack Folsom Install Guide http://www.packtpub.com/openstack-cloud-computingcookbook/book OpenStack Cloud Computing Cookbook http://www.openstack.org/blog/tag/training/ - Tag: Training