Ken ichi Ohmichi NEC Solution Innovators, Ltd.
|
|
|
- Muriel Watkins
- 10 years ago
- Views:
Transcription
1 Ken ichi Ohmichi NEC Solution Innovators, Ltd.
2 Agenda Who am I OpenStack OpenStack RESTful API Nova RESTful API Issues of Nova RESTful API Going Solutions Current Situation Summary 2
3 $ who am i 3
4 Software developer Join OpenStack community for its quality assurance since 2012 Working Areas OpenStack QA (Quality Assurance) OpenStack Compute (Nova) 4
5 5
6 OpenStack components OpenStack Neutron Network Nova Compute Glance Image Cinder Block storage Keystone Identity Horizon Dashboard 6
7 OpenStack community Rapid Growth A B C D E F G H I OpenStack Versions Companies Developers 7
8 Community development Importance of code review Can know the internal implementation Can know the trend Can get folks Importance of communication Daily : IRC or Weekly: IRC meeting Version: F2F at Design Summit 8
9 9
10 RESTful API Scalable and stateless Simple and consistent interfaces OpenStack provides many features through RESTful API OpenStack Server POST RESTful Client RESTful API Create a virtual machine VM 01 Hypervisor (kvm, etc) VM 02 10
11 Many RESTful client libraries are available for OpenStack Python -.NET Java - Dashboard and commands request operations via RESTful APIs Horizon Dashboard Commands $ nova.. $ cinder.. OpenStack Server RESTful Client library RESTful API
12 Each OpenStack component also is connected via RESTful APIs Neutron Network Nova Compute Nova RESTful API Glance Image Keystone Identity Horizon Dashboard Commands $ nova.. $ cinder..
13 13
14 OpenStack core functions Create a VM (virtual machine) Delete a VM Attach a volume to a VM Scalable Stable Current API version is v2 Nova v2 API contains 250+ APIs (Icehouse)
15 API usage Create a VM (virtual machine) URL Body RESTful Client { server : { name : VM01, flavorref : 42, imageref : d POST Nova v2 API Nova server VM01 Hypervisor (kvm, etc)
16 16
17 Inconsistent interfaces Inconsistent naming instance or server, tenant or project CamelCase, or snake_case { CamelCase instanceaction : [ { action : reboot, events : [], instance_uuid : b48316c5-[..], project_id : 147, [..] snake_case { server : { CamelCase accessipv4 :, accessipv6 :, id : 893c7791-[..], name : test-server, tenant_id : a54313c7-[..], [..] snake_case Show insance actions API Show server API 17
18 Inconsistent interfaces Return incorrect success codes Should return 202(ACCEPTED) but some APIs return 201(CREATED) even if not complete to create a resource yet. 18
19 Lacks of input validation Cause internal errors, output a lot of error logs in server, and return useless error messages Ex) Pass non-dict as metadata to create a VM Body RESTful Client { server : { name : VM01, flavorref : 42, imageref : d , metadata : non-dict POST The server has either erred or is incapable of performing the requested operation HTTP 500 Nova API server Nova v2 API Internal Error # this bug has been already fixed. 19
20 Lacks of input validation Ignore unexpected data which a client sends, and the request operates without some details which a client expects Body RESTful Client { server : { name : VM01, flavorref : 42, imageref : d , os:scheduler_fints : { group : group-01 POST typo HTTP 202 Nova API server Nova v2 API Create a VM without scheduler hints 20
21 21
22 Nova v3 API (Havana -> Juno) Re-define consistent naming Re-define consistent success codes Comprehensive input validation with JSONSchema V2 API Client Weak Validation Inconsistent interfaces Nova API Server v2.0 API (Current) Internal Error V3 API Client Strong Validation JSONSchema input validation v3 API (Experimen tal) Nova Internal implementation Consistent interfaces 22
23 { JSONSchema Common data format definition library Clear, human- and machine-readable data format definition { get_console_output : { length : 100 Correct request data Pass type : object, properties : { get_console_output : { type : object, properties : { length : { type : integer, minimum : -1, additionalproperties : False, required : [ get_console_output ] Data format definition with JSONSchema 23
24 { JSONSchema Contains basic validation features in nature Ex) minimum get_console_output : { length : -100 Invalid request data { Fail type : object, properties : { get_console_output : { type : object, properties : { length : { type : integer, minimum : -1, additionalproperties : False, required : [ get_console_output ] Data format definition with JSONSchema 24
25 { JSONSchema Can deny undefined parameters Ex) additionalproperties: False get_console_output : { length : 100, undefined : 100 Invalid request data { Fail type : object, properties : { get_console_output : { type : object, properties : { length : { type : integer, minimum : -1, additionalproperties : False, required : [ get_console_output ] Data format definition with JSONSchema 25
26 Use JSONSchema for input validation Strong validation, then avoid internal errors Return useful error message if a client sends invalid format data The server has either erred or is incapable of performing the requested operation Invalid input for field/attribute length. Value: foo. foo is not of type integer' before JSONSchema validation after JSONSchema validation 26
27 Use JSONSchema for input validation Clean up logic code by separating validation code Validation code also can be reduced try: min_count = int(str(min_count)) except ValueError: msg = _('min_count must be an integer value') raise exc.httpbadrequest(explanation=msg) if min_count < 1: msg = _('min_count must be > 0') raise exc.httpbadrequest(explanation=msg) Validation code of v2 API 'min_count': { 'type': 'integer', 'minimum': 1 Validation code of v3 API 27
28 Input validation development history The prototype proposal The first proposal in Portland summit The framework patch was approved, but merger failed Do not merge * 2
29 Input validation development history Investigated input validations of all API parameters and proposed necessary features The second proposal in Hong Kong summit. We have gotten a consensus The framework patch has been merged. Necessary to merge API definition patches still.
30 Input validation development status Merged patches: 14 Necessary to be reviewed/merged patches: 20
31 31
32 Stopped v3 API development Backward incompatibility against v2 API Large maintenance cost due to 250+ APIs for each API version Huge mail thread to keep/drop v3 API Nova API Server V2 API Client V3 API Client Backward incompatibility JSONSchema input validation v2.0 API (Current) Strong Validation v3 API (Experimen tal) Internal Error Nova Internal implementation 32
33 Proposed v2.1 API Translate v2 request/response and use v3 implementation Strong API validation Keep maintenance cost low Nova API Server V2 API Client Keep compatibility with strong validation V3 API Client Backward incompatibility v2.1 API (v2 v3 Translator) JSONSchema input validation v2.0 API (Current) Strong Validation v3 API (Experimen tal) Internal Error Nova Internal implementation 33
34 Consensuses after Atlanta Summit Implement v2.1 API in Juno cycle Implement JSONSchema validation for v2.1 API The future of v3 API is unclear now 34
35 35
36 Nova v2.1 API will be available after Juno Strong input validation The future of Nova v3 API is unclear Consistent interfaces Strong input validation Join OpenStack community Code review is important Communication is important 36
37 37
Challenge to add OpenStack API Validation Framework
Challenge to add OpenStack API Validation Framework 2013.05.31 Ken ichi Ohmichi NEC-Soft, Ltd. ([email protected]) Agenda OpenStack OpenStack community development OpenStack functions through RESTful
Multi Provider Cloud. Srinivasa Acharya, Engineering Manager, Hewlett-Packard [email protected]
Multi Provider Cloud Srinivasa Acharya, Engineering Manager, Hewlett-Packard [email protected] Agenda Introduction to OpenStack Multi Hypervisor Architecture Use cases for Multi Hypervisor cloud Ironic
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
Isabell Sippli Cloud Architect, Lab Based Services IBM Software Group 2013 IBM Corporation
1 Isabell Sippli Cloud Architect, Lab Based Services IBM Software Group Disclaimer This document represents the author's views and opinions. It does not necessarily represent IBM's position or strategy.
An Introduction to OpenStack and its use of KVM. Daniel P. Berrangé <[email protected]>
An Introduction to OpenStack and its use of KVM Daniel P. Berrangé About me Contributor to multiple virt projects Libvirt Developer / Architect 8 years OpenStack contributor 1 year
Change the Game with HP Helion
Change the Game with HP Helion Transform your business with DevOPS and Open Hybrid Clouds Anthony Rees HP Helion Cloud Consultant Copyright 2014 Hewlett-Packard Development Company, L.P. The information
Is OpenStack the best path forward towards successful Clouds? Cor van der Struijf Senior Cloud Advisor [email protected]
Is OpenStack the best path forward towards successful Clouds? Cor van der Struijf Senior Cloud Advisor [email protected] What is the best path forward? I was just wondering if you could help me find my
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
Sales Slide Midokura Enterprise MidoNet V1. July 2015 Fujitsu Limited
Sales Slide Midokura Enterprise MidoNet V1 July 2015 Fujitsu Limited What Is Midokura Enterprise MidoNet? Network Virtualization Software Coordinated with OpenStack Provides safe & effective virtual networks
Introduction to Openstack, an Open Cloud Computing Platform. Libre Software Meeting
Introduction to Openstack, an Open Cloud Computing Platform Libre Software Meeting 10 July 2012 David Butler BBC Research & Development [email protected] Introduction: Libre Software Meeting 2012
Introduction to OpenStack
Introduction to OpenStack Carlo Vallati PostDoc Reseracher Dpt. Information Engineering University of Pisa [email protected] Cloud Computing - Definition Cloud Computing is a term coined to refer
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
KVM, OpenStack, and the Open Cloud
KVM, OpenStack, and the Open Cloud Adam Jollans, IBM & Mike Kadera, Intel CloudOpen Europe - October 13, 2014 13Oct14 Open VirtualizaGon Alliance 1 Agenda A Brief History of VirtualizaGon KVM Architecture
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
Openstack. Cloud computing with Openstack. Saverio Proto [email protected]
Openstack Cloud computing with Openstack Saverio Proto [email protected] Lugano, 23/03/2016 Agenda SWITCH role in Openstack and Cloud Computing What is Virtualization? Why is Cloud computing more
OpenStack + VMware: Everything You Need to Know
OpenStack + VMware: Everything You Need to Know Kilo Edition Gavin Lu August 11, 2015 2014 VMware Inc. All rights reserved. About Me Tsinghua University @ Beijing BS & MS with major in Electrical Engineering
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
TUT5605: Deploying an elastic Hadoop cluster Alejandro Bonilla
TUT5605: Deploying an elastic Hadoop cluster Alejandro Bonilla Sales Engineer [email protected] Agenda Overview Manual Deployment Orchestration Generic workload autoscaling Sahara Dedicated for Hadoop
OpenStack Alberto Molina Coballes
OpenStack Alberto Molina Coballes Teacher at IES Gonzalo Nazareno [email protected] @alberto_molina Table of Contents From public to private clouds Open Source Cloud Platforms Why OpenStack? OpenStack
How To Install Openstack On Ubuntu 14.04 (Amd64)
Getting Started with HP Helion OpenStack Using the Virtual Cloud Installation Method 1 What is OpenStack Cloud Software? A series of interrelated projects that control pools of compute, storage, and networking
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
OpenStack Assessment : Profiling & Tracing
OpenStack Assessment : Profiling & Tracing Presentation by Hicham ABDELFATTAH Master Director Mohamed Cheriet Outline Introduction OpenStack Issues Rally Perspectives 2 Definition Cloud computing is a
OpenStack Manila Shared File Services for the Cloud
OpenStack Manila Shared File Services for the Cloud Bob Callaway, PhD Chief Architect & Senior Manager, Technical Marketing OpenStack Cloud Solutions Group, NetApp OpenStack Summit Paris November 3 rd,
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
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 [email protected] Open Source = openmind 3 Protect Investment & Work Together 4 Cloud Definitions
OpenStack/Quantum SDNbased network virtulization with Ryu
OpenStack/Quantum SDNbased network virtulization with Ryu Kei Ohmura NTT May 31, 2013 Outline Introduction to Ryu OpenStack Quantum and Ryu Demo Summary 2 What is Ryu 流流 (ryu) means flow 龍龍 (ryu) means
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
SUSE Cloud. www.suse.com. OpenStack End User Guide. February 20, 2015
SUSE Cloud 5 www.suse.com February 20, 2015 OpenStack End User Guide OpenStack End User Guide Abstract OpenStack is an open-source cloud computing platform for public and private clouds. A series of interrelated
Open Source Virtualization with ovirt. DI (FH) René Koch Systems Engineer Siedl Networks GmbH Grazer Linuxtage, 25.04.2015
Open Source Virtualization with ovirt DI (FH) René Koch Systems Engineer Siedl Networks GmbH Grazer Linuxtage, 25.04.2015 Agenda What is ovirt? Architecture and Components New Features in ovirt 3.5 Planned
KVM, OpenStack, and the Open Cloud
KVM, OpenStack, and the Open Cloud Adam Jollans, IBM Southern California Linux Expo February 2015 1 Agenda A Brief History of VirtualizaJon KVM Architecture OpenStack Architecture KVM and OpenStack Case
Today. 1. Private Clouds. Private Cloud toolkits. Private Clouds and OpenStack Introduction
Today Private Clouds and OpenStack Introduction 1. Private Clouds 2. Introduction to OpenStack What is OpenStack? Architecture and Main components Demo: basic commands Luis Tomás Department of Computing
RCL: Design and Open Specification
ICT FP7-609828 RCL: Design and Open Specification D3.1.1 March 2014 _D3.1.1_RCLDesignAndOpenSpecification_v1.0 Document Information Scheduled delivery Actual delivery Version Responsible Partner 31.03.2014
A10 Networks LBaaS Driver for Thunder and AX Series Appliances
DEPLOYMENT GUIDE A10 Networks LBaaS Driver for Thunder and AX Series Appliances Table of Contents Introduction... 2 Implementation... 2 Network Architecture... 3 SNATED... 3 VLAN... 3 Installation steps...
HO5604 Deploying MongoDB. A Scalable, Distributed Database with SUSE Cloud. Alejandro Bonilla. Sales Engineer [email protected]
HO5604 Deploying MongoDB A Scalable, Distributed Database with SUSE Cloud Alejandro Bonilla Sales Engineer [email protected] Agenda SUSE Cloud Overview What is MongoDB? 2 Getting familiar with the Cloud
How To Make A Cloud Work For You
OpenStack Deep Dive Alan Clark OpenStack, Chairman of the Board Director, SUSE [email protected] Community Size Q2 2014 ECOSYSTEM SIZE (Members + Sponsors + Supporters) 390 Companies Members: 26 Sponsors:
Installation and Configuration Guide
VMware Common Components Catalog Release Notes Installation and Configuration Guide For VMware vrealize Automation OpenStack Havana Plug-In 100 2014 VMware, Inc All rights reserved VMware vrealize Automation
Design and Implementation of IaaS platform based on tool migration Wei Ding
4th International Conference on Mechatronics, Materials, Chemistry and Computer Engineering (ICMMCCE 2015) Design and Implementation of IaaS platform based on tool migration Wei Ding State Key Laboratory
Postgres on OpenStack
Postgres on OpenStack Dave Page 18/9/2014 2014 EnterpriseDB Corporation. All rights reserved. 1 Introduction PostgreSQL: Core team member pgadmin lead developer Web/sysadmin teams PGCAC/PGEU board member
Adventures & Challenges building an OpenStack public cloud. Walter Heukels, Koert van der Veer en Pim van Riezen
Adventures & Challenges building an OpenStack public cloud Walter Heukels, Koert van der Veer en Pim van Riezen The Sysadmin Experience Walter Heukels About Me Walter Heukels Senior Engineer at CloudVPS
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
An Intro to OpenStack. Ian Lawson Senior Solution Architect, Red Hat [email protected]
An Intro to OpenStack Ian Lawson Senior Solution Architect, Red Hat [email protected] What is OpenStack? What is OpenStack? Fully open source cloud operating system Comprised of several open source sub-projects
Hadoop on OpenStack Cloud. Dmitry Mescheryakov Software Engineer, @MirantisIT
Hadoop on OpenStack Cloud Dmitry Mescheryakov Software Engineer, @MirantisIT Agenda OpenStack Sahara Demo Hadoop Performance on Cloud Conclusion OpenStack Open source cloud computing platform 17,209 commits
IBM Cloud Manager with OpenStack. REST API Reference, version 4.1
IBM Cloud Manager with OpenStack REST API Reference, version 4.1 IBM Cloud Manager with OpenStack REST API Reference, version 4.1 Note Before using this information and the product it supports, read the
CS312 Solutions #6. March 13, 2015
CS312 Solutions #6 March 13, 2015 Solutions 1. (1pt) Define in detail what a load balancer is and what problem it s trying to solve. Give at least two examples of where using a load balancer might be useful,
Infrastructure as a Service (IaaS)
Infrastructure as a Service (IaaS) (ENCS 691K Chapter 4) Roch Glitho, PhD Associate Professor and Canada Research Chair My URL - http://users.encs.concordia.ca/~glitho/ References 1. R. Moreno et al.,
Savanna Hadoop on. OpenStack. Savanna Technical Lead
Savanna Hadoop on OpenStack Sergey Lukjanov Savanna Technical Lead Mirantis, 2013 Agenda Savanna Overview Savanna Use Cases Roadmap & Current Status Architecture & Features Overview Hadoop vs. Virtualization
SUSE Cloud Installation: Best Practices Using an Existing SMT and KVM Environment
Best Practices Guide www.suse.com SUSE Cloud Installation: Best Practices Using an Existing SMT and KVM Environment Written by B1 Systems GmbH Table of Contents Introduction...3 Use Case Overview...3 Hardware
Open Source Networking for Cloud Data Centers
Open Source Networking for Cloud Data Centers Gaetano Borgione Distinguished Engineer @ PLUMgrid April 2015 1 Agenda Open Source Clouds with OpenStack Building Blocks of Cloud Networking Tenant Networks
AMD SEAMICRO OPENSTACK BLUEPRINTS CLOUD- IN- A- BOX OCTOBER 2013
AMD SEAMICRO OPENSTACK BLUEPRINTS CLOUD- IN- A- BOX OCTOBER 2013 OpenStack What is OpenStack? OpenStack is a cloud operaeng system that controls large pools of compute, storage, and networking resources
SUSE Cloud 2.0. Pete Chadwick. Douglas Jarvis. Senior Product Manager [email protected]. Product Marketing Manager djarvis@suse.
SUSE Cloud 2.0 Pete Chadwick Douglas Jarvis Senior Product Manager [email protected] Product Marketing Manager [email protected] SUSE Cloud SUSE Cloud is an open source software solution based on OpenStack
HP Helion OpenStack Carrier Grade REST API Copyright 2015 2015 Hewlett-Packard Development Company, L.P. All rights reserved.
HP Helion OpenStack Carrier Grade REST API Copyright 2015 2015 Hewlett-Packard Development Company, L.P. All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not
Getting Started with the CLI and APIs using Cisco Openstack Private Cloud
Tutorial Getting Started with the CLI and APIs using Cisco Openstack Private Cloud In this tutorial we will describe how to get started with the OpenStack APIs using the command line, the REST interface
KVM, OpenStack and the Open Cloud SUSECon November 2015
KVM, OpenStack and the Open Cloud SUSECon November 2015 Adam Jollans Program Director, Linux & Open Virtualization Strategy IBM Agenda A Brief History of Virtualization KVM Architecture OpenStack Architecture
Tuskar UI Documentation
Tuskar UI Documentation Release Juno Tuskar Team May 05, 2015 Contents 1 Tuskar UI 3 1.1 High-Level Overview.......................................... 3 1.2 Installation Guide............................................
Are We Done Yet? Testing Your OpenStack Deployment
Accelerating the adoption of Cloud Computing Are We Done Yet? Testing Your Deployment Summit, Paris, France November 4, 2014 Who Am I? Ken Pepple is the Chief Technology Officer of Solinea Prior to founding
Accelerate OpenStack* Together. * OpenStack is a registered trademark of the OpenStack Foundation
Accelerate OpenStack* Together * OpenStack is a registered trademark of the OpenStack Foundation Where are your workloads running Ensuring Boundary Control in OpenStack Cloud. Raghu Yeluri Principal Engineer,
SMB in the Cloud David Disseldorp
SMB in the Cloud David Disseldorp Samba Team / SUSE [email protected] Agenda Cloud storage Common types Interfaces Applications Cloud file servers Microsoft Azure File Service Demonstration Amazon Elastic
OpenStack & Hyper-V. Alessandro Pilo- CEO Cloudbase Solu.ons @cloudbaseit
OpenStack & Hyper-V Alessandro Pilo- CEO Cloudbase Solu.ons @cloudbaseit Cloudbase Solutions Company started in Italy as.net / Linux interop dev and consulting Branch started in Timisoara in 2012 to hire
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 [email protected] 2 New solutions emerge: Infrastructure-as-Service Cloud = 3 SUSE Cloud Why OpenStack?
Whither Enterprise Cloud Platform Linux, Docker and more Loo Chia Zyn Head of Sales Consulting, Japan & Asia Pacific Oracle Linux & Oracle VM
Whither Enterprise Cloud Platform Linux, Docker and more Loo Chia Zyn Head of Sales Consulting, Japan & Asia Pacific Oracle Linux & Oracle VM Copyright 2015, Oracle and/or its affiliates. All rights reserved.
FUJITSU Software ServerView Cloud Monitoring Manager V1 Introduction
FUJITSU Software ServerView Cloud Monitoring Manager V1 Introduction November 2015 Fujitsu Limited Product Overview 1 Why a Monitoring & Logging OpenStack Service? OpenStack systems are large, complex
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
Agile Infrastructure: an updated overview of IaaS at CERN
Agile Infrastructure: an updated overview of IaaS at CERN Luis FERNANDEZ ALVAREZ on behalf of Cloud Infrastructure Team [email protected] HEPiX Spring 2013 CERN IT Department CH-1211 Genève
The Total Newbie s Introduction to Heat Orchestration in OpenStack
Tutorial The Total Newbie s Introduction to Heat Orchestration in OpenStack OpenStack is undeniably becoming part of the mainstream cloud computing world. It is emerging as the new standard for private
Cloud on TIEN Part I: OpenStack Cloud Deployment. Vasinee Siripoonya Electronic Government Agency of Thailand Kasidit Chanchio Thammasat
Cloud on TIEN Part I: OpenStack Cloud Deployment Vasinee Siripoonya Electronic Government Agency of Thailand Kasidit Chanchio Thammasat Outline Part I: OpenStack Overview How OpenStack components work
Kerberos-Based Authentication for OpenStack Cloud Infrastructure as a Service
Kerberos-Based Authentication for OpenStack Cloud Infrastructure as a Service Sazzad Masud and Ram Krishnan University of Texas at San Antonio [email protected], [email protected] Abstract Cloud
RED HAT INFRASTRUCTURE AS A SERVICE OVERVIEW AND ROADMAP. Andrew Cathrow Red Hat, Inc. Wednesday, June 12, 2013
RED HAT INFRASTRUCTURE AS A SERVICE OVERVIEW AND ROADMAP Andrew Cathrow Red Hat, Inc. Wednesday, June 12, 2013 SERVICE MODELS / WORKLOADS TRADITIONAL WORKLOADS Stateful VMs: Application defined in VM Application
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
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
How To Use Openstack (And Piston) For Your Cloud Computing
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
UZH Experiences with OpenStack
GC3: Grid Computing Competence Center UZH Experiences with OpenStack What we did, what went well, what went wrong. Antonio Messina 29 April 2013 Setting up Hardware configuration
Leveraging OpenStack Private Clouds
Leveraging OpenStack Private Clouds Robert Ronan Sr. Cloud Solutions Architect! [email protected]! LEVERAGING OPENSTACK - AGENDA OpenStack What is it? Benefits Leveraging OpenStack University
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
Oracle OpenStack for Oracle Linux Release 1.0 Installation and User s Guide ORACLE WHITE PAPER DECEMBER 2014
Oracle OpenStack for Oracle Linux Release 1.0 Installation and User s Guide ORACLE WHITE PAPER DECEMBER 2014 Introduction 1 Who Should Use this Guide? 1 OpenStack Basics 1 What Is OpenStack? 1 OpenStack
Release Notes for Contrail Release 1.20
Release Notes for Contrail Release 1.20 Release 1.20 October 2014 Contents Introduction........................................................ 2 New and Changed Features............................................
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
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
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
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
Release Notes for Fuel and Fuel Web Version 3.0.1
Release Notes for Fuel and Fuel Web Version 3.0.1 June 21, 2013 1 Mirantis, Inc. is releasing version 3.0.1 of the Fuel Library and Fuel Web products. This is a cumulative maintenance release to the previously
How To Use Openstack At Cern
IPv6 on OpenStack Feature Parity is a Tricky Question Today s Sequence Quick Review of OpenStack Is OpenStack IPv6 Ready? Case Study: CERN s use of OpenStack Takeaways Today s Sequence Quick Review of
Mirantis OpenStack Express: Security White Paper
Mirantis OpenStack Express: Security White Paper Version 1.0 2005 2014 All Rights Reserved www.mirantis.com 1 Introduction While the vast majority IT professionals are now familiar with the cost-saving
Running an OpenStack Cloud for several years and living to tell the tale. Alexandre Maumené Gaëtan Trellu Tokyo Summit, November 2015
Running an OpenStack Cloud for several years and living to tell the tale Alexandre Maumené Gaëtan Trellu Tokyo Summit, November 2015 About the speakers Alexandre Maumené OpenStacker since 2012, Red-Hatter
Sunshine in a Cloudy World
Sunshine in a Cloudy World OpenStack 101, HP and OpenStack Jeff Holderfield [email protected] @jeffholderfield Copyright 2014 Hewlett-Packard Development Company, L.P. The information contained herein is subject
