Automatyczne skalowanie w OpenStack. Rafał Szmigiel OpenStack Solution Architect/Red Hat

Size: px
Start display at page:

Download "Automatyczne skalowanie w OpenStack. Rafał Szmigiel OpenStack Solution Architect/Red Hat"

Transcription

1 Automatyczne skalowanie w OpenStack Rafał Szmigiel OpenStack Solution Architect/Red Hat

2 Cześć! Rafał Szmigiel Red Hat OpenStack Solutions Architect od Grudnia 2015 Poprzednio: OpenStack Operations Rackspace Systems Wydawnictwo Naukowe PWN S.A.

3 What is CLOUD COMPUTING?

4 Cloud Computing Cloud computing is a type of Internet-based computing that provides shared computer processing resources and data to computers and other devices on demand. It is a model for enabling ubiquitous, on-demand access to a shared pool of configurable computing resources (e.g., computer networks, servers, storage, applications and services), which can be rapidly provisioned and released with minimal management effort. Source:

5 Cloud Computing Cloud computing is a type of Internet-based computing that provides shared computer processing resources and data to computers and other devices on demand. It is a model for enabling ubiquitous, on-demand access to a shared pool of configurable computing resources (e.g., computer networks, servers, storage, applications and services), which can be rapidly provisioned and released with minimal management effort. Source:

6 The problem.

7 Workload underestimation Load capacity 20 0 Monday Tuesday Wednesday Thursday Friday Saturday Sunday

8 Workload overestimation Load capacity 20 0 Monday Tuesday Wednesday Thursday Friday Saturday Sunday

9 The solution: auto-scaling infrastructure Load capacity 20 0 Monday Tuesday Wednesday Thursday Friday Saturday Sunday

10 Heat. ( The orchestrator )

11 OpenStack Orchestrator - Heat Provides human and machine accessible orchestration service Managing the entire life cycle of cloud infrastructure and applications Uses templates to describe and configure components and... relations and dependencies between them.

12 It is HOT Heat Orchestration Template HOT is a template format supported by the Heat along with the other template format, i.e. the Heat CloudFormation-compatible format (CFN). It is expressed in YAML format. The structure of a Heat Orchestration Template has three main sections: Parameters - These are settings passed to heat, which provides a way to customize a stack, and any default values for parameters without passed values. These are defined in the parameters section of a template. Resources - These are the specific objects to create and configure as part of a stack. OpenStack contains a set of core resources that span across all components. These are defined in the resources section of a template. Output - These are values passed from heat after the stack s creation. You can access these values either through the heat API or client tools. These are defined in the output section of a template.

13 Simple Heat template heat_template_version: description: Simple template to deploy a single compute instance resources: my_instance: type: OS::Nova::Server properties: key_name: my_ssh_key image: RHEL7-x86 flavor: m1.small

14 Heat resources $ openstack orchestration resource type list OS::Glance::Image OS::Neutron::FloatingIP OS::Neutron::FloatingIPAssociation OS::Neutron::Net OS::Neutron::NetworkGateway OS::Neutron::Port OS::Neutron::ProviderNet OS::Neutron::RBACPolicy OS::Neutron::SecurityGroup OS::Nova::Flavor OS::Nova::FloatingIP OS::Nova::FloatingIPAssociation OS::Nova::HostAggregate OS::Nova::KeyPair OS::Nova::Server OS::Glance::Image

15 Heat stack s lifecycle management Create a stack $ openstack stack create -t autoscaling.yaml -e autoscalingenvironment.yaml stack-wordpress Field Value id b8-39aa af-0f db stack_name stack-wordpress description AutoScaling Wordpress creation_time T17:54:30 updated_time None stack_status CREATE_IN_PROGRESS stack_status_reason Stack CREATE started

16 List stacks Heat stack s lifecycle management $ openstack stack list ID Stack Name Stack Status Creation Time stack-wordpress CREATE_COMPLETE T17:54: Get stack s resources $ openstack stack resource list ${STACK_NAME_OR_UUID} resource_name resource_type resource_status lb OS::Neutron::LoadBalancer CREATE_COMPLETE cpu_alarm_high OS::Ceilometer::Alarm CREATE_COMPLETE lb_floating OS::Neutron::FloatingIP CREATE_COMPLETE db OS::Nova::Server CREATE_COMPLETE monitor OS::Neutron::HealthMonitor CREATE_COMPLETE

17 Heat stack s lifecycle management Few other example commands to manage stack s lifecycle: $ openstack stack resource show ${STACK_NAME_OR_UUID} ${RESOURCE_ID} $ openstack stack output list ${STACK_NAME_OR_UUID} $ openstack stack suspend ${STACK_NAME_OR_UUID} $ openstack stack resume ${STACK_NAME_OR_UUID} $ openstack stack update --dry-run ${ARGS} ${STACK_NAME_OR_UUID} $ openstack stack delete ${STACK_NAME_OR_UUID}

18 OpenStack s telemetry services.

19 OpenStack Telemetry Ceilometer data collection service Aodh alarming service Gnocchi time-series DB and resource indexing service

20 Auto-scaling ( automagically )

21 Heat auto scaling group asg: type: OS::Heat::AutoScalingGroup properties: min_size: 1 max_size: 6 resource: type: OS::Nova::Server properties: flavor: {get_param: flavor} image: {get_param: image} key_name: {get_param: key_name} metadata: {get_param: metadata} user_data: {get_param: user_data} user_data_format: RAW networks: [{network: {get_param: network} }] (...)

22 Heat auto scaling policy web_server_scaleup_policy: type: OS::Heat::ScalingPolicy properties: adjustment_type: change_in_capacity auto_scaling_group_id: {get_resource: asg} cooldown: 60 scaling_adjustment: 1 web_server_scaledown_policy: type: OS::Heat::ScalingPolicy properties: adjustment_type: change_in_capacity auto_scaling_group_id: {get_resource: asg} cooldown: 60 scaling_adjustment: -1

23 cpu_alarm_high: type: OS::Ceilometer::Alarm properties: Heat alarm definition description: Scale-up if the average CPU > 50% for 30 seconds meter_name: cpu_util statistic: avg period: 30 evaluation_periods: 1 threshold: 50 alarm_actions: - {get_attr: [web_server_scaleup_policy, alarm_url]} matching_metadata: {'metadata.user_metadata.stack': {get_param: "OS::stack_id"}} comparison_operator: gt

24 Autoscaling at a very high level

25 Externally triggered scaling action It is as easy as HTTP POST query: curl -X POST %3A%3A00cac25bdaae4d20b e2dbe4%3Astacks%2Fstack-wordpress %2F6a5308ec-8dee-4b9e-9d8d-0f473e2fce85%2Fresources %2Fweb_server_scaleup_policy?Timestamp= T19%3A41%3A34Z&SignatureMethod=HmacSHA256&AWSAccessKeyId=df7b944c180a 47c9a958fb504f0d6590&SignatureVersion=2&Signature=dGrYqZsnOdgtjzG9XNuSi qwawpl1jmx1cryfn16%2b1oq%3d

26 What s happening there?! ( And why I got 1000 instances on Sunday morning? )

27 Heat $ openstack stack event list ${STACK_NAME_OR_UUID} :56:16 [web_server_scaledown_policy]: SIGNAL_COMPLETE alarm state changed from alarm to alarm (Remaining as alarm due to 1 samples outside threshold, most recent: ) :57:17 [web_server_scaledown_policy]: SIGNAL_COMPLETE alarm state changed from alarm to alarm (Remaining as alarm due to 1 samples outside threshold, most recent: ) :59:30 [web_server_scaleup_policy]: SIGNAL_COMPLETE alarm state changed from ok to alarm (Transition to alarm due to 1 samples outside threshold, most recent: ) :03:32 [web_server_scaleup_policy]: SIGNAL_COMPLETE alarm state changed from alarm to alarm (Remaining as alarm due to 1 samples outside threshold, most recent: ) :04:40 [web_server_scaleup_policy]: SIGNAL_COMPLETE alarm state changed from alarm to alarm (Remaining as alarm due to 1 samples outside threshold, most recent: )

28 Aodh $ aodh alarm list alarm_id type name state severity enabled da8- threshold stack-cpu_alarm_lo alarm low True a54bc325- threshold stack-cpu_alarm_hi ok low True $ aodh alarm-history show a54bc325-3bdb-4745-bbcc-3419d3a13f56 timestamp type detail :05:04 state transition {"state": "ok"} 22:59:03 state transition {"state": "alarm"} 20:59:03 state transition {"state": "ok"}

29 Ceilometer $ ceilometer statistics -m cpu_util -a avg -p 60 Period Start Avg Duration 60 22:53: :54: :55: :56: :57: :58: :59: :00: :01: :02: :03: :04: :05: :06: :07: :08: :09:

30 Questions?

31 Thank you

32

Red Hat OpenStack Platform 11

Red Hat OpenStack Platform 11 Red Hat OpenStack Platform 11 Auto Scaling for Instances Configure Auto Scaling in Red Hat OpenStack Platform Last Updated: 2018-02-09 Red Hat OpenStack Platform 11 Auto Scaling for Instances Configure

More information

Red Hat OpenStack Platform 13

Red Hat OpenStack Platform 13 Red Hat OpenStack Platform 13 Auto Scaling for Instances Configure Auto Scaling in Red Hat OpenStack Platform Last Updated: 2018-09-07 Red Hat OpenStack Platform 13 Auto Scaling for Instances Configure

More information

Heat: OpenStack Orchestrator

Heat: OpenStack Orchestrator Heat: OpenStack Orchestrator Marica Antonacci - INFN Bari! Scuola di Cloud Computing! Bari, 24-27 Novembre 2014 Outline Heat Architecture Template, Environment, Nested Templates WaitConditions Autoscaling

More information

Heat Orchestration Template reference

Heat Orchestration Template reference docs.openstack.org Heat Orchestration Template reference (2014-12-10) Copyright 2014 OpenStack Foundation Some rights reserved. This guide documents the Heat Orchestration Template syntax. Except where

More information

FUJITSU Cloud Service K5 IaaS. Heat Template Specifications

FUJITSU Cloud Service K5 IaaS. Heat Template Specifications FUJITSU Cloud Service K5 IaaS Heat Template Specifications V2.3 December 22, 2017 Fujitsu Limited K5IA-DC-M-003-001E This document may not be reproduced without the written permission of Fujitsu Limited.

More information

IaaS Heat Template Specifications

IaaS Heat Template Specifications FUJITSU Cloud Service for OSS IaaS Heat Template Specifications Version 2.7 FUJITSU LIMITED All Rights Reserved, Copyright FUJITSU LIMITED 2015-2018 K5IA-DC-M-003-001E Preface Purpose of This Document

More information

FUJITSU Cloud Service K5 IaaS. Heat Template Specifications

FUJITSU Cloud Service K5 IaaS. Heat Template Specifications FUJITSU Cloud Service K5 IaaS Heat Template Specifications V1.0 July 20, 2016 Fujitsu Limited K5IA-DC-M-003-001E This document may not be reproduced without the written permission of Fujitsu Limited. The

More information

Resource Template Service. User Guide. Issue 08 Date

Resource Template Service. User Guide. Issue 08 Date Issue 08 Date 2018-04-30 Contents Contents 1 Service Overview1 1.1 Resource Template Service1 1.2 Product Advantages..2 1.3 Supported Resources 3 1.4 Supported APIs5 1.5 Constraints and Limitations..7

More information

The Total Newbie s Introduction to Heat Orchestration in OpenStack

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

More information

Operating and managing an Atomic container-based infrastructure

Operating and managing an Atomic container-based infrastructure Operating and managing an Atomic container-based infrastructure Scott Collier Lars Kellogg-Stedman Sr. Principal System Engineer Senior Software Engineer Brett Thurber Principal Software Engineer 6/25/15

More information

Architecting Applications for the Cloud

Architecting Applications for the Cloud white paper Architecting Applications for the Cloud Table of Contents Current Factors Driving Application Architectures...2 Fulfilling Expectations Surrounding Cloud Adoption...2 Organization-Level Benefits...3

More information

Template system for VNF management

Template system for VNF management Template system for management An open and standards compliant solution Dániel Fey Product Manager, CloudBand Application Manager Gábor Márton Chief Architect, CloudBand Application Manager 07-06-2017

More information

OpenStack Heat Template Composition

OpenStack Heat Template Composition OpenStack Heat Template Composition Paul Breaux, 2016-27-06 Heat Orchestration Templates (HOT) for OpenStack's Heat service can quickly grow in length as users need to pile in ever more resources to define

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

How to Deploy Virtual Test Agents in OpenStack

How to Deploy Virtual Test Agents in OpenStack How to Deploy Virtual Test Agents in OpenStack Executive Summary This guide explains how to deploy Netrounds Virtual Test Agents (vtas) in OpenStack and how to control these from Netrounds Control Center.

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 CloudForms Hybrid Cloud Management (CL220)

Red Hat CloudForms Hybrid Cloud Management (CL220) Red Hat CloudForms Hybrid Cloud Management (CL220) DESCRIPTION: Course overview In this course, students use a hybrid environment, configure Red Hat CloudForms to work with Red Hat Virtualization and Red

More information

Forseti Documentation

Forseti Documentation Forseti Documentation Release 0.1.1 Ticketea dev team Sep 20, 2017 Contents 1 Introduction 3 1.1 Terminology and basic concepts..................................... 3 1.2 What Forseti can do for you?......................................

More information

NSP Network Services Platform Network Functions Manager - Packet (NFM-P) Release NFV Solutions Guide

NSP Network Services Platform Network Functions Manager - Packet (NFM-P) Release NFV Solutions Guide NSP Network Services Platform Network Functions Manager - Packet (NFM-P) NFV Solutions Guide 3HE-11999-AAAA-TQZZA Legal notice Nokia is a registered trademark of Nokia Corporation. Other products and company

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

Deploy TOSCA Workloads in OpenStack via Stand-Alone TOSCAParser, Heat-Translator and Murano

Deploy TOSCA Workloads in OpenStack via Stand-Alone TOSCAParser, Heat-Translator and Murano Deploy TOSCA Workloads in OpenStack via Stand-Alone TOSCAParser, Heat-Translator and Murano IBM Advisory Software Engineer OpenStack PTL Heat-Translator and TOSCA-Parser @sp_zala Vahid Hashemian IBM Advisory

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

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

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

Containers OpenStack. Murano brings Docker & Kubernetes to OpenStack. Serg Melikyan. software.mirantis.com. January 27, 2015

Containers OpenStack. Murano brings Docker & Kubernetes to OpenStack. Serg Melikyan. software.mirantis.com. January 27, 2015 Containers OpenStack Murano brings Docker & Kubernetes to OpenStack Serg Melikyan software.mirantis.com January 27, 2015 Agenda Introduction Murano Kubernetes Empowering Docker on OpenStack Kubernetes

More information

itsmf Annual Conference 2012

itsmf Annual Conference 2012 itsmf Annual Conference 2012 Applying ITIL to Cloud Computing Mr. HP Suen Director itsmf International Executive Board Agenda Definition of Cloud Computing On-demand self service Pool of resources Pre-production

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

ENTERPRISE-GRADE MANAGEMENT FOR OPENSTACK WITH RED HAT CLOUDFORMS

ENTERPRISE-GRADE MANAGEMENT FOR OPENSTACK WITH RED HAT CLOUDFORMS TECHNOLOGY DETAIL ENTERPRISE-GRADE MANAGEMENT FOR OPENSTACK WITH RED HAT CLOUDFORMS ABSTRACT Enterprises engaged in deploying, managing, and scaling out Red Hat Enterprise Linux OpenStack Platform have

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

IaaS Integration Guide

IaaS Integration Guide FUJITSU Software Enterprise Service Catalog Manager V16.1.0 IaaS Integration Guide Windows(64) B1WS-1259-02ENZ0(00) September 2016 Preface Purpose of This Document This document explains the introduction

More information

cfn-pyplates Documentation

cfn-pyplates Documentation cfn-pyplates Documentation Release 0.5 MetaMetrics, Inc. March 14, 2015 Contents 1 Where to get it 3 2 Documentation 5 3 Intended Audience 7 4 What is a pyplate? 9 5 Features 11 6 Contents 13 6.1 Creating

More information

NGF0502 AWS Student Slides

NGF0502 AWS Student Slides NextGen Firewall AWS Use Cases Barracuda NextGen Firewall F Implementation Guide Architectures and Deployments Based on four use cases Edge Firewall Secure Remote Access Office to Cloud / Hybrid Cloud

More information

5 Things You Need for a True VMware Private Cloud

5 Things You Need for a True VMware Private Cloud 5 Things You Need for a True VMware Private Cloud Introduction IT teams forging their cloud strategies are considering public cloud providers such as Amazon Web Services (AWS) to satisfy growing developer

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

Enters system mode. Example The following example creates a scheduler named maintenancesched and commits the transaction:

Enters system mode. Example The following example creates a scheduler named maintenancesched and commits the transaction: Deployment, on page 1 Deployment Creating a Schedule UCS-A /system # create scheduler Creates a scheduler and enters scheduler mode. UCS-A /system/scheduler # commit-buffer The following example creates

More information

Auto Scaling API Manual

Auto Scaling API Manual NTT Communications Cloudⁿ Auto Scaling API Manual Ver.1.0 Please refrain from redistribution (distribution, reproduction, provision etc.) of the contents published in this document. 1 Ver. No. Edited On

More information

Building Service Platforms using OpenStack and CEPH. Malte Dreyer

Building Service Platforms using OpenStack and CEPH. Malte Dreyer Building Service Platforms using OpenStack and CEPH Malte Dreyer Humboldt-Universität zu Berlin Founded in 1810 Faculties: 9 Students: 35 000 (5 000 International) Degree Programs: 185 Professorships:

More information

EC2 Scheduler. AWS Implementation Guide. Lalit Grover. September Last updated: September 2017 (see revisions)

EC2 Scheduler. AWS Implementation Guide. Lalit Grover. September Last updated: September 2017 (see revisions) EC2 Scheduler AWS Implementation Guide Lalit Grover September 2016 Last updated: September 2017 (see revisions) Copyright (c) 2016 by Amazon.com, Inc. or its affiliates. EC2 Scheduler is licensed under

More information

Storing metrics at scale with. Gnocchi. Julien Danjou OpenStack Day France 22 November 2016

Storing metrics at scale with. Gnocchi. Julien Danjou OpenStack Day France 22 November 2016 Storing metrics at scale with Gnocchi Julien Danjou OpenStack Day France 22 November 2016 Hello! I am Julien Danjou Principal Software Engineer at Red Hat You can find me at @juldanjou 1 What s the problem?

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

EDB Ark 2.0 Release Notes

EDB Ark 2.0 Release Notes EDB Ark 2.0 Release Notes September 30, 2016 EnterpriseDB Corporation, 34 Crosby Drive Suite 100, Bedford, MA 01730, USA T +1 781 357 3390 F +1 978 589 5701 E info@enterprisedb.com www.enterprisedb.com

More information

Amazon Web Services Hands-On Auto Scaling

Amazon Web Services Hands-On Auto Scaling Amazon Web Services Hands-On Auto Scaling November, 2012 Table of Contents Overview...3 Auto Scaling Principles...3 The 4 Key Components of Auto Scaling...3 Timing Matters...3 The Minimum Unit of Cost

More information

Red Hat CloudForms 4.5 Integration with AWS CloudFormation and OpenStack Heat

Red Hat CloudForms 4.5 Integration with AWS CloudFormation and OpenStack Heat Red Hat CloudForms 4.5 Integration with AWS CloudFormation and OpenStack Heat How to install and configure Amazon CloudFormation and OpenStack Heat in a Red Hat CloudForms environment Red Hat CloudForms

More information

Service Portal User Guide

Service Portal User Guide FUJITSU Cloud Service K5 IaaS Service Portal User Guide Version 1.4 FUJITSU LIMITED All Rights Reserved, Copyright FUJITSU LIMITED 2015-2016 K5IA-DC-M-005-001E Preface Purpose of This Manual This manual

More information

Scheduling. Scheduling Tasks At Creation Time CHAPTER

Scheduling. Scheduling Tasks At Creation Time CHAPTER CHAPTER 13 This chapter explains the scheduling choices available when creating tasks and when scheduling tasks that have already been created. Tasks At Creation Time The tasks that have the scheduling

More information

CES: A FRAMEWORK FOR EFFICIENT INFRASTRUCTURE UTILIZATION THROUGH CLOUD ELASTICITY AS A SERVICE (CES)

CES: A FRAMEWORK FOR EFFICIENT INFRASTRUCTURE UTILIZATION THROUGH CLOUD ELASTICITY AS A SERVICE (CES) International Journal of Computer Engineering & Technology (IJCET) Volume 6, Issue 8, Aug 2015, pp. 24-30, Article ID: IJCET_06_08_004 Available online at http://www.iaeme.com/ijcet/issues.asp?jtypeijcet&vtype=6&itype=8

More information

OPENSTACK AGILITY. RED HAT RELIABILITY.

OPENSTACK AGILITY. RED HAT RELIABILITY. OPENSTACK AGILITY. RED HAT RELIABILITY. Operational Management How is it really done? And what should OpenStack do about it? Anandeep Pannu Senior Principal Product Manager 7 November 2017 Ops Management

More information

Docker in Appsoma PaaS. Containers FTW

Docker in Appsoma PaaS. Containers FTW Docker in Appsoma PaaS Containers FTW Intro Who? Ken Demarest - CTO of Appsoma, 30 yr coder What? Scientific Computation platform What is Appsoma? A PaaS, typically for complex runs on large data Beachhead

More information

How to autoprovision a NetScaler VPX on SDX for load balancing OpenStack workloads

How to autoprovision a NetScaler VPX on SDX for load balancing OpenStack workloads How to autoprovision a NetScaler VPX on SDX for load balancing OpenStack workloads Introduction The on demand consumption model has become a de facto standard in cloud computing. To support this model

More information

Cloud Computing. Amazon Web Services (AWS)

Cloud Computing. Amazon Web Services (AWS) Cloud Computing What is Cloud Computing? Benefit of cloud computing Overview of IAAS, PAAS, SAAS Types Of Cloud private, public & hybrid Amazon Web Services (AWS) Introduction to Cloud Computing. Introduction

More information

AWS CloudFormation. AWS CloudFormation CLI Reference

AWS CloudFormation. AWS CloudFormation CLI Reference AWS CloudFormation AWS CloudFormation CLI Reference Important: The prior AWS CloudFormation command line interface (CLI) is available but not recommended. Instead, use the AWS Command Line Interface. This

More information

Resource Template Service. API Reference. Issue 02 Date

Resource Template Service. API Reference. Issue 02 Date Issue 02 Date 2018-05-30 Contents Contents 1 API Calling... 1 1.1 Service Usage... 1 1.2 Request Methods... 1 1.3 Request Authentication Methods...2 1.4 Token Authentication...2 1.5 AK/SK Authentication...

More information

Simplified Operating Instructions T105-C / T108-C / T106-C / T17B-C DISPLAYS DAY OR DAY BLOCK PROG 00:0000 PROG PROG ALWAYS OFF

Simplified Operating Instructions T105-C / T108-C / T106-C / T17B-C DISPLAYS DAY OR DAY BLOCK PROG 00:0000 PROG PROG ALWAYS OFF Button Operations Simplified Operating Instructions T105-C / T108-C / T106-C / T17B-C R - Reset (with pen or other pointed instrument). Y - Enters function setup. +/- Buttons to scroll through icons. Y

More information

Container Orchestration on Amazon Web Services. Arun

Container Orchestration on Amazon Web Services. Arun Container Orchestration on Amazon Web Services Arun Gupta, @arungupta Docker Workflow Development using Docker Docker Community Edition Docker for Mac/Windows/Linux Monthly edge and quarterly stable

More information

IaaS Integration Guide

IaaS Integration Guide FUJITSU Software Enterprise Service Catalog Manager V16.0.0 IaaS Integration Guide Windows(64) B1WS-1259-01ENZ0(00) February 2016 Preface Purpose of This Document This document explains the introduction

More information

OpenStack Enabling DevOps Shannon McFarland CCIE #5245 Distinguished DEVNET-1104

OpenStack Enabling DevOps Shannon McFarland CCIE #5245 Distinguished DEVNET-1104 OpenStack Enabling DevOps Shannon McFarland CCIE #5245 Distinguished Engineer @eyepv6 DEVNET-1104 Agenda Introduction DevOps OpenStack Virtualization CI/CD Pipeline Orchestration Conclusion What is DevOps?

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

Prediction Project. Release draft (084e399) OPNFV

Prediction Project. Release draft (084e399) OPNFV Prediction Project Release draft (084e399) OPNFV February 25, 2016 CONTENTS 1 1 Use cases and scenarios 3 1.1 Use case 1................................................ 3 1.2 Use case 2................................................

More information

Accelerate at DevOps Speed With Openshift v3. Alessandro Vozza & Samuel Terburg Red Hat

Accelerate at DevOps Speed With Openshift v3. Alessandro Vozza & Samuel Terburg Red Hat Accelerate at DevOps Speed With Openshift v3 Alessandro Vozza & Samuel Terburg Red Hat IT (R)Evolution Red Hat Brings It All Together What is Kubernetes Open source container cluster manager Inspired by

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

Training on Amazon AWS Cloud Computing. Course Content

Training on Amazon AWS Cloud Computing. Course Content Training on Amazon AWS Cloud Computing Course Content 15 Amazon Web Services (AWS) Cloud Computing 1) Introduction to cloud computing Introduction to Cloud Computing Why Cloud Computing? Benefits of Cloud

More information

Cisco Enterprise Cloud Suite Overview Cisco and/or its affiliates. All rights reserved.

Cisco Enterprise Cloud Suite Overview Cisco and/or its affiliates. All rights reserved. Cisco Enterprise Cloud Suite Overview 2015 Cisco and/or its affiliates. All rights reserved. 1 CECS Components End User Service Catalog SERVICE PORTAL Orchestration and Management UCS Director Application

More information

FUTEBOL UFES User Manual

FUTEBOL UFES User Manual FUTEBOL UFES User Manual Authors Isabella de Albuquerque Ceravolo, Diego Cardoso - Universidade Federal do Espírito Santo Version 0.2 Abstract This document is a manual for the end-users of the FUTEBOL

More information

Automatic Provisioning via Cloud-Init

Automatic Provisioning via Cloud-Init Configuration Note AudioCodes Mediant Software Session Border Controller (SBC) Series Automatic Provisioning via Cloud-Init Mediant Virtual Edition (VE) SBC Mediant Cloud Edition (CE) SBC Version 7.2 Configuration

More information

Driving DevOps Transformation in Enterprises

Driving DevOps Transformation in Enterprises Driving DevOps Transformation in Enterprises Mark Rambow Software Development Manager, AWS OpsWorks, Berlin acts_as_enterprisey start up enterprises enterprises and monolith software DevOps Drive securely

More information

Rocket Steam Elastic SAP

Rocket Steam Elastic SAP Rocket Steam Elastic SAP For SAP ABAP systems running on Linux platforms using Oracle as their RDBMS Release information Release 2014.11 Independent release that can work both on systems launched through

More information

Google Cloud Platform for Systems Operations Professionals (CPO200) Course Agenda

Google Cloud Platform for Systems Operations Professionals (CPO200) Course Agenda Google Cloud Platform for Systems Operations Professionals (CPO200) Course Agenda Module 1: Google Cloud Platform Projects Identify project resources and quotas Explain the purpose of Google Cloud Resource

More information

customer FAQs CLOUD NATIVE INFRASTRUCTURE Service Instances (VMs) information contained in a virtual machine disk image.

customer FAQs CLOUD NATIVE INFRASTRUCTURE Service Instances (VMs) information contained in a virtual machine disk image. CLOUD NATIVE INFRASTRUCTURE Service Q What is the service? Cloud Native Infrastructure from UKCloud is an OpenStack powered Infrastructure as a Service (IaaS) offering which enables organisations to rapidly

More information

HPE Digital Learner OpenStack Content Pack

HPE Digital Learner OpenStack Content Pack Content Pack data sheet HPE Digital Learner OpenStack Content Pack HPE Content Pack number Content Pack category Content Pack length Learn more CP001 Category 1 20 Hours View now Why HPE Education Services?

More information

Provisioning API Manual

Provisioning API Manual NTT Communications Cloudⁿ Provisioning API Manual Ver.1.0 Please refrain from redistributing (including distributing, copying, and providing) the content of this booklet. 1 Version Date of Compil ation

More information

Fast IT - Policy Driven Infrastructure for the Intercloud World

Fast IT - Policy Driven Infrastructure for the Intercloud World Fast IT - Policy Driven Infrastructure for the Intercloud World Paul Horrocks Technical Solution Architect Agenda What is Fast IT? What is Policy? How Cisco delivers Fast IT The foundation for Fast IT

More information

NFV Platform Service Assurance Intel Infrastructure Management Technologies

NFV Platform Service Assurance Intel Infrastructure Management Technologies NFV Platform Service Assurance Intel Infrastructure Management Technologies Meeting the service assurance challenge to nfv (Part 1) Virtualizing and Automating the Network NFV Changes the Game for Service

More information

FDX-2025TS User guide

FDX-2025TS User guide TS User guide 2 1. TABLE OF CONTENTS 2. General... 4 3. Start page... 4 4. Logon... 5 5. Points... 6 3.1 Point status... 6 3.2 Point dialog... 7 3.2.1 Manual command... 7 3.2.2 Trend table... 8 3.2.3 Trend

More information

Container in Production : Openshift 구축사례로 이해하는 PaaS. Jongjin Lim Specialist Solution Architect, AppDev

Container in Production : Openshift 구축사례로 이해하는 PaaS. Jongjin Lim Specialist Solution Architect, AppDev Container in Production : Openshift 구축사례로 이해하는 PaaS Jongjin Lim Specialist Solution Architect, AppDev jonlim@redhat.com Agenda Why Containers? Solution : Red Hat Openshift Container Platform Enterprise

More information

Deliver Docker Containers Continuously on AWS. Philipp

Deliver Docker Containers Continuously on AWS. Philipp Deliver Docker Containers Continuously on AWS Philipp Garbe @pgarbe Azure Container Services So many choices... Google Container Engine Cloud Foundry s Diego Amazon ECS Kubernetes Mesosphere Marathon Docker

More information

amazon.com s Journey to the Cloud Jon Jenkins AWS Summit June 13, 2011

amazon.com s Journey to the Cloud Jon Jenkins AWS Summit June 13, 2011 amazon.com s Journey to the Cloud Jon Jenkins jjenkin@amazon.com AWS Summit June 13, 2011 1995-2010 + First real data center Distribution Center Isolation Decouple Service Oriented Architecture Scale

More information

Cloud Essentials for Architects using OpenStack

Cloud Essentials for Architects using OpenStack Cloud Essentials for Architects using OpenStack Course Overview Start Date 5th March 2015 Duration 2 Days Location Dublin Course Code SS15-13 Programme Overview Cloud Computing is gaining increasing attention

More information

Speeding Up Infrastructure Provisioning with CloudForms. Jason Dillaman Principal Architect, Red Hat Nick Lane Consultant, Red Hat

Speeding Up Infrastructure Provisioning with CloudForms. Jason Dillaman Principal Architect, Red Hat Nick Lane Consultant, Red Hat Speeding Up Infrastructure Provisioning with CloudForms Jason Dillaman Principal Architect, Red Hat Nick Lane Consultant, Red Hat Agenda Where do clouds come from? Cloud Compute Capacity Scale-Out DevOps

More information

Wrapp. Powered by AWS EC2 Container Service. Jude D Souza Solutions Wrapp Phone:

Wrapp. Powered by AWS EC2 Container Service. Jude D Souza Solutions Wrapp Phone: Containers @ Wrapp Powered by AWS EC2 Container Service Jude D Souza Solutions Architect @ Wrapp Phone: +46 767085740 Email: jude@wrapp.com About Me Jude D Souza Stockholm, Sweden ß Karachi, Pakistan jude@wrapp.com

More information

DDOS-GUARD Q DDoS Attack Report

DDOS-GUARD Q DDoS Attack Report DDOS-GUARD Q4 2017 DDoS Attack Report 02 12,7% Number of attacks also dropped by 12,7% in comparison with same period in 2016 4613 Total number of DDoS attacks 36,8% Number of attacks dropped by 36.8%

More information

View a Students Schedule Through Student Services Trigger:

View a Students Schedule Through Student Services Trigger: Department Responsibility/Role File Name Version Document Generation Date 6/10/2007 Date Modified 6/10/2007 Last Changed by Status View a Students Schedule Through Student Services_BUSPROC View a Students

More information

name name C S M E S M E S M E Block S Block M C-Various October Sunday

name name C S M E S M E S M E Block S Block M C-Various October Sunday 01.10.2017 October Sunday 1 10 2017 02.10.2017 October Monday 2 10 2017 03.10.2017 October Tuesday 3 10 2017 Tag der Deutschen Einheit 04.10.2017 October Wednesday 4 10 2017 05.10.2017 October Thursday

More information

Data Center and Cloud Automation

Data Center and Cloud Automation Data Center and Cloud Automation Tanja Hess Systems Engineer September, 2014 AGENDA Challenges and Opportunities Manual vs. Automated IT Operations What problem are we trying to solve and how do we solve

More information

Taming your heterogeneous cloud with Red Hat OpenShift Container Platform.

Taming your heterogeneous cloud with Red Hat OpenShift Container Platform. Taming your heterogeneous cloud with Red Hat OpenShift Container Platform martin@redhat.com Business Problem: Building a Hybrid Cloud solution PartyCo Some Bare Metal machines Mostly Virtualised CosPlayUK

More information

/ Cloud Computing. Recitation 5 February 14th, 2017

/ Cloud Computing. Recitation 5 February 14th, 2017 15-319 / 15-619 Cloud Computing Recitation 5 February 14th, 2017 1 Overview Administrative issues Office Hours, Piazza guidelines Last week s reflection Project 2.1, OLI Unit 2 modules 5 and 6 This week

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

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

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

RackWare Whitepaper RMM Automated Intelligence for the Cloud

RackWare Whitepaper RMM Automated Intelligence for the Cloud RackWare Whitepaper RMM 2.0 - Automated Intelligence for the Cloud RackWare Inc info@rackwareinc.com The Continuum of Virtualization to the Cloud Enterprises of all sizes engage in virtualization to consolidate

More information

Public Cloud - Azure workshop

Public Cloud - Azure workshop Public Cloud - Azure workshop Orchestrating and configuring workloads in Azure By Marco Berube February 2017 @mberube9 Agenda - Why Cloudforms and Ansible are great technologies to build a Service Catalog,

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

Red Hat OpenStack Platform 9 Introduction to the OpenStack Dashboard

Red Hat OpenStack Platform 9 Introduction to the OpenStack Dashboard Red Hat OpenStack Platform 9 Introduction to the OpenStack Dashboard An overview of the OpenStack dashboard graphical user interface OpenStack Team Red Hat OpenStack Platform 9 Introduction to the OpenStack

More information

Build your own Cloud on Christof Westhues

Build your own Cloud on Christof Westhues Build your own Cloud on Christof Westhues chwe@de.ibm.com IBM Big Data & Elastic Storage Tour Software Defined Infrastructure Roadshow December 2 4, 2014 New applications and IT are being built for Cloud

More information

What s New in Red Hat OpenShift Container Platform 3.4. Torben Jäger Red Hat Solution Architect

What s New in Red Hat OpenShift Container Platform 3.4. Torben Jäger Red Hat Solution Architect What s New in Red Hat OpenShift Container Platform 3.4 Torben Jäger Red Hat Solution Architect OpenShift Roadmap OpenShift Container Platform 3.2 Kubernetes 1.2 & Docker 1.9 Red Hat

More information

Virtual Network Functions Life Cycle Management

Virtual Network Functions Life Cycle Management Virtual Network Functions Life Cycle Management Cisco Elastic Services Controller (ESC) provides a single point of control to manage all aspects of VNF lifecycle for generic virtual network functions (VNFs)

More information

Zoptymalizuj Swoje Centrum Danych z Red Hat Virtualization. Jacek Skórzyński Solution Architect/Red Hat

Zoptymalizuj Swoje Centrum Danych z Red Hat Virtualization. Jacek Skórzyński Solution Architect/Red Hat Zoptymalizuj Swoje Centrum Danych z Red Hat Virtualization Jacek Skórzyński Solution Architect/Red Hat AGENDA Red Hat Virtualization Overview RHV Architecture RHV Core Features Red Hat Virtualization Overview

More information

Alarm Counter. A Ceilometer OpenStack Application

Alarm Counter. A Ceilometer OpenStack Application Alarm Counter A Ceilometer OpenStack Application Tejas Tovinkere Pattabhi UTD VOLUNTEER AT AWARD SOLUTIONS Summer 2015 Contents Alarm Counter 1 Introduction...2 2 Pre-Requisites...2 2.1 Server Creation...

More information

getting started guide

getting started guide Pure commitment. getting started guide Cloud Native Infrastructure version 2.0 Contents Introduction... 3 Intended audience... 3 Logging in to the Cloud Native Infrastructure dashboard... 3 Creating your

More information

Amir Zipory Senior Solutions Architect, Redhat Israel, Greece & Cyprus

Amir Zipory Senior Solutions Architect, Redhat Israel, Greece & Cyprus Amir Zipory Senior Solutions Architect, Redhat Israel, Greece & Cyprus amirz@redhat.com TODAY'S IT CHALLENGES IT is under tremendous pressure from the organization to enable growth Need to accelerate,

More information

SFQM and Doctor. Keeping My (Telco) Cloud Afloat. Emma Foley, Intel Maryam Tahhan, Intel Carlos Gonçalves, NEC Ryota Mibu, NEC

SFQM and Doctor. Keeping My (Telco) Cloud Afloat. Emma Foley, Intel Maryam Tahhan, Intel Carlos Gonçalves, NEC Ryota Mibu, NEC SFQM and Doctor Keeping My (Telco) Cloud Afloat Emma Foley, Intel Maryam Tahhan, Intel Carlos Gonçalves, NEC Ryota Mibu, NEC Outline Introduction SFQM Doctor Demo Summary Components Data Centres are powering

More information