How To Use Openstack (And Piston) For Your Cloud Computing

Size: px
Start display at page:

Download "How To Use Openstack (And Piston) For Your Cloud Computing"

Transcription

1

2 IN MANY OF OUR CONVERSATIONS WITH CUSTOMERS AND PROSPECTS, WE HAVE DISCOVERED AN INTERESTING INFORMATION GAP. Overview The technology behind OpenStack compute was first used at NASA, to power the private cloud that hosted applications for NASA s partnerships with the White House (USASpending.gov), Microsoft (WorldWide Telescope), and Google (Google Mars). It now also powers the Rackspace Cloud, HP Cloud and IBM cloud, as well as hundreds of other public and private clouds for tens of thousands of users. It was first released as open source in May of 2010, under an Apache License. Most business unit owners already understand the benefits that they ought to be getting from their private cloud project (increased agility, reduced operational expenditure, improved overall IT security, etc.). But while we ve spent time explaining the benefits of private cloud, we haven t spent much time describing the specific IT services that OpenStack (and Piston) provide. Consider this a primer. 2

3 GOVERNED BY THE OPENSTACK FOUNDATION The OpenStack Foundation, a non-profit corporate entity, was established in September 2012 to manage the OpenStack project and fulfill the OpenStack mission of becoming the ubiquitous cloud platform. As the independent home for OpenStack, the Foundation has more than 15,000 individual members from more than 135 countries and 850 different organizations. The OpenStack Foundation promotes the development, distribution, and adoption of the OpenStack cloud framework. The goal of the OpenStack Foundation is to serve developers, users, and the entire ecosystem by providing a set of shared resources to grow the footprint of public and private OpenStack clouds, enable technology vendors targeting the platform, and assist developers in producing the best cloud software in the industry. Like the software, individual membership within the OpenStack Foundation is free and accessible to anyone. Its Platinum, Gold, and Corporate Sponsors also support the Foundation via both financial and code contributions. The OpenStack Foundation has three separate governance bodies: 1. THE TECHNICAL COMMITTEE MEMBERS define and steward the technical direction of OpenStack software, including cross-program issues. The committee of 13 is elected by the community s active technical contributors. 2. THE BOARD OF DIRECTORS provides strategic and financial oversight of foundation resources and staff, and manages the trademark and brand policy. 3. THE USER COMMITTEE represents a broad set of enterprise, academic, and service provider users to the technical committee and board of directors. 3

4 CONTRIBUTED TO BY HUNDREDS OF COMMUNITY MEMBERS With more than 200 companies and 2,000+ developers contributing to the code, OpenStack is the result of the world s brightest minds and companies working together to meet the world s cloud computing needs. In November of 2013, during the OpenStack Ice House Summit in Hong Kong, the DefCore committee was formed to clarify how the OpenStack brand is applied to commercial uses. OpenStack s DefCore committee is charged with defining and promulgating what is actually the OpenStack Core and also helps with compatibility clarity. The scope will likely expand since brand is an ongoing concern related to specialized marks and other use cases. The OpenStack community is a loose coalition of enterprise-level companies partnered to meet their development needs. Some of the largest companies in IT run public cloud services (HP, Rackspace, Dreamhost, and IBM), powered by OpenStack. New OpenStack private clouds are coming online across the globe daily. If interoperability is important, OpenStack is important. Development is driven by the needs of hundreds of enterprise and research organizations, so OpenStack doesn t play favorites. This ensures your organization isn t locked into a proprietary architecture. OpenStack has a well-defined, standard interface that gives you portability across hardware and software vendors. Your applications can move from behind-the-firewall private cloud deployments, to public clouds across the world. 4

5 OPENSTACK RELEASE HISTORY The OpenStack community collaborates around a six-month, time-based release cycle, with frequent development milestones. Most commercial products use stable branches of older releases as the basis for their solutions. VERSIONS & RELEASE DATES 5

6

7 Understanding OpenStack: A Framework for Infrastructure Cloud with Interfaces dashboard and a set of command line tools, or via the native OpenStack APIs. Written primarily in Python, OpenStack is an open source, infrastructure-as-a-service framework. In this context, infrastructure means an abstraction from physical resources on a per-server basis, to logical resources allocated out of aggregated resource pools. The three kinds of infrastructure in core OpenStack are: Storage (Swift and Cinder) Compute (Nova and Glance) Networking (Nova-net and Neutron) Allocation out of these pools of compute, storage, and networking resources is managed through a self-service web 7

8 COMPUTE: Let a thousand flowers boot Starting a virtual server in the OpenStack world begins with the selection of a base disk image from which to boot. Most enterprises will supply a set of patched and approved base images with an operating system and perhaps a limited number of applications. From here, a DevOps 1 user will typically take one of two paths: either customize this image, installing the applications they need for their project, and then make a new image out of it; or use a configuration management tool to perform such an install and configuration after the virtual machine is started. launch thousands of instances from a single disk image and customize them using one of the two methods described above. With more complex n-tier applications, the runtime configuration of these many instances (so that all of your app servers are aware of, and able to connect to, all of your database servers, for instance) is often managed using an orchestration tool. These days, clever DevOps engineers may do this using their configuration management tool directly. In order to manage the network access to these instances, there are a set of APIs and services that interconnect the OpenStack Compute service with OpenStack Networking. When your virtual server is launched, the disk image is cloned from the image registry, onto your shared storage. This means that changes to your virtual server do not automatically change the base image it was launched from. It also means that you can 1 DevOps (a contraction of development- operations) is an emerging set of principles, methods and practices for communication, collaboration, and integration between software development (application/ software engineering) and IT operations (systems administration/infrastructure) professionals. 8

9 In order to really take advantage of the elasticity of your cloud environment, it s best to treat the storage of your application s data as separate from the running compute instances. Which brings us to the next couple of services: volumes and object storage. STORAGE: Better, faster, stronger, cost-efficient-er Block Storage The OpenStack volumes service delivers much the same benefits that you would get out of a traditional NAS or SAN filer a block devices that can be attached to your running virtual server via iscsi or another standard storage protocol. Unlike a NAS or SAN device, however, OpenStack volumes are provisioned from a self-service API, and can be programmatically attached or detached. It s software-defined block storage. Object Storage By now, most people who work in IT are familiar with S3, Amazon s pioneering object storage system. By giving up posix semantics (for example, those software layers that make storage look attached to a particular machine, and in particular allow programs to map such storage directly to memory), Amazon was able to build an incredibly scalable, incredibly reliable storage infrastructure that spans the entire globe. And that s what you get with OpenStack near-infinite scale-out storage of data objects, or blobs. 9

10 NETWORKING: SDN of awesome! make sure that the features you plan on using within OpenStack are supported by your networking hardware and your chosen SDN solution. Easily the most complex of the OpenStack services, OpenStack networking is nonetheless a powerful and critical tool in your cloud arsenal. It allows you to provision arbitrary Layer 2 and Layer 3 virtual networks and secure those networks with a sophisticated set of firewall rules. The good news is that, at least in popular OpenStack distributions, the basics work right out of the box. Each tenant defined in your authentication system is allocated a virtual network, and your virtual servers and volumes are assigned IP addresses within that network, typically using a DHCP server that s also managed by OpenStack Network. But it s also possible to attach additional network interfaces to your virtual servers, to statically assign IPs using privileged guest agents within your virtual machines, and to isolate and secure your projects with 802.1Q-based VLANs or PVLANs. Best practices in networking are cautioned here. Liberally apply the KISS principle. Start by mapping your private cloud environment to your existing network policies and move forward slowly from there. Its revolutionary technology, but an evolutionary approach can save you trouble in the long run. Also, 10

11 INTERFACES Dashboard: A GUI to get you going OPENSTACK SERVICES All the infrastructure, all the time While most of OpenStack s true power is under the hood (you can t imagine how exciting it is to watch virtual machines springing into existence based on the network or CPU load of your application), a straightforward user and admin dashboard makes it easy to get up-and-running quickly. The dashboard is just one way to interact with OpenStack resources. Developers can automate access or build tools to manage their resources using the native OpenStack API or one of a number of compatibility APIs (including EC2 and GCE). The OpenStack services, when implemented together, provide an incredibly flexible self-service infrastructure platform. They are the low-level building blocks of any scalable cloud offering. In order to get comfortable using them, start with the OpenStack dashboard and then try the OpenStack command line clients. Finally, experiment with direct language bindings, allowing your software to manage its own infrastructure, or graduate to orchestration tools or configuration management tools. When you ve wrapped your head around the power and flexibility of API-driven infrastructure, the possibilities are endless. 11

12

13

14 Piston was started by co-founders of OpenStack, and we continue to advocate the open source community, but we are not an open source company. OpenStack code, Piston supports each previous release until newer versions have been hardened through further community testing and bug fixing. A FOOTNOTE ON PISTON Piston is the best and easiest way to run OpenStack. Unlike many of the other OpenStack software distributions, Piston does not focus on building on top of the OpenStack framework, but rather underneath it. While some OpenStack vendors focus on delivering the most current and bleeding-edge OpenStack code, we pride ourselves on delivering an amazing OpenStack experience; therefore, we ship only the most stable and hardened version of OpenStack available, and only those components that are ready for production use. Piston CloudOS with OpenStack supports all of the core components of the OpenStack framework, a hardened Linux micro-os, and a curated set of virtualization drivers for compute, storage, and networking. In addition, Piston CloudOS automates the complexity involved in configuring and managing them, enabling simple scalability and providing an incredible out-ofthe-box enterprise-grade experience. From day one, Piston has focused on making a complete turn-key private cloud software solution for enterprises wanting all of the goodness of an onpremise OpenStack cloud, with none of the fuss of operating it. Ready to try running OpenStack? Talk with a Piston Solutions Engineer and get started today. pistoncloud.com/start/ Rather than shipping the latest and most recent version of 14

Overview IN MANY OF OUR CONVERSATIONS WITH CUSTOMERS AND PROSPECTS, WE HAVE DISCOVERED AN INTERESTING INFORMATION GAP.

Overview IN MANY OF OUR CONVERSATIONS WITH CUSTOMERS AND PROSPECTS, WE HAVE DISCOVERED AN INTERESTING INFORMATION GAP. IN MANY OF OUR CONVERSATIONS WITH CUSTOMERS AND PROSPECTS, WE HAVE DISCOVERED AN INTERESTING INFORMATION GAP. Overview The technology behind OpenStack compute was first used at NASA, to power the private

More information

cloud functionality: advantages and Disadvantages

cloud functionality: advantages and Disadvantages Whitepaper RED HAT JOINS THE OPENSTACK COMMUNITY IN DEVELOPING AN OPEN SOURCE, PRIVATE CLOUD PLATFORM Introduction: CLOUD COMPUTING AND The Private Cloud cloud functionality: advantages and Disadvantages

More information

PISTON CLOUDOS WITH OPENSTACK: TURN-KEY WEB-SCALE INFRASTRUCTURE SOFTWARE. Easy. CloudOS Compendium TECHNICAL WHITEPAPER

PISTON CLOUDOS WITH OPENSTACK: TURN-KEY WEB-SCALE INFRASTRUCTURE SOFTWARE. Easy. CloudOS Compendium TECHNICAL WHITEPAPER PISTON CLOUDOS WITH OPENSTACK: TURN-KEY WEB-SCALE INFRASTRUCTURE SOFTWARE applications use Piston CloudOS with OpenStack to automate their IT operations and bring new products to market faster. Piston

More information

Virtual Datacenter or Virtualization in the datacenter. (OpenStack) Larry Rudolph

Virtual Datacenter or Virtualization in the datacenter. (OpenStack) Larry Rudolph Virtual Datacenter or Virtualization in the datacenter (OpenStack)! Larry Rudolph A merge of several public presentations Rackspace & NASA started it off, and OpenStack has grown dramatically All possible

More information

Clodoaldo Barrera Chief Technical Strategist IBM System Storage. Making a successful transition to Software Defined Storage

Clodoaldo Barrera Chief Technical Strategist IBM System Storage. Making a successful transition to Software Defined Storage Clodoaldo Barrera Chief Technical Strategist IBM System Storage Making a successful transition to Software Defined Storage Open Server Summit Santa Clara Nov 2014 Data at the core of everything Data is

More information

Software Defined Networking (SDN) and OpenStack. Christian Koenning

Software Defined Networking (SDN) and OpenStack. Christian Koenning Software Defined Networking (SDN) and OpenStack Christian Koenning Driving Towards an Application Centric World IT/Ops Struggle to Deliver SDDC/Cloud Mobility Internet of things Advanced threats Lines

More information

Mobile Cloud Computing T-110.5121 Open Source IaaS

Mobile Cloud Computing T-110.5121 Open Source IaaS Mobile Cloud Computing T-110.5121 Open Source IaaS Tommi Mäkelä, Otaniemi Evolution Mainframe Centralized computation and storage, thin clients Dedicated hardware, software, experienced staff High capital

More information

Software-Defined Networks Powered by VellOS

Software-Defined Networks Powered by VellOS WHITE PAPER Software-Defined Networks Powered by VellOS Agile, Flexible Networking for Distributed Applications Vello s SDN enables a low-latency, programmable solution resulting in a faster and more flexible

More information

Cloud Computing using

Cloud Computing using Cloud Computing using Summary of Content Introduction of Cloud Computing Cloud Computing vs. Server Virtualization Cloud Computing Components Stack Public vs. Private Clouds Open Source Software for Private

More information

OpenStack The State of the Stack

OpenStack The State of the Stack OpenStack The State of the Stack Heidi Bretz, Dir Business Development, OpenStack Foundation Stefano Maffulli, Director of OpenStack Community Mariano Cunietti, CTO, Enter.it OpenStack Software for Building

More information

NEXT-GENERATION, CLOUD-BASED SERVER MONITORING AND SYSTEMS MANAGEMENT

NEXT-GENERATION, CLOUD-BASED SERVER MONITORING AND SYSTEMS MANAGEMENT NEXT-GENERATION, CLOUD-BASED SERVER MONITORING AND SYSTEMS MANAGEMENT COVERS INTRODUCTION A NEW APPROACH CUSTOMER USE CASES FEATURES ARCHITECTURE V 1.0 INTRODUCTION & OVERVIEW Businesses use computers

More information

OpenStack Introduction. November 4, 2015

OpenStack Introduction. November 4, 2015 OpenStack Introduction November 4, 2015 Application Platforms Undergoing A Major Shift What is OpenStack Open Source Cloud Software Launched by NASA and Rackspace in 2010 Massively scalable Managed by

More information

The Virtualization Practice

The Virtualization Practice The Virtualization Practice White Paper: Managing Applications in Docker Containers Bernd Harzog Analyst Virtualization and Cloud Performance Management October 2014 Abstract Docker has captured the attention

More information

7 Ways OpenStack Enables Automation & Agility for KVM Environments

7 Ways OpenStack Enables Automation & Agility for KVM Environments 7 Ways OpenStack Enables Automation & Agility for KVM Environments Table of Contents 1. Executive Summary 1 2. About Platform9 Managed OpenStack 2 3. 7 Benefits of Automating your KVM with OpenStack 1.

More information

OpenStack IaaS. Rhys Oxenham OSEC.pl BarCamp, Warsaw, Poland November 2013

OpenStack IaaS. Rhys Oxenham OSEC.pl BarCamp, Warsaw, Poland November 2013 OpenStack IaaS 1 Rhys Oxenham OSEC.pl BarCamp, Warsaw, Poland November 2013 Disclaimer The information provided within this presentation is for educational purposes only and was prepared for a community

More information

Adrian Otto, Rackspace @adrian_otto

Adrian Otto, Rackspace @adrian_otto Adrian Otto, Rackspace @adrian_otto Ancient History RackSpace Cloud Files Swift NASA Nova OpenStack born with 25 participating companies! Mission Statement "To produce the ubiquitous Open Source cloud

More information

RED HAT OPENSTACK PLATFORM A COST-EFFECTIVE PRIVATE CLOUD FOR YOUR BUSINESS

RED HAT OPENSTACK PLATFORM A COST-EFFECTIVE PRIVATE CLOUD FOR YOUR BUSINESS WHITEPAPER RED HAT OPENSTACK PLATFORM A COST-EFFECTIVE PRIVATE CLOUD FOR YOUR BUSINESS INTRODUCTION The cloud is more than a marketing concept. Cloud computing is an intentional, integrated architecture

More information

OpenStack Awareness Session

OpenStack Awareness Session OpenStack Awareness Session Affan A. Syed Director Engineering, PLUMgrid Inc. Pakistan Telecommunication Authority, Oct 20 th, 2015 PLUMgrid s Mission Deliver comprehensive virtual networking solutions

More information

CLOUDSTACK VS OPENSTACK. Apache CloudStack: It Just Works for Service Providers

CLOUDSTACK VS OPENSTACK. Apache CloudStack: It Just Works for Service Providers Apache CloudStack: It Just Works for Service Providers TABLE OF CONTENTS Introduction 03 Platform History 05 Underlying Technology 09 Commitment to CloudStack 19 What Does this Mean for You? 23 2 INTRODUCTION

More information

Cloud for Your Business

Cloud for Your Business Whitepaper Red Hat Enterprise Linux OpenStack Platform A Cost-Effective Private Cloud for Your Business Introduction The cloud is more than a marketing concept. Cloud computing is an intentional, integrated

More information

With Red Hat Enterprise Virtualization, you can: Take advantage of existing people skills and investments

With Red Hat Enterprise Virtualization, you can: Take advantage of existing people skills and investments RED HAT ENTERPRISE VIRTUALIZATION DATASHEET RED HAT ENTERPRISE VIRTUALIZATION AT A GLANCE Provides a complete end-toend enterprise virtualization solution for servers and desktop Provides an on-ramp to

More information

Elastic Private Clouds

Elastic Private Clouds White Paper Elastic Private Clouds Agile, Efficient and Under Your Control 1 Introduction Most businesses want to spend less time and money building and managing IT infrastructure to focus resources on

More information

HP OpenStack & Automation

HP OpenStack & Automation HP OpenStack & Automation Where we are heading Thomas Goh Cloud Computing Cloud Computing Cloud computing is a model for enabling ubiquitous network access to a shared pool of configurable computing resources.

More information

Using SUSE Cloud to Orchestrate Multiple Hypervisors and Storage at ADP

Using SUSE Cloud to Orchestrate Multiple Hypervisors and Storage at ADP Using SUSE Cloud to Orchestrate Multiple Hypervisors and Storage at ADP Agenda ADP Cloud Vision and Requirements Introduction to SUSE Cloud Overview Whats New VMWare intergration HyperV intergration ADP

More information

OpenStack Launches as Independent Foundation, Begins Work Protecting, Empowering and Promoting OpenStack

OpenStack Launches as Independent Foundation, Begins Work Protecting, Empowering and Promoting OpenStack OpenStack Launches as Independent Foundation, Begins Work Protecting, Empowering and Promoting OpenStack Foundation Provides Shared Resources and Long-term Home for Fastest Growing Open Source Cloud Community

More information

How To Compare Cloud Computing To Cloud Platforms And Cloud Computing

How To Compare Cloud Computing To Cloud Platforms And Cloud Computing Volume 3, Issue 11, November 2013 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Cloud Platforms

More information

Copyright 2014, Oracle and/or its affiliates. All rights reserved. 2

Copyright 2014, Oracle and/or its affiliates. All rights reserved. 2 2 CON8358 - Building a Private Cloud with OpenStack Oracle OpenStack for Oracle Linux Ronen Kofman Director of Product Development Oracle OpenStack September, 2014 Safe Harbor Statement The following is

More information

Is OpenStack the best path forward towards successful Clouds? Cor van der Struijf Senior Cloud Advisor corvds@nl.ibm.com

Is OpenStack the best path forward towards successful Clouds? Cor van der Struijf Senior Cloud Advisor corvds@nl.ibm.com Is OpenStack the best path forward towards successful Clouds? Cor van der Struijf Senior Cloud Advisor corvds@nl.ibm.com What is the best path forward? I was just wondering if you could help me find my

More information

Cloud Computing #8 - Datacenter OS. Johan Eker

Cloud Computing #8 - Datacenter OS. Johan Eker Cloud Computing #8 - Datacenter OS Johan Eker Outline What is a Datacenter OS? OpenStack Kubernetes Resource Management What is an OS? What is an OS? Manage hardware resources such as CPU, RAM, disk, I/O,

More information

RED HAT ENTERPRISE LINUX OPENSTACK PLATFORM

RED HAT ENTERPRISE LINUX OPENSTACK PLATFORM RED HAT ENTERPRISE LINUX OPENSTACK PLATFORM OPEN CLOUD INFRASTRUCTURE BUILT ON RED HAT TECHNOLOGIES Jason Callaway Senior Solutions Architect April 22 2014 I.T. CHALLENGES WORKLOADS ARE EVOLVING CLOUD

More information

OpenStack. Orgad Kimchi. Principal Software Engineer. Oracle ISV Engineering. 1 Copyright 2013, Oracle and/or its affiliates. All rights reserved.

OpenStack. Orgad Kimchi. Principal Software Engineer. Oracle ISV Engineering. 1 Copyright 2013, Oracle and/or its affiliates. All rights reserved. OpenStack Orgad Kimchi Principal Software Engineer Oracle ISV Engineering 1 Copyright 2013, Oracle and/or its affiliates. All rights reserved. Safe Harbor Statement The following is intended to outline

More information

HP and the Open Cloud

HP and the Open Cloud White Paper HP and the Open Cloud Building and Enabling the Open Cloud for Your Business Executive Summary HP believes that an open development model is the only way to foster needed cloud standards, remove

More information

OPEN CLOUD INFRASTRUCTURE BUILT FOR THE ENTERPRISE

OPEN CLOUD INFRASTRUCTURE BUILT FOR THE ENTERPRISE RED HAT ENTERPRISE LINUX OPENSTACK PLATFORM OPEN CLOUD INFRASTRUCTURE BUILT FOR THE ENTERPRISE Arthur Enright Principal Product Manager Virtulization Business Unit I.T. CHALLENGES WORKLOADS ARE EVOLVING

More information

AURO Enterprise Cloud

AURO Enterprise Cloud AURO Enterprise Cloud White Paper: How AURO Elimitates Vendor Lock In How AURO Eliminates Cloud Lock- In Cloud computing today is significantly improving enterprises and business IT speed, agility and

More information

How an Open Source Cloud Will Help Keep Your Cloud Strategy Options Open

How an Open Source Cloud Will Help Keep Your Cloud Strategy Options Open How an Open Source Cloud Will Help Keep Your Cloud Strategy Options Open Simon Briggs Technology Specialist simon@suse.com Open Source = openmind 3 Protect Investment & Work Together 4 Cloud Definitions

More information

Sunshine in a Cloudy World

Sunshine in a Cloudy World Sunshine in a Cloudy World OpenStack 101, HP and OpenStack Jeff Holderfield jeffh@hp.com @jeffholderfield Copyright 2014 Hewlett-Packard Development Company, L.P. The information contained herein is subject

More information

Outline. Why Neutron? What is Neutron? API Abstractions Plugin Architecture

Outline. Why Neutron? What is Neutron? API Abstractions Plugin Architecture OpenStack Neutron Outline Why Neutron? What is Neutron? API Abstractions Plugin Architecture Why Neutron? Networks for Enterprise Applications are Complex. Image from windowssecurity.com Why Neutron? Reason

More information

Getting Started with OpenStack and VMware vsphere TECHNICAL MARKETING DOCUMENTATION V 0.1/DECEMBER 2013

Getting Started with OpenStack and VMware vsphere TECHNICAL MARKETING DOCUMENTATION V 0.1/DECEMBER 2013 Getting Started with OpenStack and VMware vsphere TECHNICAL MARKETING DOCUMENTATION V 0.1/DECEMBER 2013 Table of Contents Introduction.... 3 1.1 VMware vsphere.... 3 1.2 OpenStack.... 3 1.3 Using OpenStack

More information

A Call to Arms for Private Cloud Builders March 26, 2013

A Call to Arms for Private Cloud Builders March 26, 2013 A Call to Arms for Private Cloud Builders Your Presenters Today Randy Bias CTO, Co-founder, Cloudscaling Director, OpenStack Foundation @randybias John Wetherill Developer/Evangelist, ActiveState @bcferrycoder

More information

WHITE PAPER. Software Defined Storage Hydrates the Cloud

WHITE PAPER. Software Defined Storage Hydrates the Cloud WHITE PAPER Software Defined Storage Hydrates the Cloud Table of Contents Overview... 2 NexentaStor (Block & File Storage)... 4 Software Defined Data Centers (SDDC)... 5 OpenStack... 5 CloudStack... 6

More information

Eliminates Cloud Lock-In

Eliminates Cloud Lock-In Cloud computing today is significantly improving enterprises and business IT speed, agility and costs. However, companies fear technology lock-in when engaging proprietary public clouds and it has become

More information

Develop a process for applying updates to systems, including verifying properties of the update. Create File Systems

Develop a process for applying updates to systems, including verifying properties of the update. Create File Systems RH413 Manage Software Updates Develop a process for applying updates to systems, including verifying properties of the update. Create File Systems Allocate an advanced file system layout, and use file

More information

10.04 LTS Server Edition

10.04 LTS Server Edition 10.04 LTS Server Edition The secret s out Ubuntu used to be the data centre s best kept secret. But now everybody s talking about it. WETA Digital, Qualcomm, Wikipedia, Agora Games, The French Police

More information

SDN v praxi overlay sítí pro OpenStack. 5.10.2015 Daniel Prchal daniel.prchal@hpe.com

SDN v praxi overlay sítí pro OpenStack. 5.10.2015 Daniel Prchal daniel.prchal@hpe.com SDN v praxi overlay sítí pro OpenStack 5.10.2015 Daniel Prchal daniel.prchal@hpe.com Agenda OpenStack OpenStack Architecture SDN Software Defined Networking OpenStack Networking HP Helion OpenStack HP

More information

HP Cloud OS. Платформа OpenStack корпоративного уровня. Иван Кровяков Архитектор облачных решений HP Центральная и Восточная Европа

HP Cloud OS. Платформа OpenStack корпоративного уровня. Иван Кровяков Архитектор облачных решений HP Центральная и Восточная Европа HP Cloud OS Платформа OpenStack корпоративного уровня Иван Кровяков Архитектор облачных решений HP Центральная и Восточная Европа What is OpenStack Software Massively scalable cloud operating system that

More information

CloudCenter Full Lifecycle Management. An application-defined approach to deploying and managing applications in any datacenter or cloud environment

CloudCenter Full Lifecycle Management. An application-defined approach to deploying and managing applications in any datacenter or cloud environment CloudCenter Full Lifecycle Management An application-defined approach to deploying and managing applications in any datacenter or cloud environment CloudCenter Full Lifecycle Management Page 2 Table of

More information

Does Cloud Computing Still Matter? A Mainframer s Update. The trouble with cloud.

Does Cloud Computing Still Matter? A Mainframer s Update. The trouble with cloud. Glenn Anderson, IBM Lab Services and Training Does Cloud Computing Still Matter? A Mainframer s Update STL CMG January 2014 2013 IBM Corporation The trouble with cloud. The term cloud computing is used

More information

Understand IBM Cloud Manager V4.2 for IBM z Systems

Understand IBM Cloud Manager V4.2 for IBM z Systems Understand IBM Cloud Manager V4.2 for IBM z Systems Kershaw Mehta kershaw@us.ibm.com August 14, 2015 Many organizations begin the cloud journey with a local cloud Organizations are looking for benefits

More information

Solution Brief. Deliver Production Grade OpenStack LBaaS with Citrix NetScaler. citrix.com

Solution Brief. Deliver Production Grade OpenStack LBaaS with Citrix NetScaler. citrix.com Solution Brief Deliver Production Grade OpenStack LBaaS with Citrix NetScaler Enterprises are increasingly turning to private cloud architectures for increased agility and greater operational efficiency

More information

Sistemi Operativi e Reti. Cloud Computing

Sistemi Operativi e Reti. Cloud Computing 1 Sistemi Operativi e Reti Cloud Computing Facoltà di Scienze Matematiche Fisiche e Naturali Corso di Laurea Magistrale in Informatica Osvaldo Gervasi ogervasi@computer.org 2 Introduction Technologies

More information

SWIFT. Page:1. Openstack Swift. Object Store Cloud built from the grounds up. David Hadas Swift ATC. HRL davidh@il.ibm.com 2012 IBM Corporation

SWIFT. Page:1. Openstack Swift. Object Store Cloud built from the grounds up. David Hadas Swift ATC. HRL davidh@il.ibm.com 2012 IBM Corporation Page:1 Openstack Swift Object Store Cloud built from the grounds up David Hadas Swift ATC HRL davidh@il.ibm.com Page:2 Object Store Cloud Services Expectations: PUT/GET/DELETE Huge Capacity (Scale) Always

More information

OPENSTACK IN THE ENTERPRISE Best practices for deploying enterprise-grade OpenStack implementations

OPENSTACK IN THE ENTERPRISE Best practices for deploying enterprise-grade OpenStack implementations WHITEPAPER OPENSTACK IN THE ENTERPRISE Best practices for deploying enterprise-grade OpenStack implementations Vinny Valdez INTRODUCTION 64% of IT managers have OpenStack on their technology roadmaps.

More information

Ubuntu OpenStack on VMware vsphere: A reference architecture for deploying OpenStack while limiting changes to existing infrastructure

Ubuntu OpenStack on VMware vsphere: A reference architecture for deploying OpenStack while limiting changes to existing infrastructure TECHNICAL WHITE PAPER Ubuntu OpenStack on VMware vsphere: A reference architecture for deploying OpenStack while limiting changes to existing infrastructure A collaboration between Canonical and VMware

More information

FLOSSK: FLOSSTalk OpenStack 22 nd February, 2012. Arturo Suarez: Founder, COO&BizDev StackOps 21/02/12 1

FLOSSK: FLOSSTalk OpenStack 22 nd February, 2012. Arturo Suarez: Founder, COO&BizDev StackOps 21/02/12 1 FLOSSK: FLOSSTalk OpenStack 22 nd February, 2012 Arturo Suarez: Founder, COO&BizDev StackOps 21/02/12 1 l l Introductions OpenStack l l l l l Identifying the gap A little bit of history The Projects The

More information

An Intro to OpenStack. Ian Lawson Senior Solution Architect, Red Hat ilawson@redhat.com

An Intro to OpenStack. Ian Lawson Senior Solution Architect, Red Hat ilawson@redhat.com An Intro to OpenStack Ian Lawson Senior Solution Architect, Red Hat ilawson@redhat.com What is OpenStack? What is OpenStack? Fully open source cloud operating system Comprised of several open source sub-projects

More information

OpenStack An Open Cloud for an Open Data World IBM s Contributions, Commitments & Products

OpenStack An Open Cloud for an Open Data World IBM s Contributions, Commitments & Products IBM Cloud: Think it. Build it. Tap into it. OpenStack An Open Cloud for an Open Data World IBM s Contributions, Commitments & Products Henry Nash (henry.nash@uk.ibm.com) IBM OpenStack Architect & Wild

More information

Availability Digest. www.availabilitydigest.com. @availabilitydig. HPE Helion Private Cloud and Cloud Broker Services February 2016

Availability Digest. www.availabilitydigest.com. @availabilitydig. HPE Helion Private Cloud and Cloud Broker Services February 2016 the Availability Digest @availabilitydig HPE Helion Private Cloud and Cloud Broker Services February 2016 HPE Helion is a complete portfolio of cloud products and services that offers enterprise security,

More information

The Private Cloud Your Controlled Access Infrastructure

The Private Cloud Your Controlled Access Infrastructure White Paper: Private Clouds The ongoing debate on the differences between a Public and Private Cloud are broad and often loud. The bottom line is that it s really about how the resource, or computing power,

More information

EXECUTIVE GUIDE WHY THE MODERN DATA CENTER NEEDS AN OPERATING SYSTEM

EXECUTIVE GUIDE WHY THE MODERN DATA CENTER NEEDS AN OPERATING SYSTEM EXECUTIVE GUIDE WHY THE MODERN DATA CENTER NEEDS AN OPERATING SYSTEM TABLE OF CONTENTS 2 6 8 12 21 30 Why your modern data center needs an operating system What is a data center operating system and how

More information

Group-Based Policy for OpenStack

Group-Based Policy for OpenStack Group-Based Policy for OpenStack Introduction Over the past four years, OpenStack has grown from a simple open source project to a major community-based initiative including thousands of contributors in

More information

Block Storage in the Open Source Cloud called OpenStack

Block Storage in the Open Source Cloud called OpenStack Block Storage in the Open Source Cloud called OpenStack PRESENTATION TITLE GOES HERE June 3, 2015 Webcast Presenters Alex McDonald, Vice Chair SNIA-ESF NetApp Walter Boring, Software Engineer, HP 2 SNIA

More information

DevOps in OpenStack Public Cloud 副 标 题 副 标 题 副 标 题 Presented at OpenStack Summit, Fall 2012, San Diego

DevOps in OpenStack Public Cloud 副 标 题 副 标 题 副 标 题 Presented at OpenStack Summit, Fall 2012, San Diego 在 这 里 写 上 你 的 标 题 DevOps in OpenStack Public Cloud 副 标 题 副 标 题 副 标 题 Presented at OpenStack Summit, Fall 22, San Diego 副 标 题 文 字 副 标 题 文 字 Hui Cheng freedomhui@gmail.com freedomhui.com Community Manager

More information

An Introduction to Cloud Computing Concepts

An Introduction to Cloud Computing Concepts Software Engineering Competence Center TUTORIAL An Introduction to Cloud Computing Concepts Practical Steps for Using Amazon EC2 IaaS Technology Ahmed Mohamed Gamaleldin Senior R&D Engineer-SECC ahmed.gamal.eldin@itida.gov.eg

More information

How To Compare The Two Cloud Computing Models

How To Compare The Two Cloud Computing Models WHITE PAPER Elastic Cloud Infrastructure: Agile, Efficient and Under Your Control - 1 - INTRODUCTION Most businesses want to spend less time and money building and managing infrastructure to focus resources

More information

Cloud-Era File Sharing and Collaboration

Cloud-Era File Sharing and Collaboration Cloud-Era File Sharing and Collaboration Maginatics Cloud Storage Platform Perspective 2012 Neovise, LLC. All Rights Reserved. Report Published July 29, 2014 Introduction Distributed file systems have

More information

White Paper. Deploying and Provisioning Databases in the Cloud: How Tesora s Database as a Service (DBaaS) Platform is Transforming Enterprise IT

White Paper. Deploying and Provisioning Databases in the Cloud: How Tesora s Database as a Service (DBaaS) Platform is Transforming Enterprise IT White Paper Deploying and Provisioning Databases in the Cloud: How Tesora s Database as a Service (DBaaS) Platform is Transforming Enterprise IT When IT Departments Can t Deliver, People Go Elsewhere Over

More information

SUSE Cloud 2.0. Pete Chadwick. Douglas Jarvis. Senior Product Manager pchadwick@suse.com. Product Marketing Manager djarvis@suse.

SUSE Cloud 2.0. Pete Chadwick. Douglas Jarvis. Senior Product Manager pchadwick@suse.com. Product Marketing Manager djarvis@suse. SUSE Cloud 2.0 Pete Chadwick Douglas Jarvis Senior Product Manager pchadwick@suse.com Product Marketing Manager djarvis@suse.com SUSE Cloud SUSE Cloud is an open source software solution based on OpenStack

More information

w w w. u l t i m u m t e c h n o l o g i e s. c o m Infrastructure-as-a-Service on the OpenStack platform

w w w. u l t i m u m t e c h n o l o g i e s. c o m Infrastructure-as-a-Service on the OpenStack platform w w w. u l t i m u m t e c h n o l o g i e s. c o m Infrastructure-as-a-Service on the OpenStack platform http://www.ulticloud.com http://www.openstack.org Introduction to OpenStack 1. What OpenStack is

More information

Industry Brief. The Epic Migration. to Software Defined Storage. SUSE Enterprise Storage. Featuring

Industry Brief. The Epic Migration. to Software Defined Storage. SUSE Enterprise Storage. Featuring Industry Brief The Epic Migration to Software Defined Storage Featuring SUSE Enterprise Storage Document # INDUSTRY2015001 v5, January 2015 Copyright 2015 IT Brand Pulse. All rights reserved. Executive

More information

2015 LENOVO. ALL RIGHTS RESERVED. Isabel Zarate Lenovo EBG Leader

2015 LENOVO. ALL RIGHTS RESERVED. Isabel Zarate Lenovo EBG Leader 2015 LENOVO. ALL RIGHTS RESERVED. Isabel Zarate Lenovo EBG Leader Enterprise is Key to Lenovo Triple Plus Strategy SMART CONNECTED DEVICES TOTAL PORTFOLIO ** * 2 2015 Lenovo Internal. All rights reserved.

More information

QLogic 16Gb Gen 5 Fibre Channel in IBM System x Deployments

QLogic 16Gb Gen 5 Fibre Channel in IBM System x Deployments QLogic 16Gb Gen 5 Fibre Channel in IBM System x Deployments Increase Virtualization Density and Eliminate I/O Bottlenecks with QLogic High-Speed Interconnects Key Findings Support for increased workloads,

More information

Avnet's Guide to Cloud Computing

Avnet's Guide to Cloud Computing Avnet's Guide to Cloud Computing Reimagine Transform Accelerate Cloud Computing from A Z Avnet can help you reduce complexity by understanding the terminology and phrases associated with cloud computing.

More information

Object Storage: A Growing Opportunity for Service Providers. White Paper. Prepared for: 2012 Neovise, LLC. All Rights Reserved.

Object Storage: A Growing Opportunity for Service Providers. White Paper. Prepared for: 2012 Neovise, LLC. All Rights Reserved. Object Storage: A Growing Opportunity for Service Providers Prepared for: White Paper 2012 Neovise, LLC. All Rights Reserved. Introduction For service providers, the rise of cloud computing is both a threat

More information

Future of Cloud Computing. Irena Bojanova, Ph.D. UMUC, NIST

Future of Cloud Computing. Irena Bojanova, Ph.D. UMUC, NIST Future of Cloud Computing Irena Bojanova, Ph.D. UMUC, NIST No Longer On The Horizon Essential Characteristics On-demand Self-Service Broad Network Access Resource Pooling Rapid Elasticity Measured Service

More information

OpenStack PHP Usergroup Berlin, April 2011

OpenStack PHP Usergroup Berlin, April 2011 OpenStack PHP Usergroup Berlin, April 2011 Company Overview History Cloud Provider ScaleUp is a spin-out of 12-year old German MSP internet4you" --------------------" In 2009, ScaleUp launched the first

More information

Creating the open cloud

Creating the open cloud WHITE PAPER Creating the open cloud May 2012 Copyright Canonical 2012 www.canonical.com Contents INTRODUCTION 03 WHY THE OPEN CLOUD? 03 USING A PUBLIC CLOUD 04 Cutting complexity with cloud-init 04 Ensure

More information

Cloud Computing Trends

Cloud Computing Trends UT DALLAS Erik Jonsson School of Engineering & Computer Science Cloud Computing Trends What is cloud computing? Cloud computing refers to the apps and services delivered over the internet. Software delivered

More information

Building on these core skills, customers can work on advanced concepts, such as:

Building on these core skills, customers can work on advanced concepts, such as: OpenStack Training OVERVIEW OnX s OpenStack training courses provide a deep and practical understanding of all aspects of today s most popular cloud platform. Unlike other training providers, OnX offerings

More information

Datamation. Find the Right Cloud Computing Solution. Executive Brief. In This Paper

Datamation. Find the Right Cloud Computing Solution. Executive Brief. In This Paper Find the Right Cloud Computing Solution In This Paper There are three main cloud computing deployment models: private, public, and hybrid The true value of the cloud is achieved when the services it delivers

More information

Empowering IT-as-a-Service with Cloud and OpenStack Technology Innovation

Empowering IT-as-a-Service with Cloud and OpenStack Technology Innovation Empowering IT-as-a-Service with Cloud and OpenStack Technology Innovation Jim Wittry HP Cloud Partner Business Manager Jim.wittry@hp.com http://www8.hp.com/us/en/cloud/helion-overview.html Copyright 2014

More information

HOW RED HAT BRINGS OPENSTACK INTO THE ENTERPRISE by Bryan Che and Gordon Haff

HOW RED HAT BRINGS OPENSTACK INTO THE ENTERPRISE by Bryan Che and Gordon Haff HOW RED HAT BRINGS OPENSTACK INTO THE ENTERPRISE by Bryan Che and Gordon Haff TECHNOLOGY OVERVIEW Open source software is widely deployed, but many customers will want a supported enterprise version. Red

More information

Cloud Platform Comparison: CloudStack, Eucalyptus, vcloud Director and OpenStack

Cloud Platform Comparison: CloudStack, Eucalyptus, vcloud Director and OpenStack Cloud Platform Comparison: CloudStack, Eucalyptus, vcloud Director and OpenStack This vendor-independent research contains a product-by-product comparison of the most popular cloud platforms (along with

More information

Building Multi-Site & Ultra-Large Scale Cloud with Openstack Cascading

Building Multi-Site & Ultra-Large Scale Cloud with Openstack Cascading Building Multi-Site & Ultra-Large Scale Cloud with Openstack Cascading Requirement and driving forces multi-site cloud Along with the increasing popularity and wide adoption of Openstack as the de facto

More information

Global Headquarters: 5 Speen Street Framingham, MA 01701 USA P.508.872.8200 F.508.935.4015 www.idc.com

Global Headquarters: 5 Speen Street Framingham, MA 01701 USA P.508.872.8200 F.508.935.4015 www.idc.com Global Headquarters: 5 Speen Street Framingham, MA 01701 USA P.508.872.8200 F.508.935.4015 www.idc.com W H I T E P A P E R O p e n S t a c k a n d R e d H a t Sponsored by: Red Hat Gary Chen July 2013

More information

RightScale mycloud with Eucalyptus

RightScale mycloud with Eucalyptus Swiftly Deploy Private and Hybrid Clouds with a Single Pane of Glass View into Cloud Infrastructure Enable Fast, Easy, and Robust Cloud Computing with RightScale and Eucalyptus Overview As organizations

More information

Building Private Cloud on

Building Private Cloud on Building Private Cloud on Summary of Content Introduction of Cloud Computing Cloud Computing vs. Server Virtualization Cloud Computing Components Stack Public vs. Private Clouds Open Source Software for

More information

Cloud Essentials for Architects using OpenStack

Cloud Essentials for Architects using OpenStack Cloud Essentials for Architects using OpenStack Course Overview Start Date 18th December 2014 Duration 2 Days Location Dublin Course Code SS906 Programme Overview Cloud Computing is gaining increasing

More information

IaaS Cloud Architectures: Virtualized Data Centers to Federated Cloud Infrastructures

IaaS Cloud Architectures: Virtualized Data Centers to Federated Cloud Infrastructures IaaS Cloud Architectures: Virtualized Data Centers to Federated Cloud Infrastructures Dr. Sanjay P. Ahuja, Ph.D. 2010-14 FIS Distinguished Professor of Computer Science School of Computing, UNF Introduction

More information

Quantum. Virtual Networks for Openstack. Salvatore Orlando (@taturiello) Citrix Systems

Quantum. Virtual Networks for Openstack. Salvatore Orlando (@taturiello) Citrix Systems Quantum Virtual Networks for Openstack Salvatore Orlando (@taturiello) Citrix Systems Who is this chap talking to us? Random guy trying to give you death by Powerpoint! No guru/expert whatsoever, just

More information

Brochure Fast-track to advanced hybrid cloud HP Helion CloudSystem

Brochure Fast-track to advanced hybrid cloud HP Helion CloudSystem Brochure Fast-track to advanced hybrid cloud HP Helion CloudSystem Accelerate your journey to the cloud Why choose HP Helion CloudSystem? The industry s most complete, integrated, and open solution for

More information

SUSE Cloud 5 Private Cloud based on OpenStack

SUSE Cloud 5 Private Cloud based on OpenStack SUSE Cloud 5 Private Cloud based on OpenStack Michał Jura Senior Software Engineer Linux HA/Cloud Developer mjura@suse.com 2 New solutions emerge: Infrastructure-as-Service Cloud = 3 SUSE Cloud Why OpenStack?

More information

Ubuntu OpenStack Fundamentals Training

Ubuntu OpenStack Fundamentals Training Ubuntu OpenStack Fundamentals Training Learn from the best, how to use the best! You ve made the decision to use the most powerful open cloud platform, and now you need to learn how to make the most of

More information

Bringing Much Needed Automation to OpenStack Infrastructure

Bringing Much Needed Automation to OpenStack Infrastructure white paper Bringing Much Needed Automation to OpenStack Infrastructure Contents Abstract 1 The Move to the Cloud 2 The Inherent Complexity of OpenStack Cloud Solutions 4 Solving OpenStack Complexity with

More information

CON8473 Oracle Distribution of OpenStack Making OpenStack an Enterprise Grade Solution

CON8473 Oracle Distribution of OpenStack Making OpenStack an Enterprise Grade Solution CON8473 Oracle Distribution of OpenStack Making OpenStack an Enterprise Grade Solution Ronen Kofman Director of Product Development Oracle OpenStack September, 2014 Safe Harbor Statement The following

More information

STeP-IN SUMMIT 2013. June 18 21, 2013 at Bangalore, INDIA. Performance Testing of an IAAS Cloud Software (A CloudStack Use Case)

STeP-IN SUMMIT 2013. June 18 21, 2013 at Bangalore, INDIA. Performance Testing of an IAAS Cloud Software (A CloudStack Use Case) 10 th International Conference on Software Testing June 18 21, 2013 at Bangalore, INDIA by Sowmya Krishnan, Senior Software QA Engineer, Citrix Copyright: STeP-IN Forum and Quality Solutions for Information

More information

Building Storage as a Service with OpenStack. Greg Elkinbard Senior Technical Director

Building Storage as a Service with OpenStack. Greg Elkinbard Senior Technical Director Building Storage as a Service with OpenStack Greg Elkinbard Senior Technical Director MIRANTIS 2012 PAGE 1 About the Presenter Greg Elkinbard Senior Technical Director at Mirantis Builds on demand IaaS

More information

RED HAT ENTEPRISE LINUX OPENSTACK PLATFORM PRODUCT OVERVIEW & UPDATE. Jeff Jameson Sr. Principal Product Marketing Manager Virtualization BU, RED HAT

RED HAT ENTEPRISE LINUX OPENSTACK PLATFORM PRODUCT OVERVIEW & UPDATE. Jeff Jameson Sr. Principal Product Marketing Manager Virtualization BU, RED HAT RED HAT ENTEPRISE LINUX OPENSTACK PLATFORM PRODUCT OVERVIEW & UPDATE Jeff Jameson Sr. Principal Product Marketing Manager Virtualization BU, RED HAT AGENDA Highlights of OpenStack Summit: Hong Kong Shifting

More information

HP Helion: Now cloud runs through your business

HP Helion: Now cloud runs through your business HP Helion: Now cloud runs through your business Rinaldo Bergamini, Cloud Solution Architect May,12th 2015 Copyright 2014 Hewlett-Packard Development Company, L.P. The information contained herein is subject

More information

Build Clouds Without Limits Gordon Haff

Build Clouds Without Limits Gordon Haff Red Hat CloudForms Infrastructure-as-a-Service: Build Clouds Without Limits Gordon Haff Is your IT ready for IT-as-a-Service? Is it... Portable across hybrid environments? Does it let you... Manage image

More information