osc-plugin Documentation

Size: px
Start display at page:

Download "osc-plugin Documentation"

Transcription

1 osc-plugin Documentation Release OpenStack Foundation July 26, 2016

2

3 Contents 1 rdomanager-oscplugin Discovery Client Installation 5 3 Command List baremetal overcloud undercloud Indices and tables 13 i

4 ii

5 rdomanager-oscplugin is an OpenStackClient plugin. Contents: Contents 1

6 2 Contents

7 CHAPTER 1 rdomanager-oscplugin OpenStackClient reference plugin module The OSC plugin system is designed so that the plugin need only be properly installed for OSC to find and use it. It utilizes the setuptools entry points mechanism to advertise to OSC the plugin module and supported commands. rdomanager-oscplugin is an OpenStackClient (OSC) plugin implementation that implements commands useful for RDO manager and the install and management of both an undercloud and an overcloud. 1.1 Discovery OSC discovers extensions by enumerating the entry points found under openstack.cli.extension and initializing the given client module. [entry_points] openstack.cli.extension = oscplugin = oscplugin.plugin The client module must implement the following interface functions: API_NAME - A string containing the plugin API name; this is the name of the entry point declaring the plugin client module (oscplugin =... in the example above) and the group name for the plugin commands (openstack.oscplugin.v1 = in the example below) API_VERSION_OPTION (optional) - If set, the name of the API version attribute; this must be a valid Python identifier and match the destination set in build_option_parser(). API_VERSIONS - A dict mapping a version string to the client class build_option_parser(parser) - Hook to add global options to the parser make_client(instance) - Hook to create the client object OSC enumerates the loaded plugins and loads commands from the entry points defined for the API version: openstack.oscplugin.v1 = plugin_list = oscplugin.v1.plugin:listplugin plugin_show = oscplugin.v1.plugin:showplugin Note that OSC defines the group name as openstack.<api-name>.v<version> so the version should not contain the leading v character. This second step is identical to that performed for all but the Identity client in OSC itself. Identity is special due to the authentication requirements. This limits the ability to add additional auth modules to OSC. 3

8 1.2 Client The current implementation of the rdomanager_oscplugin Client class is an empty placeholder. This client object is not equired but OSC s ClientManager will maintain it as required and is the interface point for other plugins to access anything implemented by this plugin. 4 Chapter 1. rdomanager-oscplugin

9 CHAPTER 2 Installation At the command line: $ pip install rdomanager-oscplugin Or, if you have virtualenvwrapper installed: $ mkvirtualenv rdomanager-oscplugin $ pip install rdomanager-oscplugin 5

10 6 Chapter 2. Installation

11 CHAPTER 3 Command List 3.1 baremetal Baremetal v baremetal import Import baremetal nodes os baremetal import [ --service-host <service_host> ] [ --json --csv ] <file_in> --service-host <service_host> Nova compute service host to register nodes with (default None) --json Input file is in json format --csv Input file is in csv format <file_in> Filename to be imported baremetal introspection bulk start Begin introspection of all baremetal nodes os baremetal introspection bulk start baremetal introspection bulk status Get status of node introspection os baremetal introspection bulk status 7

12 3.1.4 baremetal configure boot Configure boot devices for all baremetal nodes os baremetal configure boot 3.2 overcloud Overcloud v overcloud deploy stack Deploy an overcloud stack openstack overcloud deploy stack (--plan PLAN --templates [TEMPLATES]) [-t <TIMEOUT>] [--control-scale CONTROL_SCALE] [--compute-scale COMPUTE_SCALE] [--ceph-storage-scale CEPH_STORAGE_SCALE] [--block-storage-scale BLOCK_STORAGE_SCALE] [--swift-storage-scale SWIFT_STORAGE_SCALE] [--control-flavor CONTROL_FLAVOR] [--compute-flavor COMPUTE_FLAVOR] [--ceph-storage-flavor CEPH_STORAGE_FLAVOR] [--block-storage-flavor BLOCK_STORAGE_FLAVOR] [--swift-storage-flavor SWIFT_STORAGE_FLAVOR] [--neutron-flat-networks NEUTRON_FLAT_NETWORKS] [--neutron-physical-bridge NEUTRON_PHYSICAL_BRIDGE] [--neutron-bridge-mappings NEUTRON_BRIDGE_MAPPINGS] [--neutron-public-interface NEUTRON_PUBLIC_INTERFACE] [--hypervisor-neutron-public-interface HYPERVISOR_NEUTRON_PUBLIC_INTERFACE] [--neutron-network-type NEUTRON_NETWORK_TYPE] [--neutron-tunnel-types NEUTRON_TUNNEL_TYPES] [--neutron-disable-tunneling] [--neutron-network-vlan-ranges NEUTRON_NETWORK_VLAN_RANGES] [--neutron-mechanism-drivers NEUTRON_MECHANISM_DRIVERS] [--libvirt-type LIBVIRT_TYPE] [--ntp-server NTP_SERVER] [--cinder-lvm] [--tripleo-root TRIPLEO_ROOT] [--nodes-json NODES_JSON] [--no-proxy NO_PROXY] [-O <OUTPUT DIR>] [-e <HEAT ENVIRONMENT FILE>] [--rhel-reg] [--reg-method {satellite,portal}] [--reg-org REG_ORG] [--reg-force] [--reg-sat-url REG_SAT_URL] [--reg-activation-key REG_ACTIVATION_KEY] --plan <name or UUID> The Name or UUID of the Tuskar plan to deploy. --templates <directory> The directory containing the Heat templates to deploy. -t <timeout>, --timeout <timeout> Deployment timeout in minutes (default: 240) 8 Chapter 3. Command List

13 --control-scale <scale-amount> New number of control nodes. --compute-scale <scale-amount> New number of compute nodes. --ceph-storage-scale <scale-amount> New number of ceph storage nodes. --block-storage-scale <scale-amount> New number of block storage nodes. --swift-storage-scale <scale-amount> New number of swift storage nodes. --control-flavor <flavor-name> Nova flavor to use for control nodes. --compute-flavor <flavor-name> Nova flavor to use for compute nodes. --ceph-storage-flavor <flavor-name> Nova flavor to use for ceph storage nodes. --block-storage-flavor <flavor-name> Nova flavor to use for cinder storage nodes. --swift-storage-flavor <flavor-name> Nova flavor to use for swift storage nodes. --neutron-flat-networks <networks> Comma separated list of physical_network names with which flat networks can be created. Use * to allow flat networks with arbitrary physical_network names. (default: datacentre ) --neutron-physical-bridge <bridge> Deprecated. --neutron-bridge-mappings <mappings> Comma separated list of bridge mappings. (default: datacentre:br-ex) --neutron-public-interface <interface> Deprecated. --hypervisor-neutron-public-interface <interface> Deprecated. --neutron-network-type <type> The network type for the tenant networks. --neutron-tunnel-types <type> Network types supported by the agent (gre and/or vxlan). --neutron-disable-tunneling Disables tunneling. --neutron-network-vlan-ranges <ranges> Comma separated list of <physical_network>:<vlan_min>:<vlan_max> or <physical_network> specifying physical_network names usable for VLAN provider and tenant networks, as well as ranges of VLAN tags on each available for allocation to tenant networks. (ex: datacentre:1:1000) --neutron-mechanism-drivers <drivers> An ordered list of extension driver entrypoints to be loaded from the neutron.ml2.extension_drivers namespace overcloud 9

14 --libvirt-type {kvm,qemu} Libvirt domain type. (default: kvm) --ntp-server <ip-address> The NTP for overcloud nodes. --cinder-lvm Enables the cinder lvm/iscsi backend. --tripleo-root <directory> The root directory for TripleO templates. --nodes-json <file> A file containing node definitions. (default: instackenv.json) --no-proxy <hosts> A comma separated list of hosts that should not be proxied. -O <directory>, --output-dir <directory> Directory to write Tuskar template files into. It will be created if it does not exist. If not provided a temporary directory will be used. -e <file>, --environment-file <file> Environment files to be passed to the heat stack-create or heat stack-update command. (Can be specified more than once.) --rhel-reg Register overcloud nodes to the customer portal or a satellite. --reg-method [sattelite portal] RHEL registration method to use for the overcloud nodes. --reg-org <organization> Organization key to use for registration. --reg-force Register the system even if it is already registered. --reg-sat-url <url> Satellite server to register overcloud nodes. --reg-activation-key <key> Activation key to use for registration. 3.3 undercloud Undercloud v undercloud install Install the undercloud os undercloud install If you would like to contribute to the development of OpenStack, you must follow the steps in the If you re a developer, start here section of this page: 10 Chapter 3. Command List

15 Once those steps have been completed, changes to OpenStack should be submitted for review via the Gerrit tool, following the workflow documented at: Pull requests submitted through GitHub will be ignored. Bugs should be filed on Launchpad, not GitHub: undercloud 11

16 12 Chapter 3. Command List

17 CHAPTER 4 Indices and tables genindex modindex search 13

18 14 Chapter 4. Indices and tables

19 Index Symbols block-storage-flavor <flavor-name> block-storage-scale <scale-amount> ceph-storage-flavor <flavor-name> ceph-storage-scale <scale-amount> cinder-lvm compute-flavor <flavor-name> compute-scale <scale-amount> control-flavor <flavor-name> control-scale <scale-amount> csv baremetal-import command line option, 7 hypervisor-neutron-public-interface <interface> json baremetal-import command line option, 7 libvirt-type {kvm,qemu} neutron-bridge-mappings <mappings> neutron-disable-tunneling neutron-flat-networks <networks> neutron-mechanism-drivers <drivers> neutron-network-type <type> neutron-network-vlan-ranges <ranges> neutron-physical-bridge <bridge> neutron-public-interface <interface> neutron-tunnel-types <type> no-proxy <hosts> nodes-json <file> ntp-server <ip-address> plan <name or UUID> overcloud-deploy-stack command line option, 8 reg-activation-key <key> reg-force reg-method [sattelite portal] reg-org <organization> reg-sat-url <url> rhel-reg service-host <service_host> baremetal-import command line option, 7 swift-storage-flavor <flavor-name> swift-storage-scale <scale-amount> templates <directory> overcloud-deploy-stack command line option, 8 tripleo-root <directory> -O <directory>, output-dir <directory> -e <file>, environment-file <file> -t <timeout>, timeout <timeout> overcloud-deploy-stack command line option, 8 15

20 B baremetal-import command line option csv, 7 json, 7 service-host <service_host>, 7 O overcloud-deploy-stack command line option block-storage-flavor <flavor-name>, 9 block-storage-scale <scale-amount>, 9 ceph-storage-flavor <flavor-name>, 9 ceph-storage-scale <scale-amount>, 9 cinder-lvm, 10 compute-flavor <flavor-name>, 9 compute-scale <scale-amount>, 9 control-flavor <flavor-name>, 9 control-scale <scale-amount>, 9 hypervisor-neutron-public-interface <interface>, 9 libvirt-type {kvm,qemu}, 9 neutron-bridge-mappings <mappings>, 9 neutron-disable-tunneling, 9 neutron-flat-networks <networks>, 9 neutron-mechanism-drivers <drivers>, 9 neutron-network-type <type>, 9 neutron-network-vlan-ranges <ranges>, 9 neutron-physical-bridge <bridge>, 9 neutron-public-interface <interface>, 9 neutron-tunnel-types <type>, 9 no-proxy <hosts>, 10 nodes-json <file>, 10 ntp-server <ip-address>, 10 plan <name or UUID>, 8 reg-activation-key <key>, 10 reg-force, 10 reg-method [sattelite portal], 10 reg-org <organization>, 10 reg-sat-url <url>, 10 rhel-reg, 10 swift-storage-flavor <flavor-name>, 9 swift-storage-scale <scale-amount>, 9 templates <directory>, 8 tripleo-root <directory>, 10 -O <directory>, output-dir <directory>, 10 -e <file>, environment-file <file>, 10 -t <timeout>, timeout <timeout>, 8 16 Index

Red Hat OpenStack Platform 14

Red Hat OpenStack Platform 14 Red Hat OpenStack Platform 14 Quick Start Guide Creating an all-in-one OpenStack cloud for test and proof-of-concept environments Last Updated: 2019-02-11 Red Hat OpenStack Platform 14 Quick Start Guide

More information

Red Hat OpenStack Platform 13

Red Hat OpenStack Platform 13 Red Hat OpenStack Platform 13 Keeping Red Hat OpenStack Platform Updated Performing minor updates of Red Hat OpenStack Platform Last Updated: 2019-01-04 Red Hat OpenStack Platform 13 Keeping Red Hat OpenStack

More information

Red Hat OpenStack Platform 11 Overcloud Parameters

Red Hat OpenStack Platform 11 Overcloud Parameters Red Hat OpenStack Platform 11 Overcloud s s for customizing the core template collection for a Red Hat OpenStack Platform overcloud OpenStack Team Red Hat OpenStack Platform 11 Overcloud s s for customizing

More information

Build Cloud like Rackspace with OpenStack Ansible

Build Cloud like Rackspace with OpenStack Ansible Build Cloud like Rackspace with OpenStack Ansible https://etherpad.openstack.org/p/osa-workshop-01 Jirayut Nimsaeng DevOps & Cloud Architect 2nd Cloud OpenStack-Container Conference and Workshop 2016 Grand

More information

Red Hat OpenStack Platform 13

Red Hat OpenStack Platform 13 Red Hat OpenStack Platform 13 Red Hat OpenDaylight Installation and Configuration Guide Install and Configure OpenDaylight using Red Hat OpenStack Platform Last Updated: 20181114 Red Hat OpenStack Platform

More information

Red Hat OpenStack Platform 11

Red Hat OpenStack Platform 11 Red Hat OpenStack Platform 11 Director Installation and Usage An end-to-end scenario on using Red Hat OpenStack Platform director to create an OpenStack cloud Last Updated: 2018-10-11 Red Hat OpenStack

More information

RHOSP 12 Director Installation on MaxCore TM Platform

RHOSP 12 Director Installation on MaxCore TM Platform Configuration Note March, 2018 This configuration note describes the installation and configuration of Red Hat OpenStack Platform 12 director on MaxCore TM Platform with a SharpStreamer TM Pro PCIE-7211-2

More information

OpenStack Virtual Baremetal. Release 0.0.1

OpenStack Virtual Baremetal. Release 0.0.1 OpenStack Virtual Baremetal Release 0.0.1 Oct 31, 2018 Contents 1 Table of Contents 3 1.1 Introduction............................................... 3 1.2 Host Cloud Setup.............................................

More information

OpenStack Virtual Baremetal. Release 0.0.1

OpenStack Virtual Baremetal. Release 0.0.1 OpenStack Virtual Baremetal Release 0.0.1 Jan 16, 2019 Contents 1 Table of Contents 3 1.1 Introduction............................................... 3 1.2 Host Cloud Setup.............................................

More information

TripleO No longer considered an Epic Spell of Transformation: IN-PLACE UPGRADE!

TripleO No longer considered an Epic Spell of Transformation: IN-PLACE UPGRADE! TripleO No longer considered an Epic Spell of Transformation: IN-PLACE UPGRADE! TripleO "I am looking for someone to share in an adventure" Gandalf the Grey TripleO is a project aimed at installing, upgrading

More information

Red Hat OpenStack Platform 10

Red Hat OpenStack Platform 10 Red Hat OpenStack Platform 10 Red Hat Ceph Storage for the Overcloud Configuring an Overcloud to Use Red Hat Ceph Storage Last Updated: 20180503 Red Hat OpenStack Platform 10 Red Hat Ceph Storage for

More information

SUBSCRIPTION OVERVIEW

SUBSCRIPTION OVERVIEW RED HAT OPENSTACK PLATFORM SUBSCRIPTION OVERVIEW TECHNOLOGY OVERVIEW INTRODUCTION This overview outlines your Red Hat OpenStack Platform subscription options to help you choose the best solution for your

More information

Introduction to Neutron. Network as a Service

Introduction to Neutron. Network as a Service Introduction to Neutron Network as a Service Assaf Muller, Associate Software Engineer, Cloud Networking, Red Hat assafmuller.wordpress.com, amuller@redhat.com, amuller on Freenode (#openstack) The Why

More information

Red Hat OpenStack Platform 12

Red Hat OpenStack Platform 12 Red Hat OpenStack Platform 12 Director Installation and Usage An end-to-end scenario on using Red Hat OpenStack Platform director to create an OpenStack cloud Last Updated: 2018-07-02 Red Hat OpenStack

More information

OPENSTACK PRIVATE CLOUD WITH GITHUB

OPENSTACK PRIVATE CLOUD WITH GITHUB OPENSTACK PRIVATE CLOUD WITH GITHUB Kiran Gurbani 1 Abstract Today, with rapid growth of the cloud computing technology, enterprises and organizations need to build their private cloud for their own specific

More information

HPE HELION CLOUDSYSTEM 9.0. Copyright 2015 Hewlett Packard Enterprise Development LP

HPE HELION CLOUDSYSTEM 9.0. Copyright 2015 Hewlett Packard Enterprise Development LP HPE HELION CLOUDSYSTEM 9.0 HPE Helion CloudSystem Foundation CloudSystem Foundation Key Use Cases Automate dev/test CICD on OpenStack technology compatible infrastructure Accelerate cloud-native application

More information

Red Hat OpenStack Platform 10 Product Guide

Red Hat OpenStack Platform 10 Product Guide Red Hat OpenStack Platform 10 Product Guide Overview of Red Hat OpenStack Platform OpenStack Team Red Hat OpenStack Platform 10 Product Guide Overview of Red Hat OpenStack Platform OpenStack Team rhos-docs@redhat.com

More information

BCS EXIN Foundation Certificate in OpenStack Software Syllabus

BCS EXIN Foundation Certificate in OpenStack Software Syllabus BCS EXIN Foundation Certificate in OpenStack Software Syllabus Version 1.2 April 2017 This qualification is not regulated by the following United Kingdom Regulators - Ofqual, Qualification in Wales, CCEA

More information

Red Hat OpenStack Platform 12

Red Hat OpenStack Platform 12 Red Hat OpenStack Platform 12 IPv6 Networking for the Overcloud Configuring an Overcloud to Use IPv6 Networking Last Updated: 2018-02-09 Red Hat OpenStack Platform 12 IPv6 Networking for the Overcloud

More information

Getting Started with Contributing to OpenStack An Introductory Crash Course on OpenStack Development

Getting Started with Contributing to OpenStack An Introductory Crash Course on OpenStack Development Getting Started with Contributing to OpenStack An Introductory Crash Course on OpenStack Development Mike Turek mjturek@us.ibm.com mjturek on freenode Who Am I? Mike Turek Software Engineer at IBM in the

More information

Red Hat OpenStack Platform 13

Red Hat OpenStack Platform 13 Red Hat OpenStack Platform 13 Director Installation and Usage An end-to-end scenario on using Red Hat OpenStack Platform director to create an OpenStack cloud Last Updated: 2018-10-11 Red Hat OpenStack

More information

Red Hat OpenStack Platform 14

Red Hat OpenStack Platform 14 Red Hat OpenStack Platform 14 Spine Leaf Networking Configure routed spine-leaf networks using Red Hat OpenStack Platform director Last Updated: 2019-02-25 Red Hat OpenStack Platform 14 Spine Leaf Networking

More information

Red Hat OpenStack Platform 8

Red Hat OpenStack Platform 8 Red Hat OpenStack Platform 8 Director Installation and Usage An end-to-end scenario on using Red Hat OpenStack Platform director to create an OpenStack cloud Last Updated: 2018-01-20 Red Hat OpenStack

More information

(Em)Powering Open Hardware with Open Source Software

(Em)Powering Open Hardware with Open Source Software (Em)Powering Open Hardware with Open Source Software Thomas Cameron, RHCA Cloud Strategist Greg Jones, RHCE Cloud Specialist Senior Solutions Architect Founding Member, CloudForms Tiger Team We have YubiKeys

More information

Red Hat OpenStack Platform 14

Red Hat OpenStack Platform 14 Red Hat OpenStack Platform 14 High Availability for Compute Instances Configure High Availability for Compute Instances Last Updated: 2019-02-11 Red Hat OpenStack Platform 14 High Availability for Compute

More information

TECH GUIDE. OpenStack Installation: A Practitioner s Guide

TECH GUIDE. OpenStack Installation: A Practitioner s Guide TECH GUIDE OpenStack Installation: A Practitioner s Guide Introduction TECH GUIDE: OpenStack Installation: A Practitioner s Guide One of the great things about OpenStack is all the options you have for

More information

Cisco UCS Integrated Infrastructure with Red Hat Enterprise Linux OpenStack Platform and Red Hat Ceph Storage. Deployment Guide

Cisco UCS Integrated Infrastructure with Red Hat Enterprise Linux OpenStack Platform and Red Hat Ceph Storage. Deployment Guide Cisco UCS Integrated Infrastructure with Red Hat Enterprise Linux OpenStack Platform and Red Hat Ceph Storage Deployment Guide Last Updated: May 4, 2016May 4, 2016 1 About Cisco Validated Designs The CVD

More information

BEST PRACTICES FOR DEPLOYING RED HAT OPENSTACK PLATFORM with Open vswitch and Red Hat. Ceph Storage. Jacob Liberman

BEST PRACTICES FOR DEPLOYING RED HAT OPENSTACK PLATFORM with Open vswitch and Red Hat. Ceph Storage. Jacob Liberman BEST PRACTICES FOR DEPLOYING RED HAT OPENSTACK PLATFORM with Open vswitch and Red Hat Jacob Liberman Ceph Storage Field Product Manager -- OpenStack 6/30/2016 INTRODUCTION Best practices for deploying

More information

kayobe Documentation OpenStack Foundation

kayobe Documentation OpenStack Foundation OpenStack Foundation Jun 22, 2018 Contents 1 Kayobe 1 1.1 Features.................................................. 1 1.2 Documentation.............................................. 2 1.3 Advanced Documentation........................................

More information

Ceilometer Documentation

Ceilometer Documentation Ceilometer Documentation Release 0.0 OpenStack, LLC July 06, 2012 CONTENTS 1 What is the purpose of the project and vision for it? 3 2 Table of contents 5 2.1 Initial setup................................................

More information

Red Hat OpenStack Platform 13

Red Hat OpenStack Platform 13 Red Hat OpenStack Platform 13 Spine Leaf Networking Configure routed spine-leaf networks using Red Hat OpenStack Platform director Last Updated: 2018-06-29 Red Hat OpenStack Platform 13 Spine Leaf Networking

More information

F5 Agent for OpenStack Neutron Documentation

F5 Agent for OpenStack Neutron Documentation F5 Agent for OpenStack Neutron Documentation Release 9.3.3.b1 F5 Networks Jul 26, 2017 Contents 1 Global Routed mode 3 2 L2-adjacent mode 7 3 Device Driver Settings/iControl Driver Settings 15 4 Set up

More information

Contrail Cloud Platform Architecture

Contrail Cloud Platform Architecture Contrail Cloud Platform Architecture Release 13.0 Modified: 2018-08-23 Juniper Networks, Inc. 1133 Innovation Way Sunnyvale, California 94089 USA 408-745-2000 www.juniper.net Juniper Networks, the Juniper

More information

Composable IaaS+ and future. Sergey Goncharov Solution Architect, Red Hat

Composable IaaS+ and future. Sergey Goncharov Solution Architect, Red Hat Composable IaaS+ and future Sergey Goncharov Solution Architect, Red Hat sgonchar@redhat.com 11 Red Hat OpenStack Platform Core OpenStack connects two worlds Tenant view Operator view Developers 3 Red

More information

CS-580K/480K Advanced Topics in Cloud Computing. OpenStack

CS-580K/480K Advanced Topics in Cloud Computing. OpenStack CS-580K/480K dvanced Topics in Cloud Computing OpenStack 1 Where we are 2 Virtualization Layer Operating System 1 2 3 4 Operating System 1 2 3 4 Operating System 1 2 3 4 VM1 VM2 VM3 Virtualization Layer

More information

Using the vrealize Orchestrator OpenStack Plug-In 2.0. Modified on 19 SEP 2017 vrealize Orchestrator 7.0

Using the vrealize Orchestrator OpenStack Plug-In 2.0. Modified on 19 SEP 2017 vrealize Orchestrator 7.0 Using the vrealize Orchestrator OpenStack Plug-In 2.0 Modified on 19 SEP 2017 vrealize Orchestrator 7.0 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/

More information

Dell EMC Ready Architecture for Red Hat OpenStack Platform

Dell EMC Ready Architecture for Red Hat OpenStack Platform Dell EMC Ready Architecture for Red Hat OpenStack Platform Release Notes Version 13 Dell EMC Service Provider Solutions ii Contents Contents List of Tables...iii Trademarks... iv Notes, cautions, and warnings...v

More information

VMware Integrated OpenStack with Kubernetes Getting Started Guide. VMware Integrated OpenStack 4.0

VMware Integrated OpenStack with Kubernetes Getting Started Guide. VMware Integrated OpenStack 4.0 VMware Integrated OpenStack with Kubernetes Getting Started Guide VMware Integrated OpenStack 4.0 VMware Integrated OpenStack with Kubernetes Getting Started Guide You can find the most up-to-date technical

More information

Red Hat OpenStack Platform 13

Red Hat OpenStack Platform 13 Red Hat OpenStack Platform 13 OpenStack Integration Test Suite Guide Introduction to the OpenStack Integration Test Suite Last Updated: 2018-06-25 Red Hat OpenStack Platform 13 OpenStack Integration Test

More information

Contrail Cloud Platform Architecture

Contrail Cloud Platform Architecture Contrail Cloud Platform Architecture Release 10.0 Modified: 2018-04-04 Juniper Networks, Inc. 1133 Innovation Way Sunnyvale, California 94089 USA 408-745-2000 www.juniper.net Juniper Networks, the Juniper

More information

Architecture and terminology

Architecture and terminology Architecture and terminology Guy Carmin RHCE, RHCI, RHCVA, RHCSA Solution Architect IGC, Red Hat Roei Goldenberg RHCE Linux Consultant and Cloud expert, Matrix May 2015 Agenda RHEL-OSP services modules

More information

OpenStack Command-Line Interface Reference

OpenStack Command-Line Interface Reference docs.openstack.org OpenStack Command-Line Interface Reference current (2014-12-10) Copyright 2014 OpenStack Foundation Some rights reserved. This guide documents the OpenStack command-line clients. Except

More information

So Many Distributions! Information for Selecting One for a Proof of Concept

So Many Distributions! Information for Selecting One for a Proof of Concept So Many Distributions! Information for Selecting One for a Proof of Concept Bruce Basil Mathews Senior Solutions Architect www.mirantis.com Copyright 2015 Mirantis, Inc. All rights reserved Notes Regarding

More information

Accelerate OpenStack* Together. * OpenStack is a registered trademark of the OpenStack Foundation

Accelerate OpenStack* Together. * OpenStack is a registered trademark of the OpenStack Foundation Accelerate OpenStack* Together * OpenStack is a registered trademark of the OpenStack Foundation Considerations to Build a Production OpenStack Cloud Ruchi Bhargava, Intel IT Shuquan Huang, Intel IT Kai

More information

TPS Documentation. Release Thomas Roten

TPS Documentation. Release Thomas Roten TPS Documentation Release 0.1.0 Thomas Roten Sep 27, 2017 Contents 1 TPS: TargetProcess in Python! 3 2 Installation 5 3 Contributing 7 3.1 Types of Contributions..........................................

More information

DEEP DIVE: OPENSTACK COMPUTE

DEEP DIVE: OPENSTACK COMPUTE DEEP DIVE: OPENSTACK COMPUTE Stephen Gordon Technical Product Manager, Red Hat @xsgordon AGENDA OpenStack architecture refresher Compute architecture Instance life cycle Scaling compute

More information

OSDC.de 2013 Introduction to OpenStack. Justin Clift Open Source & Standards RH 17 April 2013

OSDC.de 2013 Introduction to OpenStack. Justin Clift Open Source & Standards RH 17 April 2013 OSDC.de 2013 Introduction to OpenStack Justin Clift Open Source & Standards Team @ RH 17 April 2013 Who is Justin Clift? Senior Software Engineer @ Red Hat Generally works in technical Community Building

More information

BRINGING HOST LIFE CYCLE AND CONTENT MANAGEMENT INTO RED HAT ENTERPRISE VIRTUALIZATION. Yaniv Kaul Director, SW engineering June 2016

BRINGING HOST LIFE CYCLE AND CONTENT MANAGEMENT INTO RED HAT ENTERPRISE VIRTUALIZATION. Yaniv Kaul Director, SW engineering June 2016 BRINGING HOST LIFE CYCLE AND CONTENT MANAGEMENT INTO RED HAT ENTERPRISE VIRTUALIZATION Yaniv Kaul Director, SW engineering June 2016 HOSTS IN A RHEV SYSTEM Host functionality Hosts run the KVM hypervisor

More information

Red Hat OpenStack Platform 10

Red Hat OpenStack Platform 10 Red Hat OpenStack Platform 10 OpenStack Integration Test Suite Guide Introduction to the OpenStack Integration Test Suite Last Updated: 2018-03-22 Red Hat OpenStack Platform 10 OpenStack Integration Test

More information

Contrail Cloud Deployment Guide

Contrail Cloud Deployment Guide Contrail Cloud Deployment Guide Release 10.0 Modified: 2018-08-06 Juniper Networks, Inc. 1133 Innovation Way Sunnyvale, California 94089 USA 408-745-2000 www.juniper.net Juniper Networks, the Juniper Networks

More information

1. What is Cloud Computing (CC)? What are the Pros and Cons of CC? Technologies of CC 27

1. What is Cloud Computing (CC)? What are the Pros and Cons of CC? Technologies of CC 27 1. What is Cloud Computing (CC)? 3 1.1. Utility Computing First 3 1.2. The New Features of Cloud Computing (CC) 4 1.3. Cloud Service Provider (CSP) 6 1.3.1 Thin Provisioning 7 1.4. CC via a CSP (not via

More information

Best Practice Deployment of F5 App Services in Private Clouds. Henry Tam, Senior Product Marketing Manager John Gruber, Sr. PM Solutions Architect

Best Practice Deployment of F5 App Services in Private Clouds. Henry Tam, Senior Product Marketing Manager John Gruber, Sr. PM Solutions Architect Best Practice Deployment of F5 App Services in Private Clouds Henry Tam, Senior Product Marketing Manager John Gruber, Sr. PM Solutions Architect Agenda 1 2 3 4 5 The trend of data center, private cloud

More information

calyptos Documentation

calyptos Documentation calyptos Documentation Release 1.0.0 Eucalyptus Quality Team Nov 08, 2017 Contents 1 Contents 3 1.1 Quick Start................................................ 3 1.1.1 Pre-requisites..........................................

More information

Mellanox ConnectX-4/ ConnectX-4 Lx / ConnectX-5 Plugin for RedHat OpenStack Platform 11

Mellanox ConnectX-4/ ConnectX-4 Lx / ConnectX-5 Plugin for RedHat OpenStack Platform 11 Mellanox ConnectX-4/ ConnectX-4 Lx / ConnectX-5 Plugin for RedHat OpenStack Platform 11 User Manual Rev 2.0 www.mellanox.com Mellanox Technologies NOTE: THIS HARDWARE, SOFTWARE OR TEST SUITE PRODUCT (

More information

Introduction To OpenStack. Haim Ateya Group Manager, EMC

Introduction To OpenStack. Haim Ateya Group Manager, EMC Introduction To OpenStack Haim Ateya Group Manager, EMC Session Goals Get the audience familiar with OpenStack IaaS platform Go over the project, releases and community around it Review and explain OpenStack

More information

VMware NSX OpenStack Plugin Installation and Configuration NSX-T 2.0

VMware NSX OpenStack Plugin Installation and Configuration NSX-T 2.0 VMware NSX OpenStack Plugin Installation and Configuration NSX-T 2.0 2017, VMware 1 Table of Contents Overview Related Documentation Prerequisites System Requirements Installing the NSX Plugins Configuration

More information

websnort Documentation

websnort Documentation websnort Documentation Release 0.8 Steve Henderson Jul 04, 2018 Contents 1 Features 3 2 Contents 5 3 Issues 15 Python Module Index 17 i ii Websnort is an Open Source web service for analysing pcap files

More information

"Charting the Course... H8Q14S HPE Helion OpenStack. Course Summary

Charting the Course... H8Q14S HPE Helion OpenStack. Course Summary Course Summary Description This course will take students through an in-depth look at HPE Helion OpenStack V5.0. The course flow is optimized to address the high-level architecture and HPE Helion OpenStack

More information

Virtual Infrastructure Manager Installation Automation

Virtual Infrastructure Manager Installation Automation Virtual Infrastructure Manager Installation Automation Feature Summary and Revision History, page 1 Feature Description, page 2 VIM Installation Automation Overview, page 2 Sample Configuration Files,

More information

Replacement of Compute Server UCS C240 M4 - CPAR

Replacement of Compute Server UCS C240 M4 - CPAR Replacement of Compute Server UCS C240 M4 - CPAR Contents Introduction Background Information Abbreviations Workflow of the MoP Prerequisites Backup Identify the VMs Hosted in the Compute Node Snapshot

More information

Part2: Let s pick one cloud IaaS middleware: OpenStack. Sergio Maffioletti

Part2: Let s pick one cloud IaaS middleware: OpenStack. Sergio Maffioletti S3IT: Service and Support for Science IT Cloud middleware Part2: Let s pick one cloud IaaS middleware: OpenStack Sergio Maffioletti S3IT: Service and Support for Science IT, University of Zurich http://www.s3it.uzh.ch/

More information

VMware NSX OpenStack Plugin Installation and Configuration NSX-T 2.1

VMware NSX OpenStack Plugin Installation and Configuration NSX-T 2.1 VMware NSX OpenStack Plugin Installation and Configuration NSX-T 2.1 2018, VMware 1 Table of Contents Overview Related Documentation Prerequisites System Requirements Installing the NSX Plugins Configuration

More information

Installing Cisco VTS Components in OpenStack using Red Hat Enterprise Linux OpenStack Director

Installing Cisco VTS Components in OpenStack using Red Hat Enterprise Linux OpenStack Director Installing Cisco VTS Components in OpenStack using Red Hat Enterprise Linux OpenStack Director First Published: 2018-02-09 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706

More information

OPNFV Release Notes for the Arno SR1 release of OPNFV when using Foreman as a deployment tool

OPNFV Release Notes for the Arno SR1 release of OPNFV when using Foreman as a deployment tool OPNFV Release Notes for the Arno SR1 release of OPNFV when using Foreman as a deployment tool Table of Contents Abstract 1 License 1 Version history 1 Important notes 2 Summary 2 Release Data 2 Version

More information

Red Hat OpenStack Platform 13

Red Hat OpenStack Platform 13 Red Hat OpenStack Platform 13 Firewall Rules for Red Hat OpenStack Platform List of required ports and protocols. Last Updated: 2018-06-27 Red Hat OpenStack Platform 13 Firewall Rules for Red Hat OpenStack

More information

Red Hat OpenStack Platform 10

Red Hat OpenStack Platform 10 Red Hat OpenStack Platform 10 Firewall Rules for Red Hat OpenStack Platform List of required ports and protocols. Last Updated: 2017-12-12 Red Hat OpenStack Platform 10 Firewall Rules for Red Hat OpenStack

More information

Provisioning Intel Rack Scale Design Bare Metal Resources in the OpenStack Environment

Provisioning Intel Rack Scale Design Bare Metal Resources in the OpenStack Environment Implementation guide Data Center Rack Scale Design Provisioning Intel Rack Scale Design Bare Metal Resources in the OpenStack Environment NOTE: If you are familiar with Intel Rack Scale Design and OpenStack*

More information

Red Hat OpenStack Platform 12

Red Hat OpenStack Platform 12 Red Hat OpenStack Platform 12 Monitoring Tools Configuration Guide A guide to OpenStack logging and monitoring tools Last Updated: 2018-05-24 Red Hat OpenStack Platform 12 Monitoring Tools Configuration

More information

HP Helion CloudSystem 9.0 Administrator Guide

HP Helion CloudSystem 9.0 Administrator Guide HP Helion CloudSystem 9.0 Administrator Guide Abstract This information is for use by administrators using HP Helion CloudSystem Software 9.0, who are assigned to configure and provision compute resources

More information

DEPLOYING NFV: BEST PRACTICES

DEPLOYING NFV: BEST PRACTICES DEPLOYING NFV: BEST PRACTICES Rimma Iontel Senior Cloud Architect, Cloud Practice riontel@redhat.com Julio Villarreal Pelegrino Principal Architect, Cloud Practice julio@redhat.com INTRODUCTION TO NFV

More information

Red Hat OpenStack Platform 11 Monitoring Tools Configuration Guide

Red Hat OpenStack Platform 11 Monitoring Tools Configuration Guide Red Hat OpenStack Platform 11 Monitoring Tools Configuration Guide A guide to OpenStack logging and monitoring tools OpenStack Team Red Hat OpenStack Platform 11 Monitoring Tools Configuration Guide A

More information

Release Fulfil.IO Inc.

Release Fulfil.IO Inc. api a idocumentation Release 0.1.0 Fulfil.IO Inc. July 29, 2016 Contents 1 api_ai 3 1.1 Features.................................................. 3 1.2 Installation................................................

More information

Red Hat OpenStack Platform 10

Red Hat OpenStack Platform 10 Red Hat OpenStack Platform 10 Network Functions Virtualization Planning Guide Planning for NFV in Red Hat OpenStack Platform 10 Last Updated: 2018-03-01 Red Hat OpenStack Platform 10 Network Functions

More information

OpenStack Ceilometer. Tong Li (IBM) Brad Topol (IBM)

OpenStack Ceilometer. Tong Li (IBM) Brad Topol (IBM) OpenStack Ceilometer Tong Li (IBM) Brad Topol (IBM) Agenda What is Ceilometer? Brief history of Ceilometer Meters of Ceilometer Workflow Ceilometer Architect & Building Blocks Collecting Process Pipeline

More information

OpenStack End User Guide. SUSE OpenStack Cloud 8

OpenStack End User Guide. SUSE OpenStack Cloud 8 OpenStack End User Guide SUSE OpenStack Cloud 8 OpenStack End User Guide SUSE OpenStack Cloud 8 ABSTRACT OpenStack is an open-source cloud computing platform for public and private clouds. A series of

More information

Red Hat OpenStack Platform 13

Red Hat OpenStack Platform 13 Red Hat OpenStack Platform 13 Upgrading Red Hat OpenStack Platform Upgrading a Red Hat OpenStack Platform environment Last Updated: 2019-01-04 Red Hat OpenStack Platform 13 Upgrading Red Hat OpenStack

More information

An Introduction to Red Hat Enterprise Linux OpenStack Platform. Rhys Oxenham Field Product Manager, Red Hat

An Introduction to Red Hat Enterprise Linux OpenStack Platform. Rhys Oxenham Field Product Manager, Red Hat An Introduction to Red Hat Enterprise Linux OpenStack Platform Rhys Oxenham Field Product Manager, Red Hat What is OpenStack? What is OpenStack? Fully open source cloud operating system Comprised of several

More information

Welcome to Manila: An OpenStack File Share Service. May 14 th, 2014

Welcome to Manila: An OpenStack File Share Service. May 14 th, 2014 Welcome to Manila: An OpenStack File Share Service May 14 th, 2014 1 Who s who? 2 Agenda Project Overview Demo API Overview Architecture Discussion Driver Details Project Status & Upcoming Features Q &

More information

Analyzing Performance of OpenStack with Grafana Dashboards

Analyzing Performance of OpenStack with Grafana Dashboards Analyzing Performance of OpenStack with Grafana Dashboards GrafanaCon EU 2018 Alex Krzos Senior Software Engineer March 2nd 2018 Agenda What is OpenStack Example Perf and Scale Analysis What is the problem?

More information

Building a Video Optimized Private Cloud Platform on Cisco Infrastructure Rohit Agarwalla, Technical

Building a Video Optimized Private Cloud Platform on Cisco Infrastructure Rohit Agarwalla, Technical Building a Video Optimized Private Cloud Platform on Cisco Infrastructure Rohit Agarwalla, Technical Leader roagarwa@cisco.com, @rohitagarwalla DEVNET-1106 Agenda Cisco Media Blueprint Media Workflows

More information

Redhat OpenStack 5.0 and PLUMgrid OpenStack Networking Suite 2.0 Installation Hands-on lab guide

Redhat OpenStack 5.0 and PLUMgrid OpenStack Networking Suite 2.0 Installation Hands-on lab guide Redhat OpenStack 5.0 and PLUMgrid OpenStack Networking Suite 2.0 Installation Hands-on lab guide Oded Nahum Principal Systems Engineer PLUMgrid EMEA November 2014 Page 1 Page 2 Table of Contents Table

More information

StorageGRID Webscale 10.3 Software Installation Guide for OpenStack Deployments

StorageGRID Webscale 10.3 Software Installation Guide for OpenStack Deployments StorageGRID Webscale 10.3 Software Installation Guide for OpenStack Deployments September 2016 215-10818_A0 doccomments@netapp.com Table of Contents 3 Contents Deployment planning and preparation... 5

More information

Launching StarlingX. The Journey to Drive Compute to the Edge Pilot Project Supported by the OpenStack

Launching StarlingX. The Journey to Drive Compute to the Edge Pilot Project Supported by the OpenStack Launching StarlingX The Journey to Drive Compute to the Edge Pilot Project Supported by the OpenStack Foundation Ian Jolliffe, WIND RIVER SYSTEMS Director Engineering @ian_jolliffe Project Overview An

More information

CloudOpen Europe 2013 SYNNEFO: A COMPLETE CLOUD STACK OVER TECHNICAL LEAD, SYNNEFO

CloudOpen Europe 2013 SYNNEFO: A COMPLETE CLOUD STACK OVER TECHNICAL LEAD, SYNNEFO SYNNEFO: A COMPLETE CLOUD STACK OVER GOOGLE GANETI. VANGELIS KOUKIS TECHNICAL LEAD, SYNNEFO 1 Running a public cloud: ~okeanos History - Design started late 2010 - Production since July 2011 Numbers -

More information

Installation runbook for Hedvig + Cinder Driver

Installation runbook for Hedvig + Cinder Driver Installation runbook for Hedvig + Cinder Driver Partner Name: Product Name: Product Version: Hedvig Inc. Hedvig Distributed Storage Platform V-1.0.0 MOS Version: Kilo on Ubuntu 14.04 (2015.1.0-7.0) OpenStack

More information

Baremetal with Apache CloudStack

Baremetal with Apache CloudStack Baremetal with Apache CloudStack ApacheCon Europe 2016 Jaydeep Marfatia Cloud, IOT and Analytics Me Director of Product Management Cloud Products Accelerite Background Project lead for open source project

More information

Roman Numeral Converter Documentation

Roman Numeral Converter Documentation Roman Numeral Converter Documentation Release 0.1.0 Adrian Cruz October 07, 2014 Contents 1 Roman Numeral Converter 3 1.1 Features.................................................. 3 2 Installation 5

More information

pydrill Documentation

pydrill Documentation pydrill Documentation Release 0.3.4 Wojciech Nowak Apr 24, 2018 Contents 1 pydrill 3 1.1 Features.................................................. 3 1.2 Installation................................................

More information

os-testr Documentation

os-testr Documentation os-testr Documentation Release Matthew Treinish July 17, 2015 CONTENTS 1 os-testr 3 1.1 Features.................................................. 3 1.2 0.2.0...................................................

More information

BRKDCT-1253: Introduction to OpenStack Daneyon Hansen, Software Engineer

BRKDCT-1253: Introduction to OpenStack Daneyon Hansen, Software Engineer BRKDCT-1253: Introduction to OpenStack Daneyon Hansen, Software Engineer Agenda Background Technical Overview Demonstration Q&A 2 Looking Back Do You Remember What This Guy Did to IT? Linux 3 The Internet

More information

Red Hat OpenStack Platform 13

Red Hat OpenStack Platform 13 Red Hat OpenStack Platform 13 CephFS via NFS Back End Guide for the Shared File System Service Understanding, using, and managing the Shared File System Service with CephFS via NFS in OpenStack Last Updated:

More information

Openstack Networking Design

Openstack Networking Design Openstack Networking Design Pete Lumbis CCIE #28677, CCDE 2012::3 Cumulus Networks Technical Marketing Engineer 1 Openstack Overview Takes a pool of servers Deploys s (OS, disk, memory, CPU cores, etc)

More information

Red Hat OpenStack Platform 13

Red Hat OpenStack Platform 13 Red Hat OpenStack Platform 13 Monitoring Tools Configuration Guide A guide to OpenStack logging and monitoring tools Last Updated: 2019-01-29 Red Hat OpenStack Platform 13 Monitoring Tools Configuration

More information

EXIN Foundation Certificate in OpenStack Software. Version Newton. Sample Exam. Edition

EXIN Foundation Certificate in OpenStack Software. Version Newton. Sample Exam. Edition EXIN Foundation Certificate in OpenStack Software Version Newton Sample Exam Edition 201706 Copyright EXIN Holding B.V. 2017. All rights reserved. EXIN is a registered trademark. No part of this publication

More information

Spawning Virtual HPCs Using OpenStack

Spawning Virtual HPCs Using OpenStack Spawning Virtual HPCs Using OpenStack Michael Olson SPIN Undergraduate Researcher, NCSA maolson2@illinois.edu Lin Cheng Senior Computer Science Major, UIUC lcheng10@ncsa.illinois.edu Dr. Volodymyr Kindratenko

More information

VMware Integrated OpenStack with Kubernetes Getting Started Guide. VMware Integrated OpenStack 4.1

VMware Integrated OpenStack with Kubernetes Getting Started Guide. VMware Integrated OpenStack 4.1 VMware Integrated OpenStack with Kubernetes Getting Started Guide VMware Integrated OpenStack 4.1 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/

More information

HPE Helion OpenStack Carrier Grade 1.1 Release Notes HPE Helion

HPE Helion OpenStack Carrier Grade 1.1 Release Notes HPE Helion HPE Helion OpenStack Carrier Grade 1.1 Release Notes 2017-11-14 HPE Helion Contents HP Helion OpenStack Carrier Grade 1.1: Release Notes... 3 Changes in This Release... 3 Usage Caveats...4 Known Problems

More information

DNS Zone Test Documentation

DNS Zone Test Documentation DNS Zone Test Documentation Release 1.1.3 Maarten Diemel Dec 02, 2017 Contents 1 DNS Zone Test 3 1.1 Features.................................................. 3 1.2 Credits..................................................

More information

Red Hat OpenStack Platform 10

Red Hat OpenStack Platform 10 Red Hat OpenStack Platform 10 High Availability for Compute Instances Configure High Availability for Compute Instances Last Updated: 2018-10-01 Red Hat OpenStack Platform 10 High Availability for Compute

More information

Reimagining OpenStack*

Reimagining OpenStack* Reimagining OpenStack* Kristen Accardi *Other names and brands may be claimed as the property of others. 1 "Evaluators of OpenStack believe that complexity and difficulty of deployment are decreasing,

More information