MANAGING MESOS, DOCKER, AND CHRONOS WITH PUPPET

Size: px
Start display at page:

Download "MANAGING MESOS, DOCKER, AND CHRONOS WITH PUPPET"

Transcription

1 Roger Ignazio PuppetConf 2015 MANAGING MESOS, DOCKER, AND CHRONOS WITH PUPPET 2015 Mesosphere, Inc. All Rights Reserved. 1

2 $(whoami) ABOUT ME Roger Ignazio Infrastructure Automation Mesosphere, Inc. All Rights Reserved. 2

3 $(whoami) MESOS IN ACTION mesosinaction.com Code: ctwpuppet 2015 Mesosphere, Inc. All Rights Reserved. 3

4 AGENDA Getting started Deploying a Mesos cluster Building a Docker image Creating a Chronos job Demo Provisioning infrastructure bare-metal and cloud Q & A 2015 Mesosphere, Inc. All Rights Reserved. 4

5 AUDIENCE POLL 2015 Mesosphere, Inc. All Rights Reserved. 5

6 GETTING STARTED ABOUT MESOS, DOCKER, AND CHRONOS Mesos Represent many machines (thousands) as a single entity Advertise resources directly to applications Docker Easily package and deploy apps (with dependencies) Analogous to VMs, but minus the overhead* Chronos Distributed, highly available Cron for Mesos Run scheduled tasks in cgroups, Docker containers 2015 Mesosphere, Inc. All Rights Reserved. 6

7 GETTING STARTED ABOUT PUPPET Declare desired state for your infrastructure Wide range of OS support Idempotent Extensible (via custom facts, types, providers) Open source Apache License, version Mesosphere, Inc. All Rights Reserved. 7

8 GETTING STARTED PUPPET S ROLE Mesos Apps ( Frameworks ) (Chronos, Marathon, etc) Mesos Operating System (RHEL, Ubuntu, Windows, etc) Virtual Infrastructure and IaaS (vsphere, OpenStack, AWS, Azure, etc) Physical Infrastructure (Cisco, Dell, HP, etc) 2015 Mesosphere, Inc. All Rights Reserved. 8

9 GETTING STARTED PUPPET S ROLE If Mesos is the abstraction layer for your applications, Puppet is the abstraction layer for infrastructure management 2015 Mesosphere, Inc. All Rights Reserved. 9

10 GETTING STARTED PUPPET S ROLE If Mesos is the abstraction layer for your applications, Puppet is the abstraction layer for infrastructure management But it can also be more Mesosphere, Inc. All Rights Reserved. 10

11 GETTING STARTED PUPPET S ROLE Custom types and providers can interact with external services (AWS, Chronos,...) Chronos API Chronos Node Puppet Master AWS Coordinator Node AWS API 2015 Mesosphere, Inc. All Rights Reserved. 11

12 DEPLOYING MESOS, DOCKER, AND CHRONOS 2015 Mesosphere, Inc. All Rights Reserved. 12

13 DEPLOYING MESOS, DOCKER, AND CHRONOS DEPLOYMENT OVERVIEW Install/configure Mesos, ZooKeeper, Docker Stage a Docker image on the Mesos agents Install and configure Chronos Create a Chronos job (that runs in a Docker container) 2015 Mesosphere, Inc. All Rights Reserved. 13

14 DEPLOYING MESOS, DOCKER, AND CHRONOS DEPLOYMENT OVERVIEW Chronos ZK Mesos Master Mesos Agent Mesos Agent Mesos Agent Docker Engine Docker Engine Docker Engine 2015 Mesosphere, Inc. All Rights Reserved. 14

15 DEPLOYING MESOS, DOCKER, AND CHRONOS DEPLOYMENT OVERVIEW Puppet s roles/profiles pattern Using the following Puppet modules deric-zookeeper deric-mesos garethr-docker puppetlabs-chronos All of these modules are open source and available via the Puppet Forge: Mesosphere, Inc. All Rights Reserved. 15

16 DEPLOYING MESOS, DOCKER, AND CHRONOS DEPLOYING MESOS (MASTER) class role::mesos::master { include profile::base include profile::chronos include profile::mesos::master include profile::zookeeper } 2015 Mesosphere, Inc. All Rights Reserved. 16

17 DEPLOYING MESOS, DOCKER, AND CHRONOS DEPLOYING MESOS (MASTER) class profile::mesos::master { include profile::mesos::common class { '::mesos::master': # From deric-mesos listen_address => $::ipaddress_eth0, work_dir => '/var/lib/mesos', options => { log_dir => '/var/log/mesos', quorum => '1', }, } } 2015 Mesosphere, Inc. All Rights Reserved. 17

18 DEPLOYING MESOS, DOCKER, AND CHRONOS DEPLOYING ZOOKEEPER class profile::zookeeper { include java # Include defaults from puppetlabs-java } class { '::zookeeper': # From deric-zookeeper client_ip => $::ipaddress_eth0, id => '1', repo => 'cloudera', require => Class['java'], } 2015 Mesosphere, Inc. All Rights Reserved. 18

19 DEPLOYING MESOS, DOCKER, AND CHRONOS DEPLOYING MESOS (AGENT) class role::mesos::agent { include profile::base include profile::docker include profile::mesos::agent } 2015 Mesosphere, Inc. All Rights Reserved. 19

20 DEPLOYING MESOS, DOCKER, AND CHRONOS DEPLOYING MESOS (AGENT) class profile::mesos::agent { include profile::mesos::common } class { '::mesos::slave': # From deric-mesos listen_address => $::ipaddress_eth0, work_dir => '/var/lib/mesos', options => { log_dir => '/var/log/mesos', }, } 2015 Mesosphere, Inc. All Rights Reserved. 20

21 DEPLOYING MESOS, DOCKER, AND CHRONOS DEPLOYING MESOS (COMMON) class profile::mesos::common { class { '::mesos': # From deric-mesos repo => 'mesosphere', zookeeper => 'zk:// :2181/mesos', } } 2015 Mesosphere, Inc. All Rights Reserved. 21

22 DEPLOYING MESOS, DOCKER, AND CHRONOS DEPLOYING DOCKER include ::docker # Include defaults from garethr-docker class { '::mesos::slave': # Let s reconfigure the Mesos agent... options => { containerizers => 'docker,mesos', isolation => 'cgroups/cpu,cgroups/mem', executor_registration_timeout => '5mins', }, } 2015 Mesosphere, Inc. All Rights Reserved. 22

23 DEPLOYING MESOS, DOCKER, AND CHRONOS DEPLOYING CHRONOS class profile::chronos { include ::chronos # Include defaults from puppetlabs-chronos } 2015 Mesosphere, Inc. All Rights Reserved. 23

24 BUILDING DOCKER IMAGES WITH PUPPET 2015 Mesosphere, Inc. All Rights Reserved. 24

25 BUILDING DOCKER IMAGES WITH PUPPET GETTING STARTED WITH PUPPET AND DOCKER Synopsis: Build a Docker image declaratively Two approaches: puppet agent pre-shared key to use existing Puppet infra puppet apply directly apply manifests during build 2015 Mesosphere, Inc. All Rights Reserved. 25

26 BUILDING DOCKER IMAGES WITH PUPPET GETTING STARTED WITH PUPPET AND DOCKER Synopsis: Build a Docker image declaratively Two approaches: puppet agent pre-shared key to use existing Puppet infra puppet apply directly apply manifests during build 2015 Mesosphere, Inc. All Rights Reserved. 26

27 BUILDING DOCKER IMAGES WITH PUPPET GETTING STARTED WITH PUPPET AND DOCKER FROM debian:wheezy MAINTAINER Roger Ignazio WORKDIR /tmp RUN curl -sol RUN dpkg -i puppetlabs-release-wheezy.deb RUN apt-get update RUN apt-get -y install puppet COPY *./ RUN puppet apply example.pp 2015 Mesosphere, Inc. All Rights Reserved. 27

28 BUILDING DOCKER IMAGES WITH PUPPET GETTING STARTED WITH PUPPET AND DOCKER package { ['ruby', 'ruby-dev', 'build-essential']: ensure => installed, } package { 'httparty': ensure => installed, provider => gem, } file { '/usr/bin/query_mesos': ensure => file, mode => '0755', source => '/tmp/query_mesos.rb', } 2015 Mesosphere, Inc. All Rights Reserved. 28

29 BUILDING DOCKER IMAGES WITH PUPPET GETTING STARTED WITH PUPPET AND DOCKER Step 10 : RUN puppet apply example.pp ---> Running in 12eda5e24ff8 Notice: Compiled catalog for 90c88c41cdaa.bad in environment production in 0.16 seconds Notice: Package[build-essential]/ensure: ensure changed 'purged' to 'present' Notice: File[/usr/bin/query_mesos]/ensure: defined content as '{md5} e44268ac8e31f75f1aeee961d0ebe36b' Notice: Package[ruby-dev]/ensure: ensure changed 'purged' to 'present' Notice: Package[httparty]/ensure: created Notice: Finished catalog run in seconds ---> 1a8fefd724ee Removing intermediate container 12eda5e24ff8 Successfully built 1a8fefd724ee 2015 Mesosphere, Inc. All Rights Reserved. 29

30 BUILDING DOCKER IMAGES WITH PUPPET STAGING DOCKER IMAGES ON NODES Using the garethr-docker Puppet module docker::image { 'rogerignazio/basic-puppet-example': image_tag => 'latest', } Equivalent to $ docker pull rogerignazio/basic-puppet-example:latest 2015 Mesosphere, Inc. All Rights Reserved. 30

31 MANAGING CHRONOS JOBS WITH PUPPET 2015 Mesosphere, Inc. All Rights Reserved. 31

32 MANAGING CHRONOS JOBS WITH PUPPET A CUSTOM TYPE AND PROVIDER Bundled with a module Found at lib/puppet/type and lib/puppet/provider Model the API of an external service as Puppet code Chronos API Puppet Master Chronos Node 2015 Mesosphere, Inc. All Rights Reserved. 32

33 MANAGING CHRONOS JOBS WITH PUPPET A CUSTOM TYPE AND PROVIDER chronos_job { 'fetch_mesos_master_metrics': command => 'query_mesos ', job_schedule => 'R/ T00:00:00.000Z/PT1M', container => { type => 'DOCKER', image => 'rogerignazio/basic-puppet-example', }, cpus => 0.5, mem => 256, owner => 'roger@mesosphere.com', } 2015 Mesosphere, Inc. All Rights Reserved. 33

34 DEMO 2015 Mesosphere, Inc. All Rights Reserved. 34

35 PROVISIONING INFRASTRUCTURE 2015 Mesosphere, Inc. All Rights Reserved. 35

36 PROVISIONING INFRASTRUCTURE CLOUD PROVISIONING WITH AWS Declare AWS infrastructure as Puppet resources Custom types and providers hit the AWS API Ensures resources are in desired state Puppet Master AWS Coordinator Node AWS API 2015 Mesosphere, Inc. All Rights Reserved. 36

37 PROVISIONING INFRASTRUCTURE CLOUD PROVISIONING WITH AWS ec2_instance { 'mesos-slave-nn': ensure => present, region => 'us-west-2', # US West (Oregon) image_id => 'ami-4dbf9e7d', # AWS RHEL 7.1 image instance_type => 'c4.xlarge', # 4 CPUs, 7.5 GB mem security_groups => ['mesos-aws-secgrp'], } 2015 Mesosphere, Inc. All Rights Reserved. 37

38 PROVISIONING INFRASTRUCTURE CLOUD PROVISIONING WITH AWS Some of the available resource types: ec2_instance ec2_securitygroup ec2_vpc elb_loadbalancer route53_a_record A more complete example: Mesosphere, Inc. All Rights Reserved. 38

39 PROVISIONING INFRASTRUCTURE BARE-METAL PROVISIONING WITH RAZOR Auto-discover inventory Policy-based provisioning Pluggable brokers Razor is open source Apache License, v Mesosphere, Inc. All Rights Reserved. 39

40 PROVISIONING INFRASTRUCTURE BARE-METAL PROVISIONING WITH RAZOR Ubuntu ISO RHEL ISO PXE Boot Razor Microkernel Razor Server Razor Client (Admin) Policy (Facts, IPMI, LLDP) role::mesos::master role::mesos::agent Puppet Master Mesosphere, Inc. All Rights Reserved. 40

41 PROVISIONING INFRASTRUCTURE BARE-METAL PROVISIONING WITH RAZOR For more information, check out Mesosphere, Inc. All Rights Reserved. 41

42 Q & A puppetconf_talk { 'managing_mesos': ensure => presented, speaker => 'Roger Ignazio', => 'roger@mesosphere.com', twitter => '@rogerignazio', } 2015 Mesosphere, Inc. All Rights Reserved. 42

CONTINUOUS DELIVERY WITH MESOS, DC/OS AND JENKINS

CONTINUOUS DELIVERY WITH MESOS, DC/OS AND JENKINS APACHE MESOS NYC MEETUP SEPTEMBER 22, 2016 CONTINUOUS DELIVERY WITH MESOS, DC/OS AND JENKINS WHO WE ARE ROGER IGNAZIO SUNIL SHAH Tech Lead at Mesosphere @rogerignazio Product Manager at Mesosphere @ssk2

More information

Distributed CI: Scaling Jenkins on Mesos and Marathon. Roger Ignazio Puppet Labs, Inc. MesosCon 2015 Seattle, WA

Distributed CI: Scaling Jenkins on Mesos and Marathon. Roger Ignazio Puppet Labs, Inc. MesosCon 2015 Seattle, WA Distributed CI: Scaling Jenkins on Mesos and Marathon Roger Ignazio Puppet Labs, Inc. MesosCon 2015 Seattle, WA About Me Roger Ignazio QE Automation Engineer Puppet Labs, Inc. @rogerignazio Mesos In Action

More information

@joerg_schad Nightmares of a Container Orchestration System

@joerg_schad Nightmares of a Container Orchestration System @joerg_schad Nightmares of a Container Orchestration System 2017 Mesosphere, Inc. All Rights Reserved. 1 Jörg Schad Distributed Systems Engineer @joerg_schad Jan Repnak Support Engineer/ Solution Architect

More information

FROM MONOLITH TO DOCKER DISTRIBUTED APPLICATIONS

FROM MONOLITH TO DOCKER DISTRIBUTED APPLICATIONS FROM MONOLITH TO DOCKER DISTRIBUTED APPLICATIONS Carlos Sanchez @csanchez Watch online at carlossg.github.io/presentations ABOUT ME Senior So ware Engineer @ CloudBees Author of Jenkins Kubernetes plugin

More information

Building/Running Distributed Systems with Apache Mesos

Building/Running Distributed Systems with Apache Mesos Building/Running Distributed Systems with Apache Mesos Philly ETE April 8, 2015 Benjamin Hindman @benh $ whoami 2007-2012 2009-2010 - 2014 my other computer is a datacenter my other computer is a datacenter

More information

CONTINUOUS DELIVERY WITH DC/OS AND JENKINS

CONTINUOUS DELIVERY WITH DC/OS AND JENKINS SOFTWARE ARCHITECTURE NOVEMBER 15, 2016 CONTINUOUS DELIVERY WITH DC/OS AND JENKINS AGENDA Presentation Introduction to Apache Mesos and DC/OS Components that make up modern infrastructure Running Jenkins

More information

Advanced Continuous Delivery Strategies for Containerized Applications Using DC/OS

Advanced Continuous Delivery Strategies for Containerized Applications Using DC/OS Advanced Continuous Delivery Strategies for Containerized Applications Using DC/OS ContainerCon @ Open Source Summit North America 2017 Elizabeth K. Joseph @pleia2 1 Elizabeth K. Joseph, Developer Advocate

More information

SAMPLE CHAPTER IN ACTION. Roger Ignazio. FOREWORD BY Florian Leibert MANNING

SAMPLE CHAPTER IN ACTION. Roger Ignazio. FOREWORD BY Florian Leibert MANNING SAMPLE CHAPTER IN ACTION Roger Ignazio FOREWORD BY Florian Leibert MANNING Mesos in Action by Roger Ignazio Chapter 1 Copyright 2016 Manning Publications brief contents PART 1 HELLO, MESOS...1 1 Introducing

More information

Scale your Docker containers with Mesos

Scale your Docker containers with Mesos Scale your Docker containers with Mesos Timothy Chen tim@mesosphere.io About me: - Distributed Systems Architect @ Mesosphere - Lead Containerization engineering - Apache Mesos, Drill PMC / Committer

More information

Using DC/OS for Continuous Delivery

Using DC/OS for Continuous Delivery Using DC/OS for Continuous Delivery DevPulseCon 2017 Elizabeth K. Joseph, @pleia2 Mesosphere 1 Elizabeth K. Joseph, Developer Advocate, Mesosphere 15+ years working in open source communities 10+ years

More information

利用 Mesos 打造高延展性 Container 環境. Frank, Microsoft MTC

利用 Mesos 打造高延展性 Container 環境. Frank, Microsoft MTC 利用 Mesos 打造高延展性 Container 環境 Frank, Microsoft MTC About Me Developer @ Yahoo! DevOps @ HTC Technical Architect @ MSFT Agenda About Docker Manage containers Apache Mesos Mesosphere DC/OS application = application

More information

Building a Data-Friendly Platform for a Data- Driven Future

Building a Data-Friendly Platform for a Data- Driven Future Building a Data-Friendly Platform for a Data- Driven Future Benjamin Hindman - @benh 2016 Mesosphere, Inc. All Rights Reserved. INTRO $ whoami BENJAMIN HINDMAN Co-founder and Chief Architect of Mesosphere,

More information

From Zero to Production Our Mesos Journey. Chien Huey DevOps Engineer XO Group, Inc.

From Zero to Production Our Mesos Journey. Chien Huey DevOps Engineer XO Group, Inc. From Zero to Production Our Mesos Journey Chien Huey DevOps Engineer XO Group, Inc. The Gap Gap Items Getting to production DC/OS: CloudFormation Advanced Installer Vanilla Mesos: Non-DC/OS version Package

More information

SCALING LIKE TWITTER WITH APACHE MESOS

SCALING LIKE TWITTER WITH APACHE MESOS Philip Norman & Sunil Shah SCALING LIKE TWITTER WITH APACHE MESOS 1 MODERN INFRASTRUCTURE Dan the Datacenter Operator Alice the Application Developer Doesn t sleep very well Loves automation Wants to control

More information

INDIGO PAAS TUTORIAL. ! Marica Antonacci RIA INFN-Bari

INDIGO PAAS TUTORIAL. ! Marica Antonacci RIA INFN-Bari INDIGO PAAS TUTORIAL RIA-653549! Marica Antonacci!! marica.antonacci@ba.infn.it! INFN-Bari INDIGO PAAS Tutorial Introductory Concepts TOSCA Ansible Docker Orchestrator APIs INDIGO TOSCA custom types and

More information

UP! TO DOCKER PAAS. Ming

UP! TO DOCKER PAAS. Ming UP! TO DOCKER PAAS Ming Jin(mjin@thoughtworks.com) March 15, 2015 1 WHO AM I Ming Jin Head of Cloud Solutions of ThoughtWorks China Architect, Agile Consulting Solutions and Consulting on DevOps & Cloud

More information

Razor. Michal Bryxí Software Engineer Puppet Slides based on work from: David Lutterkort Principal Engineer Puppet

Razor. Michal Bryxí Software Engineer Puppet Slides based on work from: David Lutterkort Principal Engineer Puppet Razor Michal Bryxí Software Engineer Puppet Labs @MichalBryxi Slides based on work from: David Lutterkort Principal Engineer Puppet Labs @lutterkort Configuration management? Anyone? Razor in a nutshell

More information

Beyond 1001 Dedicated Data Service Instances

Beyond 1001 Dedicated Data Service Instances Beyond 1001 Dedicated Data Service Instances Introduction The Challenge Given: Application platform based on Cloud Foundry to serve thousands of apps Application Runtime Many platform users - who don

More information

AGILE DEVELOPMENT AND PAAS USING THE MESOSPHERE DCOS

AGILE DEVELOPMENT AND PAAS USING THE MESOSPHERE DCOS Sunil Shah AGILE DEVELOPMENT AND PAAS USING THE MESOSPHERE DCOS 1 THE DATACENTER OPERATING SYSTEM (DCOS) 2 DCOS INTRODUCTION The Mesosphere Datacenter Operating System (DCOS) is a distributed operating

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

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

From Bare Metal to Cloud. Andy ICCLab, ZHAW Piotr Kasprzak, GWDG

From Bare Metal to Cloud. Andy ICCLab, ZHAW Piotr Kasprzak, GWDG From Bare Metal to Cloud Andy Edmonds, @dizz, ICCLab, ZHAW Piotr Kasprzak, GWDG Intros ICCLab GWDG Zurich University for Service Provider for Applied Sciences Max Planck Society Cloud Computing and University

More information

Be smart. Think open source.

Be smart. Think open source. Foreman Basics Be smart. Think open source. Foreman - Basics Lifecycle management of physical and virtual machines made easy! Agenda Introduction to Foreman Architecture Setup Provisioning Configuration

More information

Introduction to Mesos and the Datacenter Operating System

Introduction to Mesos and the Datacenter Operating System Introduction to Mesos and the Datacenter Operating System Artem Harutyunyan (artem@mesosphere.io) 2016 Mesosphere, Inc. All Rights Reserved. INTRO $ whoami ARTEM HARUTYUNYAN ALICE Offline (2004-2010) AliEn

More information

State of OpenShift on Bare Metal

State of OpenShift on Bare Metal State of OpenShift on Bare Metal OpenShift Commons Gathering - Seattle Jose Palafox, Technical Program Manager for CNCF, Intel Jeremy Eder, Senior Principal Performance Engineer, Red Hat Dave Cain, Senior

More information

Automated Deployment of Private Cloud (EasyCloud)

Automated Deployment of Private Cloud (EasyCloud) Automated Deployment of Private Cloud (EasyCloud) Mohammed Kazim Musab Al-Zahrani Mohannad Mostafa Moath Al-Solea Hassan Al-Salam Advisor: Dr.Ahmad Khayyat COE485 T151 1 Table of Contents Introduction

More information

Deployment Patterns using Docker and Chef

Deployment Patterns using Docker and Chef Deployment Patterns using Docker and Chef Sandeep Chellingi Sandeep.chellingi@prolifics.com Agenda + + Rapid Provisioning + Automated and Managed Deployment IT Challenges - Use-cases What is Docker? What

More information

SAMPLE CHAPTER IN ACTION. Roger Ignazio. FOREWORD BY Florian Leibert MANNING

SAMPLE CHAPTER IN ACTION. Roger Ignazio. FOREWORD BY Florian Leibert MANNING SAMPLE CHAPTER IN ACTION Roger Ignazio FOREWORD BY Florian Leibert MANNING Mesos in Action by Roger Ignazio Chapter 3 Copyright 2016 Manning Publications brief contents PART 1 HELLO, MESOS...1 1 Introducing

More information

Cloud & container monitoring , Lars Michelsen Check_MK Conference #4

Cloud & container monitoring , Lars Michelsen Check_MK Conference #4 Cloud & container monitoring 04.05.2018, Lars Michelsen Some cloud definitions Applications Data Runtime Middleware O/S Virtualization Servers Storage Networking Software-as-a-Service (SaaS) Applications

More information

WHITE PAPER. RedHat OpenShift Container Platform. Benefits: Abstract. 1.1 Introduction

WHITE PAPER. RedHat OpenShift Container Platform. Benefits: Abstract. 1.1 Introduction WHITE PAPER RedHat OpenShift Container Platform Abstract Benefits: Applications are designed around smaller independent components called microservices. Elastic resources: Scale up or down quickly and

More information

CloudCenter for Developers

CloudCenter for Developers DEVNET-1198 CloudCenter for Developers Conor Murphy, Systems Engineer Data Centre Cisco Spark How Questions? Use Cisco Spark to communicate with the speaker after the session 1. Find this session in the

More information

We are ready to serve Latest Testing Trends, Are you ready to learn?? New Batches Info

We are ready to serve Latest Testing Trends, Are you ready to learn?? New Batches Info We are ready to serve Latest Testing Trends, Are you ready to learn?? New Batches Info START DATE : TIMINGS : DURATION : TYPE OF BATCH : FEE : FACULTY NAME : LAB TIMINGS : PH NO: 9963799240, 040-40025423

More information

How to Keep UP Through Digital Transformation with Next-Generation App Development

How to Keep UP Through Digital Transformation with Next-Generation App Development How to Keep UP Through Digital Transformation with Next-Generation App Development Peter Sjoberg Jon Olby A Look Back, A Look Forward Dedicated, data structure dependent, inefficient, virtualized Infrastructure

More information

CLOUD INFRASTRUCTURE ARCHITECTURE DESIGN

CLOUD INFRASTRUCTURE ARCHITECTURE DESIGN CLOUD INFRASTRUCTURE ARCHITECTURE DESIGN Dan Radez OpenStack Red Hat Brad Ascar CloudForms Red Hat Agenda Red Hat OpenStack Platform Installation OpenStack Architecture Highly Available OpenStack Red Hat

More information

Building A Better Test Platform:

Building A Better Test Platform: Building A Better Test Platform: A Case Study of Improving Apache HBase Testing with Docker Aleks Shulman, Dima Spivak Outline About Cloudera Apache HBase Overview API compatibility API compatibility testing

More information

DevOps Course Content

DevOps Course Content DevOps Course Content 1. Introduction: Understanding Development Development SDLC using WaterFall & Agile Understanding Operations DevOps to the rescue What is DevOps DevOps SDLC Continuous Delivery model

More information

Containerizing GPU Applications with Docker for Scaling to the Cloud

Containerizing GPU Applications with Docker for Scaling to the Cloud Containerizing GPU Applications with Docker for Scaling to the Cloud SUBBU RAMA FUTURE OF PACKAGING APPLICATIONS Turns Discrete Computing Resources into a Virtual Supercomputer GPU Mem Mem GPU GPU Mem

More information

Distributed Data on Distributed Infrastructure. Claudius Weinberger & Kunal Kusoorkar, ArangoDB Jörg Schad, Mesosphere

Distributed Data on Distributed Infrastructure. Claudius Weinberger & Kunal Kusoorkar, ArangoDB Jörg Schad, Mesosphere Distributed Data on Distributed Infrastructure Claudius Weinberger & Kunal Kusoorkar, ArangoDB Jörg Schad, Mesosphere Kunal Kusoorkar Director Solutions Engineering, ArangoDB @neunhoef Jörg Schad Claudius

More information

Hybrid Cloud Automation using Cisco CloudCenter API

Hybrid Cloud Automation using Cisco CloudCenter API Hybrid Cloud Automation using Cisco CloudCenter API Ray Doerr, Advanced Services Engineer Cisco Spark How Questions? Use Cisco Spark to communicate with the speaker after the session 1. Find this session

More information

Building physical clouds

Building physical clouds Building physical clouds Christian "kiko" Reis David Duffey Luke Williams OCP Tech Day August 30th, Menlo Park, CA Preamble How VMware killed hardware Time from request to prompt VM Metal Request Procure

More information

Application Centric Microservices Ken Owens, CTO Cisco Intercloud Services. Redhat Summit 2015

Application Centric Microservices Ken Owens, CTO Cisco Intercloud Services. Redhat Summit 2015 Application Centric Microservices Ken Owens, CTO Cisco Intercloud Services Redhat Summit 2015 Agenda Introduction Why Application Centric Application Deployment Options What is Microservices Infrastructure

More information

Advantages of using DC/OS Azure infrastructure and the implementation architecture Bill of materials used to construct DC/OS and the ACS clusters

Advantages of using DC/OS Azure infrastructure and the implementation architecture Bill of materials used to construct DC/OS and the ACS clusters Reference implementation: The Azure Container Service DC/OS is a distributed operating system powered by Apache Mesos that treats collections of CPUs, RAM, networking and so on as a distributed kernel

More information

Setting up Kubernetes with Day 2 in Mind. Angela Chin, Senior Software Engineer, Pivotal Urvashi Reddy, Senior Software Engineer, Pivotal

Setting up Kubernetes with Day 2 in Mind. Angela Chin, Senior Software Engineer, Pivotal Urvashi Reddy, Senior Software Engineer, Pivotal Setting up Kubernetes with Day 2 in Mind Angela Chin, Senior Software Engineer, Pivotal Urvashi Reddy, Senior Software Engineer, Pivotal About Us Angela Software Engineer @ Pivotal Based in Santa Monica,

More information

Supporting GPUs in Docker Containers on Apache Mesos

Supporting GPUs in Docker Containers on Apache Mesos Supporting GPUs in Docker Containers on Apache Mesos MesosCon Europe - 2016 Kevin Klues Senior Software Engineer Mesosphere Yubo Li Staff Researcher IBM Research China Kevin Klues Yubo Li Kevin Klues is

More information

HOW TO PLAN & EXECUTE A SUCCESSFUL CLOUD MIGRATION

HOW TO PLAN & EXECUTE A SUCCESSFUL CLOUD MIGRATION HOW TO PLAN & EXECUTE A SUCCESSFUL CLOUD MIGRATION Steve Bertoldi, Solutions Director, MarkLogic Agenda Cloud computing and on premise issues Comparison of traditional vs cloud architecture Review of use

More information

How Container Schedulers and Software-based Storage will Change the Cloud

How Container Schedulers and Software-based Storage will Change the Cloud How Container Schedulers and Software-based Storage will Change the Cloud David vonthenen {code} by Dell EMC @dvonthenen http://dvonthenen.com github.com/dvonthenen Agenda Review of Software-based Storage

More information

Continuous Delivery for Cloud Native Applications

Continuous Delivery for Cloud Native Applications Continuous Delivery for Cloud Native Applications Cyrille Le Clerc, Director, Product Management at CloudBees Bjorn Boe, Senior Field Engineer at Pivotal Software Speakers /Cyrille Le Clerc Product Manager

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

The Post-Cloud. Where Google, DevOps, and Docker Converge

The Post-Cloud. Where Google, DevOps, and Docker Converge The Post-Cloud Where Google, DevOps, and Docker Converge About me Principal Architect, Intel Corporation DevOps, Telemetry, PaaS, Containers, Puppies Former: VMware EMC Nicholas Weaver nicholas.weaver@intel.com

More information

Puppet on the AWS Cloud

Puppet on the AWS Cloud Puppet on the AWS Cloud Quick Start Reference Deployment AWS Quick Start Reference Team March 2016 This guide is also available in HTML format at http://docs.aws.amazon.com/quickstart/latest/puppet/. Contents

More information

DevOps Technologies. for Deployment

DevOps Technologies. for Deployment DevOps Technologies for Deployment DevOps is the blending of tasks performed by a company's application development and systems operations teams. The term DevOps is being used in several ways. In its most

More information

Continuous Integration using Docker & Jenkins

Continuous Integration using Docker & Jenkins Jenkins LinuxCon Europe 2014 October 13-15, 2014 Mattias Giese Solutions Architect giese@b1-systems.de - Linux/Open Source Consulting, Training, Support & Development Introducing B1 Systems founded in

More information

DevOps in the Cloud A pipeline to heaven?! Robert Cowham BCS CMSG Vice Chair

DevOps in the Cloud A pipeline to heaven?! Robert Cowham BCS CMSG Vice Chair DevOps in the Cloud A pipeline to heaven?! Robert Cowham BCS CMSG Vice Chair Agenda Definitions, History & Background Cloud intro DevOps Pipelines Docker containers Examples 2 Definitions DevOps Agile

More information

From Bare Metal to Cloud

From Bare Metal to Cloud From Bare Metal to Cloud Andy Edmonds, Fabrice Manhart, Thomas Michael Bohnert, Christof Marti ICCLab, ZHAW www.cloudcomp.ch Hello! ICCLab Zurich University for Applied Sciences Cloud Computing Research

More information

Cloud I - Introduction

Cloud I - Introduction Cloud I - Introduction Chesapeake Node.js User Group (CNUG) https://www.meetup.com/chesapeake-region-nodejs-developers-group START BUILDING: CALLFORCODE.ORG 3 Agenda Cloud Offerings ( Cloud 1.0 ) Infrastructure

More information

PSOACI Tetration Overview. Mike Herbert

PSOACI Tetration Overview. Mike Herbert Tetration Overview Mike Herbert Cisco Spark How Questions? Use Cisco Spark to communicate with the speaker after the session 1. Find this session in the Cisco Live Mobile App 2. Click Join the Discussion

More information

Disclaimer This presentation may contain product features that are currently under development. This overview of new technology represents no commitme

Disclaimer This presentation may contain product features that are currently under development. This overview of new technology represents no commitme CNA2080BU Deep Dive: How to Deploy and Operationalize Kubernetes Cornelia Davis, Pivotal Nathan Ness Technical Product Manager, CNABU @nvpnathan #VMworld #CNA2080BU Disclaimer This presentation may contain

More information

Mesosphere and the Enterprise: Run Your Applications on Apache Mesos. Steve Wong Open Source Engineer {code} by Dell

Mesosphere and the Enterprise: Run Your Applications on Apache Mesos. Steve Wong Open Source Engineer {code} by Dell Mesosphere and the Enterprise: Run Your Applications on Apache Mesos Steve Wong Open Source Engineer {code} by Dell EMC @cantbewong Open source at Dell EMC {code} by Dell EMC is a group of passionate open

More information

A Whirlwind Tour of Apache Mesos

A Whirlwind Tour of Apache Mesos A Whirlwind Tour of Apache Mesos About Herdy Senior Software Engineer at Citadel Technology Solutions (Singapore) The eternal student Find me on the internet: _hhandoko hhandoko hhandoko https://au.linkedin.com/in/herdyhandoko

More information

Disclaimer This presentation may contain product features that are currently under development. This overview of new technology represents no commitme

Disclaimer This presentation may contain product features that are currently under development. This overview of new technology represents no commitme CNA1612BU Deploying real-world workloads on Kubernetes and Pivotal Cloud Foundry VMworld 2017 Fred Melo, Director of Technology, Pivotal Merlin Glynn, Sr. Technical Product Manager, VMware Content: Not

More information

ovirt and Docker Integration

ovirt and Docker Integration ovirt and Docker Integration October 2014 Federico Simoncelli Principal Software Engineer Red Hat 1 Agenda Deploying an Application (Old-Fashion and Docker) Ecosystem: Kubernetes and Project Atomic Current

More information

Zenoss Resource Manager Planning Guide

Zenoss Resource Manager Planning Guide Zenoss Resource Manager Planning Guide Release 6.0.1 Zenoss, Inc. www.zenoss.com Zenoss Resource Manager Planning Guide Copyright 2017 Zenoss, Inc. All rights reserved. Zenoss, Own IT, and the Zenoss logo

More information

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

CS-580K/480K Advanced Topics in Cloud Computing. Container III CS-580/480 Advanced Topics in Cloud Computing Container III 1 Docker Container https://www.docker.com/ Docker is a platform for developers and sysadmins to develop, deploy, and run applications with containers.

More information

Customer s journey into the private cloud with Cisco Enterprise Cloud Suite

Customer s journey into the private cloud with Cisco Enterprise Cloud Suite Customer s journey into the private cloud with Cisco Enterprise Cloud Suite Peter Charpentier, Senior Solution Architect, Cisco AS Cisco Spark How Questions? Use Cisco Spark to communicate with the speaker

More information

SUSE Manager and Salt

SUSE Manager and Salt SUSE Manager and Salt The Three Cs of the IT Transformation Challenge Transform your approach to infrastructure to enable the business to capitalize on new innovations of data Cost Complexity Compliance

More information

Mesosphere and Percona Server for MongoDB. Jeff Sandstrom, Product Manager (Percona) Ravi Yadav, Tech. Partnerships Lead (Mesosphere)

Mesosphere and Percona Server for MongoDB. Jeff Sandstrom, Product Manager (Percona) Ravi Yadav, Tech. Partnerships Lead (Mesosphere) Mesosphere and Percona Server for MongoDB Jeff Sandstrom, Product Manager (Percona) Ravi Yadav, Tech. Partnerships Lead (Mesosphere) Mesosphere DC/OS MICROSERVICES, CONTAINERS, & DEV TOOLS DATA SERVICES,

More information

Mesosphere and Percona Server for MongoDB. Peter Schwaller, Senior Director Server Eng. (Percona) Taco Scargo, Senior Solution Engineer (Mesosphere)

Mesosphere and Percona Server for MongoDB. Peter Schwaller, Senior Director Server Eng. (Percona) Taco Scargo, Senior Solution Engineer (Mesosphere) Mesosphere and Percona Server for MongoDB Peter Schwaller, Senior Director Server Eng. (Percona) Taco Scargo, Senior Solution Engineer (Mesosphere) Mesosphere DC/OS MICROSERVICES, CONTAINERS, & DEV TOOLS

More information

Container Management : First Looks

Container Management : First Looks Container Management : First Looks John Hardy Senior Principal Product Manager jhardy@redhat.com 25th June 2015 Itamar Heim Senior Director, Software Engineering itamar@redhat.com Disclaimer This information

More information

Issues Fixed in DC/OS

Issues Fixed in DC/OS Release Notes for 1.10.4 These are the release notes for DC/OS 1.10.4. DOWNLOAD DC/OS OPEN SOURCE Issues Fixed in DC/OS 1.10.4 CORE-1375 - Docker executor does not hang due to lost messages. DOCS-2169

More information

Xen and CloudStack. Ewan Mellor. Director, Engineering, Open-source Cloud Platforms Citrix Systems

Xen and CloudStack. Ewan Mellor. Director, Engineering, Open-source Cloud Platforms Citrix Systems Xen and CloudStack Ewan Mellor Director, Engineering, Open-source Cloud Platforms Citrix Systems Agenda What is CloudStack? Move to the Apache Foundation CloudStack architecture on Xen The future for CloudStack

More information

Puppet Managed Cisco UCS Infrastructure with Docker Enterprise Edition for Container Management

Puppet Managed Cisco UCS Infrastructure with Docker Enterprise Edition for Container Management Puppet Managed Cisco UCS Infrastructure with Docker Enterprise Edition for Container Management 2018 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public Information. Page 1

More information

AGENDA. 13:30-14:25 Gestion des patches, du provisionning et de la configuration de RHEL avec Satellite 6.1, par Michael Lessard, Red Hat

AGENDA. 13:30-14:25 Gestion des patches, du provisionning et de la configuration de RHEL avec Satellite 6.1, par Michael Lessard, Red Hat AGENDA 13:30-14:25 Gestion des patches, du provisionning et de la configuration de RHEL avec Satellite 6.1, par Michael Lessard, Red Hat 14:25-14:35 Capsule : Surveiller les accès aux fichiers avec Auditd,

More information

Fixing the "It works on my machine!" Problem with Docker

Fixing the It works on my machine! Problem with Docker Fixing the "It works on my machine!" Problem with Docker Jared M. Smith @jaredthecoder About Me Cyber Security Research Scientist at Oak Ridge National Lab BS and MS in Computer Science from the University

More information

No Limits Cloud Introducing the HPE Helion Cloud Suite July 28, Copyright 2016 Vivit Worldwide

No Limits Cloud Introducing the HPE Helion Cloud Suite July 28, Copyright 2016 Vivit Worldwide No Limits Cloud Introducing the HPE Helion Cloud Suite July 28, 2016 Copyright 2016 Vivit Worldwide Brought to you by Copyright 2016 Vivit Worldwide Hosted By Jeff Jamieson VP Sales & Marketing Whitlock

More information

개발자와운영자를위한 DevOps 플랫폼 OpenShift Container Platform. Hyunsoo Senior Solution Architect 07.Feb.2017

개발자와운영자를위한 DevOps 플랫폼 OpenShift Container Platform. Hyunsoo Senior Solution Architect 07.Feb.2017 개발자와운영자를위한 DevOps 플랫폼 OpenShift Container Platform Hyunsoo Kim(hykim@redhat.com) Senior Solution Architect 07.Feb.2017 1 Agenda 1. What is DevOps? 2. Platform as a Service(PaaS) 3. Build & Deploy on PaaS

More information

Big Data Security. Facing the challenge

Big Data Security. Facing the challenge Big Data Security Facing the challenge Experience the presentation xlic.es/v/e98605 About me Father of a 5 year old child Technical leader in Architecture and Security team at Stratio Sailing skipper 3

More information

CLUSTERING HIVEMQ. Building highly available, horizontally scalable MQTT Broker Clusters

CLUSTERING HIVEMQ. Building highly available, horizontally scalable MQTT Broker Clusters CLUSTERING HIVEMQ Building highly available, horizontally scalable MQTT Broker Clusters 12/2016 About this document MQTT is based on a publish/subscribe architecture that decouples MQTT clients and uses

More information

Configuring and Managing a Private Cloud with Oracle Enterprise Manager

Configuring and Managing a Private Cloud with Oracle Enterprise Manager Configuring and Managing a Private Cloud with Oracle Enterprise Manager Oracle OpenWorld 2011 Session #06980, Tuesday, 5:30 pm Kai Yu Dell Inc. Madhup Gulati, Oracle Corporation Akanksha Sheoran, Oracle

More information

IBM Bluemix compute capabilities IBM Corporation

IBM Bluemix compute capabilities IBM Corporation IBM Bluemix compute capabilities After you complete this section, you should understand: IBM Bluemix infrastructure compute options Bare metal servers Virtual servers IBM Bluemix Container Service IBM

More information

P a g e 1. Teknologisk Institut. Online kursus k SysAdmin & DevOps Collection

P a g e 1. Teknologisk Institut.   Online kursus k SysAdmin & DevOps Collection P a g e 1 Online kursus k72751 SysAdmin & DevOps Collection P a g e 2 Title Estimated Duration (hrs) Ruby on Rails - Fundamentals 1,5 Ruby on Rails - Database Fundamentals 1,22 Python: The Basics 3,5 Python:

More information

RED HAT GLUSTER TECHSESSION CONTAINER NATIVE STORAGE OPENSHIFT + RHGS. MARCEL HERGAARDEN SR. SOLUTION ARCHITECT, RED HAT BENELUX April 2017

RED HAT GLUSTER TECHSESSION CONTAINER NATIVE STORAGE OPENSHIFT + RHGS. MARCEL HERGAARDEN SR. SOLUTION ARCHITECT, RED HAT BENELUX April 2017 RED HAT GLUSTER TECHSESSION CONTAINER NATIVE STORAGE OPENSHIFT + RHGS MARCEL HERGAARDEN SR. SOLUTION ARCHITECT, RED HAT BENELUX April 2017 AGENDA Why OpenShift? The Journey So Far for OpenShift Storage

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

Designing MQ deployments for the cloud generation

Designing MQ deployments for the cloud generation Designing MQ deployments for the cloud generation WebSphere User Group, London Arthur Barr, Senior Software Engineer, IBM MQ 30 th March 2017 Top business drivers for cloud 2 Source: OpenStack user survey,

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

The age of orchestration

The age of orchestration The age of orchestration From Docker basics to cluster management NICOLA PAOLUCCI DEVELOPER INSTIGATOR ATLASSIAN @DURDN Three minute Docker intro? Time me and ring a bell if I am over it. Just kidding

More information

Active System Manager Release 8.2 SDK Reference Guide

Active System Manager Release 8.2 SDK Reference Guide Active System Manager Release 8.2 SDK Reference Guide Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your computer. CAUTION: A CAUTION indicates

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

Friday, March 1, 13. State of Puppet

Friday, March 1, 13. State of Puppet State of Puppet Puppet Labs: by the numbers Jan 2012 Jan 2013 Employees 55 110 Customer Countries 29 42 Office Space 836 m 2 9,000 ft 2 2,232 m 2 25,000 ft 2 Puppet Labs: A Great Place to Work! Weekly

More information

DevOps Foundations : Infrastructure as Code

DevOps Foundations : Infrastructure as Code DevOps Foundations : Infrastructure as Code Ernest Mueller, James Wickett DevOps Fundamentals 1 1. Infrasturcture automation 2. Continuous Delivery 3. Reliability Engineering Infrastructure as Code There

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

Disclaimer This presentation may contain product features that are currently under development. This overview of new technology represents no commitme

Disclaimer This presentation may contain product features that are currently under development. This overview of new technology represents no commitme SER1906BU VMware and Chef - Leveraging the vsphere API Together #VMworld #SER1906BU Disclaimer This presentation may contain product features that are currently under development. This overview of new

More information

Installation runbook for

Installation runbook for Installation runbook for Arista Networks ML2 VLAN driver, L3 plugin integration Partner Name: Product Name: Product Version: Arista Networks Arista EOS EOS-4.14.5 or above MOS Version: Mirantis OpenStack

More information

OpenStack Magnum Hands-on. By Saulius Alisauskas and Bryan Havenstein

OpenStack Magnum Hands-on. By Saulius Alisauskas and Bryan Havenstein OpenStack Magnum Hands-on By Saulius Alisauskas and Bryan Havenstein Prerequisites & Expectations 8GB RAM minimum Expectations This will be very slow due to 2 layers of virtualization Things might fail

More information

Isn't it Ironic? Managing a bare metal cloud. devananda.github.io/talks/isnt-it-ironic.html. Devananda van der Veen

Isn't it Ironic? Managing a bare metal cloud. devananda.github.io/talks/isnt-it-ironic.html. Devananda van der Veen Isn't it Ironic? Managing a bare metal cloud Devananda van der Veen twitter: @devananda devananda.github.io/talks/isnt-it-ironic.html Who am I Master Engineer at HP OpenStack Ironic PTL OpenStack Technical

More information

Ahead in the Cloud. Matt Wood TECHNOLOGY EVANGELIST

Ahead in the Cloud. Matt Wood TECHNOLOGY EVANGELIST Ahead in the Cloud Matt Wood TECHNOLOGY EVANGELIST Hello. Thank you. Don t be afraid to be a bit technical! There Will Be Code 3 1 Building blocks Infrastructure services Compute Storage Databases

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

POWERING THE INTERNET WITH APACHE MESOS

POWERING THE INTERNET WITH APACHE MESOS Neil Conway, Niklas Nielsen, Greg Mann & Sunil Shah POWERING THE INTERNET WITH APACHE MESOS 1 MESOS: ORIGINS 2 THE BIRTH OF MESOS TWITTER TECH TALK APACHE INCUBATION The grad students working on Mesos

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

HPC over Cloud. July 16 th, SCENT HPC Summer GIST. SCENT (Super Computing CENTer) GIST (Gwangju Institute of Science & Technology)

HPC over Cloud. July 16 th, SCENT HPC Summer GIST. SCENT (Super Computing CENTer) GIST (Gwangju Institute of Science & Technology) HPC over Cloud July 16 th, 2014 2014 HPC Summer School @ GIST (Super Computing CENTer) GIST (Gwangju Institute of Science & Technology) Dr. JongWon Kim jongwon@nm.gist.ac.kr Interplay between Theory, Simulation,

More information

Amazon EC2 Container Service: Manage Docker-Enabled Apps in EC2

Amazon EC2 Container Service: Manage Docker-Enabled Apps in EC2 Amazon EC2 Container Service: Manage Docker-Enabled Apps in EC2 Ian Massingham AWS Technical Evangelist @IanMmmm 2015, Amazon Web Services, Inc. or its affiliates. All rights reserved Agenda Containers

More information