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

Size: px
Start display at page:

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

Transcription

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

2 TripleO "I am looking for someone to share in an adventure" Gandalf the Grey

3 TripleO is a project aimed at installing, upgrading and operating OpenStack clouds using OpenStack s own cloud facilities as the foundation building on Nova, Ironic, Neutron and Heat to automate cloud management at datacenter scale.

4 Product vs Service Beyond cookie cutter Maturity Features In-place Upgrades

5

6

7 OpenStack Foreman Installer (OFI) RHEL OSP installer (Codename Staypuft) Packstack Ansible-based homebrew SpinalStack (via acquisition of enovance) Bashstack

8 Deployment "Toto, I've a feeling we're not in Kansas any more." Dorothy

9

10 ~]$ grep -v "^#\ ^$" undercloud.conf [DEFAULT] local_ip = /24 network_gateway = undercloud_public_vip = undercloud_admin_vip = local_interface = eth0 network_cidr = /24 masquerade_network = /24 dhcp_start = dhcp_end = inspection_interface = br-ctlplane inspection_iprange = , inspection_runbench = false undercloud_debug = false store_events = true [stack@undercloud-new ~]$ openstack undercloud install

11 Upstream RDO: Red Hat OpenStack Platform ~]$ sudo yum install rhosp-director-images rhosp-director-images-ipa ~]$ openstack overcloud image upload ~]$ openstack image list ID Name Status dece24-dc1d feb-4f1f8b9c9432 bm-deploy-ramdisk active 29c6be7e-934c-47dd-ada2-ffc7671a2ce2 bm-deploy-kernel active 8801c499-cfb9-4d7d-b603-2df3c348e261 overcloud-full active cd3339cc b1c-8db7-5fc592de6daa overcloud-full-vmlinuz active b665cc2b-2fea-464c-8da a overcloud-full-initrd active

12 TripleO UI CLI instackenv.json { "nodes":[ { "mac":[ "bb:bb:bb:bb:bb:bb" ], "cpu":"4", "memory":"6144", "disk":"40", "arch":"x86_64", "pm_type":"pxe_ipmitool", "pm_user":"admin", "pm_password":"p@55w0rd!", "pm_addr":" " }, ] } [stack@undercloud-new ~]$ openstack baremetal import --json ~/instackenv.json [stack@undercloud-new ~]$ openstack baremetal introspection bulk start

13 Deploy vanilla Overcloud ~]$ openstack overcloud deploy templates --compute-scale 1 --control-scale 1 --ntp-server pool.ntp.org PROFIT!

14 Customization "You re a wizard Harry" Hagrid

15 Core: Advance Networking Network Isolation Storage backends Security Metering Advanced: Composable roles Big Data (Sahara) Baremetal (Ironic) Filesystem (Manila) RadosGW HyperConverged SDN NFV LbaaS Monitoring More..

16

17 environments]$ cat neutron-sriov.yaml ## A Heat environment that can be used to deploy SR-IOV resource_registry: OS::TripleO::Services::NeutronSriovAgent:../puppet/services/neutron-sriov-agent.yaml parameter_defaults: NeutronMechanismDrivers: ['openvswitch','sriovnicswitch'] # Add PciPassthroughFilter to the scheduler default filters NovaSchedulerDefaultFilters: ['RetryFilter','AvailabilityZoneFilter','RamFilter','ComputeFilter','ComputeCapabilitiesFilter','ImagePropertiesFilter','ServerGroupAntiA ffinityfilter','servergroupaffinityfilter','pcipassthroughfilter'] NovaSchedulerAvailableFilters: ["nova.scheduler.filters.all_filters","nova.scheduler.filters.pci_passthrough_filter.pcipassthroughfilter"] # Provide the vendorid:productid of the VFs NeutronSupportedPCIVendorDevs: ['8086:154c','8086:10ca','8086:1520'] NeutronPhysicalDevMappings: "datacentre:ens20f2" # Number of VFs that needs to be configured for a physical interface NeutronSriovNumVFs: "ens20f2:5" NovaPCIPassthrough: - devname: "ens20f2" physical_network: "datacentre"

18 heat_template_version: description: > Extra hostname configuration resources: userdata: type: OS::Heat::MultipartMime properties: parts: - config: {get_resource: nameserver_config} nameserver_config: type: OS::Heat::SoftwareConfig properties: config: #!/bin/bash echo "nameserver " >> /etc/resolv.conf outputs: OS::stack_id: value: {get_resource: userdata} ######################################### resource_registry: OS::TripleO::NodeUserData: /home/stack/templates/nameserver.yaml ######################################### openstack overcloud deploy --templates -e /home/stack/templates/firstboot.yaml

19

20 - name: Uber-Hyperconvered CountDefault: 1 ServicesDefault: - OS::TripleO::Services::CACerts - OS::TripleO::Services::CephMon - OS::TripleO::Services::CephExternal - OS::TripleO::Services::CephRgw - OS::TripleO::Services::CephOSD - OS::TripleO::Services::CinderApi - OS::TripleO::Services::CinderBackup - OS::TripleO::Services::CinderScheduler - OS::TripleO::Services::CinderVolume - OS::TripleO::Services::Core - OS::TripleO::Services::ComputeCeilometerAgent - OS::TripleO::Services::ComputeNeutronL3Agent - OS::TripleO::Services::ComputeNeutronMetadataAgent - OS::TripleO::Services::Kernel - OS::TripleO::Services::Keystone - OS::TripleO::Services::GlanceApi - OS::TripleO::Services::GlanceRegistry - OS::TripleO::Services::HeatApi - OS::TripleO::Services::HeatApiCfn - OS::TripleO::Services::HeatApiCloudwatch - OS::TripleO::Services::HeatEngine - OS::TripleO::Services::MySQL - OS::TripleO::Services::NeutronDhcpAgent

21 decouple resource hungry service from the stack merge 2 or more roles together compute + storage accommodate different hardware for the same roles (snow flakes) create custom configurations on per server basis

22 time openstack overcloud deploy --templates --stack tigerlab \ --ntp-server \ --control-flavor control --control-scale 1 --compute-flavor compute --compute-scale 4 --ceph-storage-scale 0 \ --neutron-tunnel-types vxlan --neutron-network-type vxlan \ -e templates/network-environment.yaml \ -e templates/environments/network-isolation.yaml \ -e templates/ceilometer.yaml \ -e templates/logging-environment.yaml \ -e templates/monitoring-environment.yaml \ -e templates/environments/services/sahara.yaml \ -e templates/environments/enable-tls.yaml \ -e templates/environments/inject-trust-anchor.yaml \ -e /usr/share/openstack-tripleo-heat-templates/environments/tls-endpoints-public-ip.yaml \ -e templates/environments/manila-cephfsnative-config.yaml \ -e templates/fernet.yaml \ -e templates/deployment-artifacts.yaml \ -e templates/puppet-ceph-external.yaml

23 Features "What about your sword? I heard witchers carry two - a silver blade for monsters and steel for humans...? Both are for monsters" Geralt of Rivia

24 Fluentd client Sensu client Collectd client Ansible validations Rally

25

26

27

28

29

30 OVS DPDK SRIOV OpenDaylight Hyper-converged Manila Metadata injections Volume encryption Composable Roles Erasure Coding DVR VLAN aware VMs Telemetry Fernet Tokens Big Data & Analytics Convergence Engine Bare Metal Provisioning Integration Test Benchmarking UI Independent Deployment Phases Ops Tools Simplified HA Red Hat Storage RGW for Swift VirtualBMC Dashboard

31 Upgrades "See this acorn? I'll throw it at you and turn you to stone!" Willow

32 Minor Mitaka Mitaka++ Major Mitaka Newton Backup Dev/Test Production

33 $ $ $ $ Undercloud sudo systemctl stop 'openstack-*' sudo systemctl stop 'neutron-*' yum update python-tripleoclient openstack undercloud upgrade Overcloud $ openstack overcloud deploy --update-plan-only \ --templates \ -e /usr/share/openstack-tripleo-heat-templates/environments/network-isolation.yaml \ -e /home/stack/templates/network-environment.yaml \ -e /home/stack/templates/storage-environment.yaml $ openstack overcloud update stack -i overcloud

34 Time for the Demo...

35 Question?

36 Well, here at last, dear friends, on the shores of the Sea comes the end of our fellowship in Middle-earth. Go in peace! I will not say: do not weep; for not all tears are an evil.

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 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

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

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

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

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

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

F5 OpenStack Private Cloud Solution Package

F5 OpenStack Private Cloud Solution Package + DEPLOYMENT GUIDE FOR BIG-IP ORCHESTRATION ON RED HAT OPENSTACK PLATFORM VERSION 10 F5 OpenStack Private Cloud Solution Package January 2018 + Contents Introduction OpenStack for cloud... 1 Planning an

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

Reference Architectures 2017 Hyper-converged Red Hat OpenStack Platform 10 and Red Hat Ceph Storage 2. John Fulton

Reference Architectures 2017 Hyper-converged Red Hat OpenStack Platform 10 and Red Hat Ceph Storage 2. John Fulton Reference Architectures 2017 Hyper-converged Red Hat OpenStack Platform 10 and Red Hat Ceph Storage 2 John Fulton Reference Architectures 2017 Hyper-converged Red Hat OpenStack Platform 10 and Red Hat

More information

Hyper-Converged Red Hat OpenStack Platform 10 and Red Hat Ceph Storage 2

Hyper-Converged Red Hat OpenStack Platform 10 and Red Hat Ceph Storage 2 Hyper-Converged Red Hat OpenStack Platform 10 and Red Hat Ceph Storage 2 John M. Fulton Version 3.14, 2017-1-14 Table of Contents 1. Comments and Feedback.....................................................................

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

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

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

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

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 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

Red Hat OpenStack Platform 8 Partner Integration

Red Hat OpenStack Platform 8 Partner Integration Red Hat OpenStack Platform 8 Partner Integration Integrating certified third party software and hardware in an OpenStack Platform Environment OpenStack Team Red Hat OpenStack Platform 8 Partner Integration

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

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

Using Prometheus Operator to monitor OpenStack

Using Prometheus Operator to monitor OpenStack Using Prometheus Operator to monitor OpenStack Monitoring at Scale Pradeep Kilambi & Franck Baudin / Anandeep Pannu Engineering Mgr NFV Senior Principal Product Manager 15 November 2018 What we will be

More information

Red Hat OpenStack Platform 10

Red Hat OpenStack Platform 10 Red Hat OpenStack Platform 10 Partner Integration Integrating certified third party software and hardware in an OpenStack Platform Environment Last Updated: 2017-10-19 Red Hat OpenStack Platform 10 Partner

More information

osc-plugin Documentation

osc-plugin Documentation osc-plugin Documentation Release OpenStack Foundation July 26, 2016 Contents 1 rdomanager-oscplugin 3 1.1 Discovery................................................. 3 1.2 Client...................................................

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

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

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

Red Hat OpenStack Platform 11

Red Hat OpenStack Platform 11 Red Hat OpenStack Platform 11 Network Functions Virtualization Conguration Guide Conguring the Network Functions Virtualization (NFV) OpenStack Deployment Last Updated: 20171106 Red Hat OpenStack Platform

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

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

Reference Architectures 2017 Deploying mobile networks using Red Hat OpenStack Platform 10

Reference Architectures 2017 Deploying mobile networks using Red Hat OpenStack Platform 10 Reference Architectures 2017 Deploying mobile networks using Red Hat OpenStack Platform 10 Last Updated: 2019-01-02 Reference Architectures 2017 Deploying mobile networks using Red Hat OpenStack Platform

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

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

Red Hat OpenStack Platform 10 CephFS Back End Guide for the Shared File System Service

Red Hat OpenStack Platform 10 CephFS Back End Guide for the Shared File System Service Red Hat OpenStack Platform 10 CephFS Back End Guide for the Shared File System Service Deploying a CephFS Back End for the Shared File System Service in a Red Hat OpenStack Platform Overcloud OpenStack

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

(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 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

OPENSTACK Building Block for Cloud. Ng Hwee Ming Principal Technologist (Telco) APAC Office of Technology

OPENSTACK Building Block for Cloud. Ng Hwee Ming Principal Technologist (Telco) APAC Office of Technology OPENSTACK Building Block for Cloud Ng Hwee Ming Principal Technologist (Telco) APAC Office of Technology ABOUT RED HAT FROM COMMUNITY TO PRODUCT STABILIZ E INTEGRAT E PARTICIPATE INTEGRAT E STABILIZ E

More information

Ocata, Integrations and NFV. Sergey Goncharov Solution Architect, Red Hat

Ocata, Integrations and NFV. Sergey Goncharov Solution Architect, Red Hat Ocata, Integrations and NFV Sergey Goncharov Solution Architect, Red Hat sgonchar@redhat.com 11 Red Hat OpenStack Platform Ocata Core Components in version 11 (Ocata) DATA PROCESSING TELEMETRY SHARED FILESYSTEM

More information

Red Hat OpenStack Platform 13

Red Hat OpenStack Platform 13 Red Hat OpenStack Platform 13 Advanced Overcloud Customization Methods for configuring advanced features using Red Hat OpenStack Platform director Last Updated: 2018-09-28 Red Hat OpenStack Platform 13

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 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

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

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

Red Hat OpenStack Platform 13

Red Hat OpenStack Platform 13 Red Hat OpenStack Platform 13 Network Functions Virtualization Product Guide Overview of the Network Functions Virtualization (NFV) Last Updated: 2018-07-03 Red Hat OpenStack Platform 13 Network Functions

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

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

Contrail Release Release Notes

Contrail Release Release Notes Contrail Release 3.2.11 Release Notes Release 3.2.11 June 2018 Contents Introduction........................................................ 3 New and Changed Features............................................

More information

Red Hat Enterprise Linux OpenStack Platform 7 External Load Balancing for the Overcloud

Red Hat Enterprise Linux OpenStack Platform 7 External Load Balancing for the Overcloud Red Hat Enterprise Linux OpenStack Platform 7 External Load Balancing for the Overcloud Configuring an OpenStack Platform Environment to Use an External Load Balancer OpenStack Team Red Hat Enterprise

More information

Red Hat OpenStack Platform 8 External Load Balancing for the Overcloud

Red Hat OpenStack Platform 8 External Load Balancing for the Overcloud Red Hat OpenStack Platform 8 External Load Balancing for the Overcloud Configuring an OpenStack Platform Environment to Use an External Load Balancer OpenStack Team Red Hat OpenStack Platform 8 External

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

Contrail Release Release Notes

Contrail Release Release Notes Contrail Release 3.2.10 Release Notes Release 3.2.10 May 2018 Contents Introduction........................................................ 3 New and Changed Features............................................

More information

Red Hat OpenStack Platform 13

Red Hat OpenStack Platform 13 Red Hat OpenStack Platform 13 External Load Balancing for the Overcloud Configuring an OpenStack Platform Environment to Use an External Load Balancer Last Updated: 2018-06-22 Red Hat OpenStack Platform

More information

Mellanox Support for TripleO Queens. Application Notes. Rev 1.0

Mellanox Support for TripleO Queens. Application Notes. Rev 1.0 Mellanox Support for TripleO Queens Application Notes Rev 1.0 www.mellanox.com Mellanox Technologies NOTE: THIS HARDWARE, SOFTWARE OR TEST SUITE PRODUCT ( PRODUCT(S) ) AND ITS RELATED DOCUMENTATION ARE

More information

CLOUD ARCHITECTURE & PERFORMANCE WORKLOADS. Field Activities

CLOUD ARCHITECTURE & PERFORMANCE WORKLOADS. Field Activities CLOUD ARCHITECTURE & PERFORMANCE WORKLOADS Field Activities Matt Smith Senior Solution Architect Red Hat, Inc @rhmjs Jeremy Eder Principal Performance Engineer Red Hat, Inc @jeremyeder CLOUD ARCHITECTURE

More information

Red Hat OpenStack Platform 13

Red Hat OpenStack Platform 13 Red Hat OpenStack Platform 13 NetApp Back End Guide for the Shared File System Service Deploying Multiple NetApp Back Ends for the Shared File System Service in a Red Hat OpenStack Platform Overcloud Last

More information

Red Hat OpenStack Platform 10

Red Hat OpenStack Platform 10 Red Hat OpenStack Platform 10 Advanced Overcloud Customization Methods for configuring advanced features using Red Hat OpenStack Platform director Last Updated: 2018-05-21 Red Hat OpenStack Platform 10

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

Red Hat OpenStack Platform 11

Red Hat OpenStack Platform 11 Red Hat OpenStack Platform 11 Advanced Overcloud Customization Methods for configuring advanced features using Red Hat OpenStack Platform director Last Updated: 2018-05-21 Red Hat OpenStack Platform 11

More information

Contrail Release Release Notes

Contrail Release Release Notes Contrail Release 3.2.8 Release Notes Release 3.2.8 December 2017 Contents Introduction........................................................ 3 New and Changed Features............................................

More information

Technical Overview. Ted Brunell Principal Solution Architect, DoD

Technical Overview. Ted Brunell Principal Solution Architect, DoD Technical Overview 10 Ted Brunell Principal Solution Architect, DoD Programs @DoDCloudGuy tbrunell@redhat.com A Technical Overview in Four Steps Core 2 Red Hat OpenStack Platform Director Integration Advanced

More information

Rajeev Grover. Maruti Kamat. Vivek Narasimhan

Rajeev Grover. Maruti Kamat. Vivek Narasimhan Distributed Routing in Ironic Integrated OpenStack Cloud Rajeev Grover Maruti Kamat Vivek Narasimhan Jonathan Bryce Executive Director Openstack Foundation Embracing Datacenter Diversity Austin Summit

More information

Red Hat OpenStack Platform 13

Red Hat OpenStack Platform 13 Red Hat OpenStack Platform 13 NetApp Back End Guide for the Shared File System Service Deploying Multiple NetApp Back Ends for the Shared File System Service in a Red Hat OpenStack Platform Overcloud Last

More information

Red Hat OpenStack Platform 13

Red Hat OpenStack Platform 13 Red Hat OpenStack Platform 13 Dell EMC PS Series Back End Guide A Guide to Using Dell EMC PS Series Storage in a Red Hat OpenStack Platform Overcloud Last Updated: 2018-06-29 Red Hat OpenStack Platform

More information

Red Hat Enterprise Linux OpenStack Platform User Group.

Red Hat Enterprise Linux OpenStack Platform User Group. Red Hat Enterprise Linux OpenStack Platform User Group. Chris Milsted Seniour Solutions Architect; RHEL, Satellite, OpenStack, OpenShift, Red Hat Storage, Containers... cmilsted@redhat.com Recap on RHEL

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

Dell EMC NFV Ready Bundle for Red Hat

Dell EMC NFV Ready Bundle for Red Hat Dell EMC NFV Ready Bundle for Red Hat Architecture Guide Version 10.2 Dell EMC Service Provider Solutions ii Contents Contents List of Figures...iv List of Tables... v Trademarks... vi Glossary... vii

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

Dell EMC + Red Hat NFV Solution. Dell EMC PowerEdge R-Series Architecture Guide Version 10.0

Dell EMC + Red Hat NFV Solution. Dell EMC PowerEdge R-Series Architecture Guide Version 10.0 Dell EMC + Red Hat NFV Solution Dell EMC PowerEdge R-Series Architecture Guide Version 10.0 Dell EMC Service Provider Solutions ii Contents Contents List of Figures... iv List of Tables... v Trademarks...

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

Upcoming Services in OpenStack Rohit Agarwalla, Technical DEVNET-1102

Upcoming Services in OpenStack Rohit Agarwalla, Technical DEVNET-1102 Upcoming Services in OpenStack Rohit Agarwalla, Technical Leader roagarwa@cisco.com, @rohitagarwalla DEVNET-1102 Agenda OpenStack Overview Upcoming Services Trove Sahara Ironic Magnum Kolla OpenStack Overview

More information

OPENDAYLIGHT TUTORIAL

OPENDAYLIGHT TUTORIAL OPENDAYLIGHT TUTORIAL September 2018 Janki Chhatbar jchhatba@redhat.com Senior Software Engineer Rimma Iontel riontel@redhat.com Senior Architect, Red Hat 1 For Hands-On Instructions https://tinyurl.com/ons2018odl

More information

OpenStack Mitaka Release Overview

OpenStack Mitaka Release Overview OpenStack Mitaka Release Overview Brad Topol, Ph.D., IBM Distinguished Engineer, OpenStack Core Contributor Davanum Srinivas, Community Architect and OpenStack TC Member / Principal Software Engineer,

More information

HP Helion OpenStack Carrier Grade 1.1: Release Notes

HP Helion OpenStack Carrier Grade 1.1: Release Notes HP Helion OpenStack Carrier Grade 1.1: Release Notes HP Helion OpenStack Carrier Grade Contents 2 Contents HP Helion OpenStack Carrier Grade 1.1: Release Notes...3 Changes in This Release... 5 Usage Caveats...7

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

Reference Architecture: Red Hat OpenStack Platform with ThinkSystem Servers

Reference Architecture: Red Hat OpenStack Platform with ThinkSystem Servers Reference Architecture: Red Hat OpenStack Platform with ThinkSystem Servers Last update: 26 September 2017 Provides both economic and high performance options for cloud workloads Describes Lenovo ThinkSystem

More information

Red Hat OpenStack Platform 13

Red Hat OpenStack Platform 13 Red Hat OpenStack Platform 13 Transitioning to Containerized Services A basic guide to working with OpenStack Platform containerized services Last Updated: 2018-08-21 Red Hat OpenStack Platform 13 Transitioning

More information

OpenStack Architecture and Pattern Deployment with Heat. OpenStack Architecture and Pattern Deployment using Heat Ruediger Schulze

OpenStack Architecture and Pattern Deployment with Heat. OpenStack Architecture and Pattern Deployment using Heat Ruediger Schulze OpenStack Architecture and Pattern Deployment using Heat Ruediger Schulze Agenda 1. OpenStack Architecture 2. Pattern Deployment with Heat 3. Summary 2 What is OpenStack? At its most basic level, OpenStackis

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

GETTING STARTED WITH OPENSTACK. Kenneth Hui, Rackspace Dan Radez, Red Hat April 27, 2016

GETTING STARTED WITH OPENSTACK. Kenneth Hui, Rackspace Dan Radez, Red Hat April 27, 2016 GETTING STARTED WITH OPENSTACK Kenneth Hui, Rackspace Dan Radez, Red Hat April 27, 2016 Presenters Kenneth Hui Dan Radez OpenStack Evangelist Sr. Software Engineer Rackspace Red Hat Twitter: @kenhuiny

More information

Reference Architecture: Red Hat OpenStack Platform

Reference Architecture: Red Hat OpenStack Platform Reference Architecture: Red Hat OpenStack Platform Last update: 08 August 2017 Version 1.4 Provides both economic and high performance options for cloud workloads Describes Lenovo System x servers, networking,

More information

Dell EMC Ready Bundle for Red Hat OpenStack Platform. Hadoop Solution Deployment Guide Version

Dell EMC Ready Bundle for Red Hat OpenStack Platform. Hadoop Solution Deployment Guide Version Dell EMC Ready Bundle for Red Hat OpenStack Platform Hadoop Solution Deployment Guide Version 10.0.1 Dell EMC Converged Platforms and Solutions ii Contents Contents List of Figures...iv List of Tables...v

More information

Cisco Nexus Fabric OpenStack Enabler Installation for the VXLAN BGP EVPN fabric

Cisco Nexus Fabric OpenStack Enabler Installation for the VXLAN BGP EVPN fabric Cisco Nexus Fabric OpenStack Enabler Installation for the fabric Hardware and Software Requirements, on page 1 Before you start, on page 3 Assumptions, on page 4 Architecture, on page 4 Cisco Nexus Fabric

More information

Jumpstart your Production OpenStack Deployment with

Jumpstart your Production OpenStack Deployment with Jumpstart your Production OpenStack Deployment with Dave Cain Wednesday April 27 th, 2016 11:50am-12:30pm CST 1 About me Dave Cain 12+ years working on IT in datacenters B.S. Computer Science @ NC State

More information

Dell EMC Ready Bundle for Red Hat OpenStack Platform. Software Deployment Guide Version 10.0

Dell EMC Ready Bundle for Red Hat OpenStack Platform. Software Deployment Guide Version 10.0 Dell EMC Ready Bundle for Red Hat OpenStack Platform Software Deployment Guide Version 10.0 Dell EMC Converged Platforms and Solutions ii Contents Contents List of Figures...iv List of Tables...v Trademarks...6

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

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 Cumulus Switch Configuration Guide Version 13 Dell EMC Service Provider Solutions ii Contents Contents List of Tables...iii Trademarks... iv Notes,

More information

Minimal OpenStack Starting Your OpenStack Journey

Minimal OpenStack Starting Your OpenStack Journey Minimal OpenStack Starting Your OpenStack Journey Sean Dague / Aug 19th, 2015 Twitter: @sdague Blog: dague.net The Mission of OpenStack "To produce the ubiquitous Open Source Cloud Computing platform that

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

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

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

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

OpenStack and OVN What s New with OVS 2.7 OpenStack Summit -- Boston 2017

OpenStack and OVN What s New with OVS 2.7 OpenStack Summit -- Boston 2017 OpenStack and OVN What s New with OVS 2.7 OpenStack Summit -- Boston 2017 Russell Bryant (@russellbryant) Justin Pettit (@Justin_D_Pettit) Ben Pfaff (@Ben_Pfaff) Virtual Networking Overview Provides a

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

Contrail Release Release Notes

Contrail Release Release Notes Contrail Release 3.2.6 Release Notes Release 3.2.6 October 2017 Contents Introduction........................................................ 3 New and Changed Features............................................

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

OpenStackFundamentals Workshop

OpenStackFundamentals Workshop OpenStackFundamentals Workshop (Deploy OpenStack Newton w/ Kolla-Ansible) @OpenStack-Cologne Meetup 2016 June, 29th Arash Kaffamanesh @kaffamanesh About OpenStack-Cologne Meetup Initiated: April 2014 Meetups:

More information

Red Hat Enterprise Virtualization and KVM Roadmap. Scott M. Herold Product Management - Red Hat Virtualization Technologies

Red Hat Enterprise Virtualization and KVM Roadmap. Scott M. Herold Product Management - Red Hat Virtualization Technologies Red Hat Enterprise Virtualization and KVM Roadmap Scott M. Herold Product Management - Red Hat Virtualization Technologies INTRODUCTION TO RED HAT ENTERPRISE VIRTUALIZATION RED HAT ENTERPRISE VIRTUALIZATION

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

Dell EMC Ready Bundle for Red Hat OpenStack Platform. Dell EMC PowerEdge R-Series Architecture Guide Version

Dell EMC Ready Bundle for Red Hat OpenStack Platform. Dell EMC PowerEdge R-Series Architecture Guide Version Dell EMC Ready Bundle for Red Hat OpenStack Platform Dell EMC PowerEdge R-Series Architecture Guide Version 10.0.1 Dell EMC Converged Platforms and Solutions ii Contents Contents List of Figures...iv List

More information