Containers and

Size: px
Start display at page:

Download "Containers and"

Transcription

1 Containers and 09 Mars 2017 Christophe Danjou & Thibaud Lenik C

2 1. What are Containers? 2. Why Containers and Docker? Agenda 3. Using Docker with NetApp NetApp, Inc. All rights reserved. NetApp Highly Confidential Information. Unreleased product plans may change, not for distribution. C

3 What are Containers? NetApp, Inc. All rights reserved. NetApp Highly Confidential Information. Unreleased product plans may change, not for distribution. C

4 Just a Hype? The Story with the Popcorn NetApp, Inc. All rights reserved. NetApp Highly Confidential Information. Unreleased product plans may change, not for distribution. C

5 Just a Hype? The Story with the Popcorn NetApp, Inc. All rights reserved. NetApp Highly Confidential Information. Unreleased product plans may change, not for distribution.

6 Just a Hype? Some facts! NetApp, Inc. All rights reserved. NetApp Highly Confidential Information. Unreleased product plans may change, not for distribution. C

7 History of Containers Old technology made new 2000 FreeBSD Jails 2001 Linux VServer 2004 Solaris Zone 2008 Linux LXC 2014 Docker NetApp, Inc. All rights reserved. NetApp Highly Confidential Information. Unreleased product plans may change, not for distribution. C

8 Containers before Docker... Only for hardcore developers NetApp, Inc. All rights reserved. NetApp Highly Confidential Information. Unreleased product plans may change, not for distribution. C

9 What Is Docker? Implementing the Microservices Architecture Docker is an open platform for developers and sysadmins to build, ship, and run distributed applications Docker enables applications to be quickly assembled from components and eliminates friction between dev, test, QA, and production Do one thing, do it well Ship faster, run anywhere Build Ship Run NetApp, Inc. All rights reserved. NetApp Highly Confidential Information. Unreleased product plans may change, not for distribution. C

10 Containers are not Virtual Machines Containers versus virtual machines NetApp, Inc. All rights reserved. NetApp Highly Confidential Information. Unreleased product plans may change, not for distribution. C

11 Container Components Image Storage Networking Volumes The container image holds the application code and binaries, supporting libraries, and other components needed to execute the application Stored in a repository Hosted publicly Docker Hub, Quay.io, and so on Hosted privately Docker Trusted Repository, Artifactory, and so on Layers are shared (Copy-on-Write) NetApp, Inc. All rights reserved. NetApp Highly Confidential Information. Unreleased product plans may change, not for distribution. C

12 Docker Hub hub.docker.com Free for public images NetApp, Inc. All rights reserved. NetApp Highly Confidential Information. Unreleased product plans may change, not for distribution. C

13 Container and Layers Docker image structure NetApp, Inc. All rights reserved. NetApp Highly Confidential Information. Unreleased product plans may change, not for distribution. C

14 Container Components Image Storage Networking Volumes Union File System Used for container images Each modification is a layer on top of the previous set of modifications Only the top layer is writable Stored in /var/lib/docker of host system by default Can use btrfs, devicemapper, OverlayFS, ZFS, and/or AUFS depending on host OS NetApp, Inc. All rights reserved. NetApp Highly Confidential Information. Unreleased product plans may change, not for distribution. C

15 Container Components Image Storage Networking Volumes Each container is mapped to a private, host-only, adapter The container ports can be mapped to the host to provide external connectivity Containers on the same host can communicate, containers on different hosts must have ports mapped NetApp, Inc. All rights reserved. NetApp Highly Confidential Information. Unreleased product plans may change, not for distribution. C

16 Container Components Image Storage Networking Volumes Data volumes are attached to the container at the specified mount point Initialized when the container is created Shareable and reusable Persistent Default location of /var/lib/docker Host directories and files can be mounted as volumes NetApp, Inc. All rights reserved. NetApp Highly Confidential Information. Unreleased product plans may change, not for distribution. C

17 Why Containers and Docker? NetApp, Inc. All rights reserved. NetApp Highly Confidential Information. Unreleased product plans may change, not for distribution. T

18 Applications Are Hard Monolithic applications Hard to update - single massive code base Single dimension of scalability Waterfall development practices Static, linear phases Requirements Analysis Design Code Test Deploy Apache WAR UI Service Image Service Search Service Tomcat Database NetApp, Inc. All rights reserved. NetApp Highly Confidential Information. Unreleased product plans may change, not for distribution. T

19 Simplify the Problem Microservices Each component is independently developed and scaled Everything is a platform DevOps Continuous Integration Finding and fixing bugs faster Continuous Deployment Releasing faster Load Balancer Tier App Tier UI Service Database Tier Image Service Search Service NetApp, Inc. All rights reserved. NetApp Highly Confidential Information. Unreleased product plans may change, not for distribution. T

20 Containers Benefit the Business Benefits of well designed containerized applications Higher infrastructure utilization for app processing Containers use less CPU, memory, and storage than VMs Reduce Hypervisor and GuestOS overhead (and licenses) No boot, only process instantiation seconds vs minutes Faster deployments of apps and their updates App development lifecycle is simplified because Dev = Stage = Prod environment Reduces set-up, testing, and documentation time and costs No Hypervisor, No Guest OS Developers are proving Time-to-Market efficiencies over monolithic or traditional virtualization architectures NetApp, Inc. All rights reserved. NetApp Highly Confidential Information. Unreleased product plans may change, not for distribution. T

21 DevOps Workflow Traditional development / deployments vs Containers Without Container With Container Developer Operator Developer Operator Request resources Provide resources Create Image Scripting deployment Adjust deployment Adjust deployment Repository Provide resources Dependences Install dependences App roll out App roll out NetApp, Inc. All rights reserved. NetApp Highly Confidential Information. Unreleased product plans may change, not for distribution. T

22 Real use cases Google s Gmail services and more Google use containers since Billions Container every week Spotify use Containers to serve 60 Millions customers use Containers for the whole services NetApp, Inc. All rights reserved. NetApp Highly Confidential Information. Unreleased product plans may change, not for distribution. T

23 Where runs the Docker Engine? Available Platforms Various Linux distributions RedHat / CentOS Ubuntu SUSE VMware Photon OS CoreOS... and many more Cloud Providers Amazon EC2 Container Service Microsoft Azure Google Container Engine Rackspace... and many many more Microsoft Windows NetApp, Inc. All rights reserved. NetApp Highly Confidential Information. Unreleased product plans may change, not for distribution. T

24 Containers in production Challenges Networking HA Monitoring Security Storage and more NetApp, Inc. All rights reserved. NetApp Highly Confidential Information. Unreleased product plans may change, not for distribution. T

25 Using Containers with NetApp NetApp, Inc. All rights reserved. NetApp Highly Confidential Information. Unreleased product plans may change, not for distribution. C

26 2016 NetApp, Inc. All rights reserved. NetApp Highly Confidential Information. Unreleased product plans may change, not for distribution. C

27 Data doesn t really change with containers Structured Data Unstructured Data 2016 NetApp, Inc. All rights reserved. NetApp Highly Confidential Information. Unreleased product plans may change, not for distribution. C

28 ...there are still many ways of storing it... SQL Object Stores NoSQL Filesystems 2016 NetApp, Inc. All rights reserved. NetApp Highly Confidential Information. Unreleased product plans may change, not for distribution. C

29 The Early Days Running Container Docker Engine App Container Data Container App Container NFS Mount NFS Server Data Containers NFS Mounts & directory mapping 2016 NetApp, Inc. All rights reserved. NetApp Highly Confidential Information. Unreleased product plans may change, not for distribution. C

30 Docker Volumes on Local Storage docker volume create --name V1 docker run --name C1 -v V1:/foobar alpine ash docker run --name C2 -v V1:/foobar alpine ash Pros Works out of the box Reusable C1 and C2 could share data now Cons Not resilient to failure Data is stuck on host C1 C2 C3 V1 C4 C5 Open Questions What happens if my host fails? Backup? How can C5 access V1? 2016 NetApp, Inc. All rights reserved. NetApp Highly Confidential Information. Unreleased product plans may change, not for distribution. C

31 Docker Data Volumes Since Docker 1.8 Data lives outside of a running container Directly on Docker Host or externally Open API for integration 2016 NetApp, Inc. All rights reserved. NetApp Highly Confidential Information. Unreleased product plans may change, not for distribution. C

32 The NetApp Docker Volume Plugin (ndvp) Drivers for all NetApp primary storage platforms ONTAP SolidFire E-Series Open source! Easy to use docker volume integration More information: NetApp, Inc. All rights reserved. NetApp Highly Confidential Information. Unreleased product plans may change, not for distribution. C

33 NetApp Docker Volume Plugin Developers can directly provision persistent storage for containers from CLI on ONTAP, E/EF-Series or SolidFire system docker volume create -d netapp --name new_vol docker run -it -v new_vol:/mnt/new_vol alpine ash docker volume create -d solidfire -o type=gold -o size= NetApp, Inc. All rights reserved. NetApp Highly Confidential Information. Unreleased product plans may change, not for distribution. C

34 Docker Client 1. Client calls docker volume create -d netapp --name new_vol and docker run xyz Running Container C1 2. Client starts new container and references the volume Server + Docker Engine Mount inside container 3. Volume is mounted into Container Storage 2016 NetApp, Inc. All rights reserved. NetApp Highly Confidential Information. Unreleased product plans may change, not for distribution. C

35 Persisting Container Data with Flocker Download from: NetApp, Inc. All rights reserved. NetApp Highly Confidential Information. Unreleased product plans may change, not for distribution. C

36 NetApp s Focus Abstraction Layer Compute with Container Engine Workload Mobility through Containers Storage Data Mobility powered by NetApp Data Fabric On Premise Data Center(s) Public Cloud(s) 2016 NetApp, Inc. All rights reserved. NetApp Highly Confidential Information. Unreleased product plans may change, not for distribution.

37 Summary Data Volumes are the proposed solution from Docker Easiest way to persist information for stateful applications Integration into Orchestration Frameworks is growing...but too many people are doing duplicate work! 2016 NetApp, Inc. All rights reserved. NetApp Highly Confidential Information. Unreleased product plans may change, not for distribution. C

38 Resources NetApp, Inc. All rights reserved. NetApp Highly Confidential Information. Unreleased product plans may change, not for distribution. C

39 netapp.github.io Code GitHub Container Integration OpenStack integration Tech Blog Posts Resources Conference Talks Partner Solutions (e.g., RedHat, Mirantis) 2016 NetApp, Inc. All rights reserved. NetApp Highly Confidential Information. Unreleased product plans may change, not for distribution. C

40 Further Reading Using Docker Volumes with Docker Compose Volume Options for NetApp Docker Volume Plugin Using Kubernetes with persistent iscsi storage Using Kubernetes with persistent NFS storage NetApp, Inc. All rights reserved. NetApp Highly Confidential Information. Unreleased product plans may change, not for distribution. C

41 Thank you! 2016 NetApp, Inc. All rights reserved. NetApp Highly Confidential Information. Unreleased product plans may change, not for distribution.

FUJITSU Software UForge AppCenter 3.8

FUJITSU Software UForge AppCenter 3.8 FUJITSU Software UForge AppCenter 3.8 Introduction Fujitsu Limited February 2018 0 Hybrid IT Challenges 1 Hybrid IT Challenges % Networking Single Pane of Glass for Monitoring and Management Application

More information

Understanding The Value of Containers in a World of DevOps. Advice that empowers. Technology that enables.

Understanding The Value of Containers in a World of DevOps. Advice that empowers. Technology that enables. Understanding The Value of Containers in a World of DevOps Advice that empowers. Technology that enables. Bradley Brodkin - Some Background Founder & CEO of HighVail Systems, Toronto CANADA 31+ year industry

More information

UForge AppCenter 3.8. Introduction March Copyright 2018 FUJITSU LIMITED

UForge AppCenter 3.8. Introduction March Copyright 2018 FUJITSU LIMITED UForge AppCenter 3.8 Introduction March 2018 Copyright 2018 FUJITSU LIMITED Enterprise Cloud Application Journey 3 stages in transitioning legacy enterprise applications to cloud: Cloud-hosted applications:

More information

"Web Age Speaks!" Webinar Series. Introduction to DevOps

Web Age Speaks! Webinar Series. Introduction to DevOps "Web Age Speaks!" Webinar Series Introduction to DevOps Introduction Mikhail Vladimirov Director, Curriculum Architecture mikhail.vladimirov@webagesolutions.com Web Age Solutions Providing a broad spectrum

More information

Bitnami Stacksmith. What is Stacksmith?

Bitnami Stacksmith. What is Stacksmith? Stacksmith Modernize your DevOps pipeline. Automate application packaging for today's cloud and container platforms, and continuously maintain them so they remain up-to-date and secure. What is Stacksmith?

More information

How CloudEndure Works

How CloudEndure Works The Technology Behind s Disaster Recovery and Migration Solutions Introduction Organizations can thereby achieve sub-second Recovery Point Objectives (RPOs). offers Disaster Recovery and Migration Software-as-a-Service

More information

IBM Cloud Private. Presenters: Tim John Panelists: Tim Pouyer, Ajay Apte, Olaph Wagoner, Jason Kennedy

IBM Cloud Private. Presenters: Tim John Panelists: Tim Pouyer, Ajay Apte, Olaph Wagoner, Jason Kennedy IBM Cloud Private Presenters: Tim Robinson: @timroexp, John Zaccone: @JohnZaccone Panelists: Tim Pouyer, Ajay Apte, Olaph Wagoner, Jason Kennedy Outline What is IBM Cloud Private Tour of IBM Cloud Private

More information

JOURNEY TO AS A SERVICE

JOURNEY TO AS A SERVICE JOURNEY TO AS A SERVICE CONTAINERIZATION JULY 2017 THE DIGITAL ERA EVOLVED IT TO BUSINESS STRATEGY Siloed, legacy, de-centralized, multi vendor setup. IT product focused. AO Operations IO Operations Wall

More information

Datasheet FUJITSU Software UForge AppCenter 3.8

Datasheet FUJITSU Software UForge AppCenter 3.8 Datasheet FUJITSU Software UForge AppCenter 3.8 Hybrid IT Application Delivery and Migration Hybrid IT Application Delivery Hybrid IT adoption continues to grow at a rapid pace. Enterprises are looking

More information

Customer Challenges SOLUTION BENEFITS

Customer Challenges SOLUTION BENEFITS SOLUTION BRIEF Matilda Cloud Solutions simplify migration of your applications to a public or private cloud, then monitor and control the environment for ongoing IT operations. Our solution empowers businesses

More information

Deep Learning Acceleration with

Deep Learning Acceleration with Deep Learning Acceleration with powered by A Technical White Paper TABLE OF CONTENTS The Promise of AI The Challenges of the AI Lifecycle and Infrastructure MATRIX Powered by Bitfusion Flex Solution Architecture

More information

Azure Stack. Unified Application Management on Azure and Beyond

Azure Stack. Unified Application Management on Azure and Beyond Azure Stack Unified Application Management on Azure and Beyond Table of Contents Introduction...3 Deployment Models...4 Dedicated On-Premise Cloud... 4 Shared Application Hosting... 4 Extended Hosting

More information

Microsoft FastTrack For Azure Service Level Description

Microsoft FastTrack For Azure Service Level Description ef Microsoft FastTrack For Azure Service Level Description 2017 Microsoft. All rights reserved. 1 Contents Microsoft FastTrack for Azure... 3 Eligible Solutions... 3 FastTrack for Azure Process Overview...

More information

MQ on Cloud (AWS) Suganya Rane Digital Automation, Integration & Cloud Solutions. MQ Technical Conference v

MQ on Cloud (AWS) Suganya Rane Digital Automation, Integration & Cloud Solutions. MQ Technical Conference v MQ on Cloud (AWS) Suganya Rane Digital Automation, Integration & Cloud Solutions Agenda CLOUD Providers Types of CLOUD Environments Cloud Deployments MQ on CLOUD MQ on AWS MQ Monitoring on Cloud What is

More information

GUIDE The Enterprise Buyer s Guide to Public Cloud Computing

GUIDE The Enterprise Buyer s Guide to Public Cloud Computing GUIDE The Enterprise Buyer s Guide to Public Cloud Computing cloudcheckr.com Enterprise Buyer s Guide 1 When assessing enterprise compute options on Amazon and Azure, it pays dividends to research the

More information

DEVOPS AUTOMATION USING DOCKER, KUBERNETES AND OPENSHIFT. Siamak Sadeghianfar Sr Technical Marketing Manager, OpenShift June 2016

DEVOPS AUTOMATION USING DOCKER, KUBERNETES AND OPENSHIFT. Siamak Sadeghianfar Sr Technical Marketing Manager, OpenShift June 2016 DEVOPS AUTOMATION USING DOCKER, KUBERNETES AND Siamak Sadeghianfar Sr Technical Marketing Manager, OpenShift June 2016 DEFINE DEVOPS Everything as code Application monitoring Automate everything Rapid

More information

Virtualizing Big Data/Hadoop Workloads. Update for vsphere 6. Justin Murray VMware VMware Inc. All rights reserved.

Virtualizing Big Data/Hadoop Workloads. Update for vsphere 6. Justin Murray VMware VMware Inc. All rights reserved. Virtualizing Big Data/Hadoop Workloads Update for vsphere 6 Justin Murray VMware 2014 VMware Inc. All rights reserved. Agenda The Hadoop Customer Journey Why Virtualize Hadoop? vsphere Big Data Extensions

More information

Just Enough Operating System to kick start creativity. Simona Arsene

Just Enough Operating System to kick start creativity. Simona Arsene Just Enough Operating System to kick start creativity Simona Arsene SUSE Linux Enterprise Server JeOS speeds up virtual image deployment Just enough Operating System No need to re-certify Same SUSE Linux

More information

OPENSHIFT CONTAINER PLATFORM

OPENSHIFT CONTAINER PLATFORM OPENSHIFT CONTAINER PLATFORM FUNDAMENTAL OVERVIEW Mike Surbey Emerging Technology Specialist http://msurbey.com AGENDA 2 1. INTRODUCTION Today s Business Challenge 2. KEY CONCEPTS s, DevOps, etc. 3. HOLISTIC

More information

DevOps Solution for today and tomorrow!

DevOps Solution for today and tomorrow! DevOps Solution for today and tomorrow! Capability Review Meeting November 17th 2014 Agenda Meeting Kick off and Team Introductions (5 min) DevOps Introduction (10 min) Industry Challenge Need Solution

More information

Multi-Containers Orchestration with Live Migration and High-Availability for Microservices

Multi-Containers Orchestration with Live Migration and High-Availability for Microservices Multi-Containers Orchestration with Live Migration and High-Availability for Microservices Meet Our Presenters Jay Lyman Research Manager, Cloud Platforms, 451 Research Ruslan Synytsky CEO and Co-founder,

More information

Deploying Microservices and Containers with Azure Container Service and DC/OS

Deploying Microservices and Containers with Azure Container Service and DC/OS Deploying Microservices and Containers with Azure Container Service and DC/OS Intro The explosion of mobile devices, data, and sensors everywhere has enabled the potential for realtime apps for just about

More information

How to create an Azure subscription

How to create an Azure subscription How to create an Azure subscription Azure is a cloud hosting service offered by Microsoft, and offers services like file storage, backups, database and Windows and Linux virtual machines. Anyone can harness

More information

IBM Cloud White Paper. How to get the benefits of cloud behind your firewall: IBM Cloud Private

IBM Cloud White Paper. How to get the benefits of cloud behind your firewall: IBM Cloud Private IBM Cloud White Paper How to get the benefits of cloud behind your firewall: IBM Cloud Private 2 How to get the benefits of cloud behind your firewall: IBM Cloud Private Contents 2 Introduction 3 Developers

More information

7 reasons why your business should invest in container technology

7 reasons why your business should invest in container technology WHITE PAPER 7 reasons why your business should invest in container technology What are containers? Why are they changing the development landscape? And why does your business need to get on board? Gartner

More information

Building Microsoft Cloud Solutions: A DevOps Perspective

Building Microsoft Cloud Solutions: A DevOps Perspective Building Microsoft Cloud Solutions: A DevOps Perspective Stijn Callebaut itnetx Kurt Van Hoecke itnetx It is not the strongest of the species that survives, nor the most intelligent, but the one most responsive

More information

"Charting the Course... MOC A: Architecting Microsoft Azure Solutions. Course Summary

Charting the Course... MOC A: Architecting Microsoft Azure Solutions. Course Summary MOC 20535 A: Architecting Microsoft Course Summary Description This course is intended for architects who have experience building infrastructure and applications on the Microsoft platform. Students should

More information

Architecting Microsoft Azure Solutions

Architecting Microsoft Azure Solutions Architecting Microsoft Azure Solutions 20535A; 5 Days; Instructor-led Course Description This course is intended for architects who have experience building infrastructure and applications on the Microsoft

More information

OpenShift Dedicated: An Inmarsat Story

OpenShift Dedicated: An Inmarsat Story INMARSAT OpenShift Dedicated: An Inmarsat Story Kevin Crocker Integration and Interoperability Centre of Excellence Copyright Inmarsat Global Limited 2017 OpenShift Dedicated: An Inmarsat Story Outline

More information

HyperCloud. IT s Cloud Dilemma

HyperCloud. IT s Cloud Dilemma HyperCloud DATASHEET Consume IT, Don t Build IT. In today s shared economy companies drive a competitive edge by focusing on their core competencies and leveraging technology to innovate and create new

More information

Containers have taken the development community by storm, and capital markets have taken notice

Containers have taken the development community by storm, and capital markets have taken notice & Capital Markets Containers have taken the development community by storm, and capital markets have taken notice Venture Capitalists have poured funding into container startups. Industry pioneers and

More information

Deep Dive. Into MS Operations Management Suite. Pete

Deep Dive. Into MS Operations Management Suite. Pete Deep Dive Into MS Operations Management Suite Pete Zerger @pzerger pete.zerger@cireson.com Cameron Fuller @CFullerMVP cameron.fuller@catapultsystems.com Pete Zerger Spring, TX (near Houston) @pzerger Principal

More information

Hybrid Cloud Adoption: Transforming to Hybrid Cloud with DevOps, Microservices, Containers and APIs

Hybrid Cloud Adoption: Transforming to Hybrid Cloud with DevOps, Microservices, Containers and APIs Hybrid Cloud Adoption: Transforming to Hybrid Cloud with DevOps, Microservices, Containers and APIs Sanjeev Sharma CTO, DevOps Technical Sales and Adoption IBM Distinguished Engineer, IBM Cloud sanjeev.sharma@us.ibm.com

More information

Migrating to Cloud - Native Architectures Using Microservices: An Experience Report

Migrating to Cloud - Native Architectures Using Microservices: An Experience Report Migrating to Cloud - Native Architectures Using Microservices: An Experience Report Armin Balalaie, Abbas Heydarnoori, and Pooyan Jamshidi Sharif University of Technology, Tehran, Iran - 2015 Sonam Gupta

More information

Course 20535A: Architecting Microsoft Azure Solutions

Course 20535A: Architecting Microsoft Azure Solutions Course 20535A: Architecting Microsoft Azure Solutions Module 1: Application Architecture Patterns in Azure This module introduces and reviews common Azure patterns and architectures as prescribed by the

More information

Red Hat Open Shift Container Platform

Red Hat Open Shift Container Platform Red Hat Open Shift Container Platform Daniel.Froehlich@RedHat.com IT Must Evolve to Stay Ahead of Demands Containers package applications with dependencies and isolate the runtime Easy to deploy and portable

More information

Architecting Microsoft Azure Solutions

Architecting Microsoft Azure Solutions Course 20535: Architecting Microsoft Azure Solutions Page 1 of 8 Architecting Microsoft Azure Solutions Course 20535: 4 days; Instructor-Led Introduction This course is intended for architects who have

More information

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved. 1 Copyright 2011, Oracle and/or its affiliates. All rights ORACLE PRODUCT LOGO Virtualization and Cloud Deployments of Oracle E-Business Suite Ivo Dujmović, Director, Applications Development 2 Copyright

More information

Kubernetes for the enterprise

Kubernetes for the enterprise Kubernetes for the enterprise Kubernetes is an open-source infrastructure for automating deployment, scaling, and management of containerized applications. Originally built by Google, it is currently maintained

More information

Architecting Microsoft Azure Solutions

Architecting Microsoft Azure Solutions Microsoft Official Course - 20535 Architecting Microsoft Azure Solutions Length 5 days Prerequisites Create resources and resource group in Azure. Manage users, groups, and subscriptions in an Azure Active

More information

Understanding the Business Value of Docker Enterprise Edition

Understanding the Business Value of Docker Enterprise Edition Understanding the Business Value of Docker Enterprise Edition JUNE 2017 www.docker.com/enterprise Table of Contents The Digital Transformation... 3 What the Digital Transformation Means... 3 We Still Need

More information

MELBOURNE March DEVOPS TALKS CONFERENCE

MELBOURNE March DEVOPS TALKS CONFERENCE MELBOURNE March 22-23 DEVOPS TALKS CONFERENCE 2018 Matt Ray @mattray Whales, Cats and Kubernetes Matt Ray Manager/Solutions Architect APJ Chef Software matt@chef.io @mattray Software Defined Talk Shifts

More information

Deep Learning Acceleration with MATRIX: A Technical White Paper

Deep Learning Acceleration with MATRIX: A Technical White Paper The Promise of AI The Challenges of the AI Lifecycle and Infrastructure MATRIX Solution Architecture Bitfusion Core Container Management Smart Resourcing Data Volumes Multitenancy Interactive Workspaces

More information

Adopting Azure Resource Manager for efficient cloud infrastructure management

Adopting Azure Resource Manager for efficient cloud infrastructure management Microsoft IT Showcase Adopting Azure Resource Manager for efficient cloud infrastructure management Microsoft IT runs in the cloud. We have a massive investment in Microsoft Azure for our cloud IT infrastructure,

More information

Implementing Microsoft Azure Infrastructure Solutions

Implementing Microsoft Azure Infrastructure Solutions Implementing Microsoft Azure Infrastructure Solutions Course # Exam: Prerequisites Technology: Delivery Method: Length: 20533 70-533 20532 Microsoft Products Instructor-led (classroom) 5 Days Overview

More information

SurPaaS Analyzer. Cut your application assessment. Visualize Your Cloud Options. Time by a factor of 10x and Cost by 75% Unique Features

SurPaaS Analyzer. Cut your application assessment. Visualize Your Cloud Options. Time by a factor of 10x and Cost by 75% Unique Features SurPaaS Analyzer Visualize Your Cloud Options DATASHEET Cut your application assessment Time by a factor of 10x and Cost by 75% SurPaaS Analyzer is a Cloud smart decision-enabling tool that analyzes your

More information

Containers in Linux on z Systems: Docker. Utz Bacher STSM Linux and Containers on z Systems

Containers in Linux on z Systems: Docker. Utz Bacher STSM Linux and Containers on z Systems Containers in Linux on z Systems: Docker Utz Bacher STSM Linux and Containers on z Systems A Message Brought To You By Our Lawyers Trademarks of International Business Machines

More information

Chapter 3: Automated self-service and catalogue service. Topics covered: 3.1 Datacenter architecture. 3.2 Iaas and its rental cost

Chapter 3: Automated self-service and catalogue service. Topics covered: 3.1 Datacenter architecture. 3.2 Iaas and its rental cost 1 Chapter 3: Automated self-service and catalogue service Topics covered: 3.1 Datacenter architecture 3.2 Iaas and its rental cost 3.3 Cloud web access architecture 3.4 Service catalogue 3.5 Change instances

More information

Business is being transformed by three trends

Business is being transformed by three trends Business is being transformed by three trends Big Cloud Intelligence Stay ahead of the curve with Cortana Intelligence Suite Business apps People Custom apps Apps Sensors and devices Cortana Intelligence

More information

Datasheet FUJITSU Software UForge AppCenter 3.7

Datasheet FUJITSU Software UForge AppCenter 3.7 Datasheet FUJITSU Software UForge AppCenter 3.7 Hybrid IT Application Delivery and Migration Hybrid IT Application Delivery Hybrid IT adoption continues to grow at a rapid pace. Enterprises are looking

More information

Parallels Virtuozzo Containers

Parallels Virtuozzo Containers Parallels Virtuozzo White Paper Total Cost of Ownership Analysis: Parallels Virtuozzo VS Traditional Hypervisor Virtualization www.parallels.com The ROI of just the hardware and software components, without

More information

World Leading Storage Cloud at ETH Zürich

World Leading Storage Cloud at ETH Zürich Felix Sutter Dr. Tilo Steiger IT Architect, IBM Switzerland Ltd Head of Storage Services, ETH Zürich Informatikdienste World Leading Storage Cloud at ETH Zürich Agenda The challenges From IT Silos to Cloud

More information

Flink meet DC/OS. Deploying Apache Flink at Scale. Elizabeth K. Ravi FlinkForward San Francisco

Flink meet DC/OS. Deploying Apache Flink at Scale. Elizabeth K. Ravi FlinkForward San Francisco FlinkForward 2017 - San Francisco Flink meet DC/OS Deploying Apache Flink at Scale Elizabeth K. Joseph, @pleia2 Ravi Yadav, @RaaveYadav 1 Talk Outline Part 1 Part 2 Introduction to Apache Mesos, Marathon,

More information

Implementing Microsoft Azure Infrastructure Solutions 20533B; 5 Days, Instructor-led

Implementing Microsoft Azure Infrastructure Solutions 20533B; 5 Days, Instructor-led Lincoln Land Community College Capital City Training Center 130 West Mason Springfield, IL 62702 217-782-7436 www.llcc.edu/cctc Implementing Microsoft Azure Infrastructure Solutions 20533B; 5 Days, Instructor-led

More information

Puppet Enterprise. The shortest path to better software. Greg Larkin Professional Services

Puppet Enterprise. The shortest path to better software. Greg Larkin Professional Services Puppet Enterprise. Greg Larkin Professional Services greg.larkin@puppet.com Shout-outs Bill Kendrick Linux Users Group of Davis #puppetize Let s do a poll Who is new to Puppet? How many developers are

More information

Architecting Microsoft Azure Solutions

Architecting Microsoft Azure Solutions Architecting Microsoft Azure Solutions Microsoft 70-535 Dumps Available Here at: /microsoft-exam/70-535-dumps.html Enrolling now you will get access to 41 questions in a unique set of 70-535 dumps Question

More information

The Fast (Developer) and the Furious (Ops Team)

The Fast (Developer) and the Furious (Ops Team) The Fast (Developer) and the Furious (Ops Team) Martin Percival Solutions Architect, Red Hat @martinpercival An INNOVATION problem? A THROUGHPUT problem? A QUALITY problem? We need to deliver more apps,

More information

Enterprise Development Trends Cloud, Container and Microservices Insights from 2,100 JVM Developers

Enterprise Development Trends Cloud, Container and Microservices Insights from 2,100 JVM Developers Enterprise Development Trends 2016 Cloud, Container and Microservices Insights from 2,100 JVM Developers 1 About This Report Lightbend surveyed 2,151 global Java Virtual Machine (JVM) developers to discover:

More information

MS Integrating On-Premises Core Infrastructure with Microsoft Azure

MS Integrating On-Premises Core Infrastructure with Microsoft Azure MS-10992 Integrating On-Premises Core Infrastructure with Microsoft Azure COURSE OVERVIEW: This three-day instructor-led course covers a range of components, including Azure Compute, Azure Storage, and

More information

Attaining True Agility Through Continuous Integration

Attaining True Agility Through Continuous Integration e-issn 2455 1392 Volume 2 Issue 6, June 2016 pp. 483 488 Scientific Journal Impact Factor : 3.468 http://www.ijcter.com Attaining True Agility Through Continuous Integration Aniket More 1, Vaishali Gatty

More information

http://azure123.rocks/ Agenda Why use the cloud to build apps? Virtual machines for lift-shift scenarios Microservices and Azure Service Fabric Data services in Azure DevOps solutions Compute Compute

More information

Comparing Infrastructure Management Vendors Time to Monitor

Comparing Infrastructure Management Vendors Time to Monitor Comparing Infrastructure Management Vendors Time to Monitor Comparison of CA Unified Infrastructure Management Version 8.5.1 (CA UIM v8.5.1), SolarWinds SAM, and Nagios XI Apprize360 Intelligence, LLC

More information

CloudShell Pro. Self-Service Sandbox Environments for Physical, Virtual, and Hybrid-Cloud D ATA SHEET. The Need for Cloud Sandboxing

CloudShell Pro. Self-Service Sandbox Environments for Physical, Virtual, and Hybrid-Cloud D ATA SHEET. The Need for Cloud Sandboxing CS-1 D ATA SHEET CloudShell Pro Self-Service Sandbox Environments for Physical, Virtual, and Hybrid-Cloud The Need for Cloud Sandboxing Enterprises today are facing intense pressure to become more agile

More information

Cloud Solutions for Enterprise Mobility

Cloud Solutions for Enterprise Mobility Cloud Solutions for Enterprise Mobility James Mernin Chief Technology Officer, Red Hat Mobile @mernin http://www.redhat.com/mobile Red Hat Summit, Boston, MA 2-4 May 2017 2 Agenda Mobile Context Cloud

More information

Fast Innovation requires Fast IT

Fast Innovation requires Fast IT Fast Innovation requires Fast IT Trends and Data Centre Innovation Sudheesh Subhash Principal Solutions Architect Agenda Application trends Current data centre trends IT Cloud integration Automation and

More information

ApiOmat. Case Study. Challenge

ApiOmat. Case Study. Challenge Case Study SUSE CaaS Platform SUSE Cloud Application Platform In today s digital world, we expect to be able to do everything on our smartphones. makes it quicker and easier for enterprises to develop

More information

IMPLEMENTING MICROSOFT AZURE INFRASTRUCTURE SOLUTIONS

IMPLEMENTING MICROSOFT AZURE INFRASTRUCTURE SOLUTIONS IMPLEMENTING MICROSOFT AZURE INFRASTRUCTURE SOLUTIONS Course Duration: 5 Days About this course This course is aimed at experienced IT professionals who currently administer their on-premise infrastructure.

More information

Your Enterprise Cloud-Native App Platform: An Introduction to Pivotal Cloud Foundry Richard August 31, 2017 #CNA3430BU CONFIDENTIAL

Your Enterprise Cloud-Native App Platform: An Introduction to Pivotal Cloud Foundry Richard August 31, 2017 #CNA3430BU CONFIDENTIAL CNA3430BU Your Enterprise Cloud- Native App Platform: An Introduction to Pivotal Cloud Foundry Richard Seroter @rseroter #VMworld #CNA3430BU Your Enterprise Cloud-Native App Platform: An Introduction to

More information

Beyond Virtualization. Derek Collison - Apcera, June 12, QCon New York

Beyond Virtualization. Derek Collison - Apcera, June 12, QCon New York Beyond Virtualization Derek Collison - Apcera, Inc.!!! June 12, 2014 - QCon New York About!! Derek Collison Architected and built TIBCO Rendezvous and EMS Messaging Systems! Co-founded AJAX APIs group

More information

Composite Cloud Applications and Portable Topologies

Composite Cloud Applications and Portable Topologies Composite Cloud Applications and Portable Topologies Vinothini Raju CEO @ Bluemeric Technologies @vinothiniraju Agenda 01 Composite Cloud / Modern Application Business 01 Drivers Continuous Delivery(CD)

More information

Enterprise cloud control plane planning

Enterprise cloud control plane planning Enterprise cloud control plane planning End-to-end pipelines for automating Microsoft Azure deployments By Tim Ehlen AzureCAT October 2018 Contents Overview... 3 Tracking the program step by step... 4

More information

DevOps, DevSecOps, and varmour

DevOps, DevSecOps, and varmour WHITE PAPTER DevOps, DevSecOps, and varmour DevOps and DevSecOps Supporting DevSecOps with New Tools varmour DSS Distributed Security System varmour in 4 Common DevOps Scenarios 1. Rolling out a New Application

More information

TECHNICAL WHITE PAPER. Rubrik and Microsoft Azure Technology Overview and How It Works

TECHNICAL WHITE PAPER. Rubrik and Microsoft Azure Technology Overview and How It Works TECHNICAL WHITE PAPER Rubrik and Microsoft Azure Technology Overview and How It Works TABLE OF CONTENTS THE UNSTOPPABLE RISE OF CLOUD SERVICES...3 CLOUD PARADIGM INTRODUCES DIFFERENT PRINCIPLES...3 WHAT

More information

Digital Transformation

Digital Transformation Empowering Digital Transformation with Mo Abdirashid Program Manager & System Architect abdir@us.ibm.com Twitter: @mabdira May 2017 2016 IBM Corporation Cloud is changing how workloads are built & delivered

More information

Conference Azure for Today and Tomorrow. Karen McGregor

Conference Azure for Today and Tomorrow. Karen McGregor Conference 2017 Azure for Today and Tomorrow Azure for Today and Tomorrow Karen McGregor What if you could Do more. Of what you wanted to do when you got into IT: Make new things work. Do less Of the tasks

More information

SaaS Under the hood. Craig Taylor (Director - Cloud Transition & Enablement) Daniel Sultana (Director - Cloud Services & Experience) 10 May 2018

SaaS Under the hood. Craig Taylor (Director - Cloud Transition & Enablement) Daniel Sultana (Director - Cloud Services & Experience) 10 May 2018 SaaS Under the hood Craig Taylor (Director - Cloud Transition & Enablement) Daniel Sultana (Director - Cloud Services & Experience) 10 May 2018 Commercial in confidence Agenda Why the TechnologyOne Cloud

More information

Architecting Microsoft Azure Solutions

Architecting Microsoft Azure Solutions Architecting Microsoft Azure Solutions Duración: 5 Días Código del Curso: M20534 Temario: This course is intended for architects who have experience building infrastructure and applications on the Microsoft

More information

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

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

More information

NetScaler Management and Analytics System (MAS)

NetScaler Management and Analytics System (MAS) Data Sheet NetScaler Management and Analytics System (MAS) NetScaler MAS provides centralized network management, analytics, automation, and orchestration to support applications deployed across hybrid

More information

SATELLITE 6 OVERVIEW AND ROADMAP. Michael Lessard Senior Solutions Architect michaellessard

SATELLITE 6 OVERVIEW AND ROADMAP. Michael Lessard Senior Solutions Architect michaellessard SATELLITE 6 OVERVIEW AND ROADMAP Michael Lessard Senior Solutions Architect mlessard@redhat.com michaellessard What is Satellite? 2 LIFECYCLE MANAGEMENT PHYSICAL 3 VIRTUAL PRIVATE CLOUD PUBLIC CLOUD EFFICIENT

More information

IBM Virtual Appliance for Oracle Database

IBM Virtual Appliance for Oracle Database IBM IOUG session September 2013 IBM Virtual Appliance for Oracle Database Chuck Calio ccalio@us.ibm.com Benefits from Cloud Computing Rethink IT. Rapidly deliver new services Integrate services across

More information

Software Transformation for Cloud Video Services

Software Transformation for Cloud Video Services Software Transformation for Cloud Video Services Randell Hand Agenda What are we trying to solve? How did we get here? Emergence of Container Technology for Video What does this mean for Apps? Case Study

More information

Cloud OS Customer-Ready Services

Cloud OS Customer-Ready Services Cloud OS Customer-Ready Services ON-PREMISES CONSISTENT 1PLATFORM MICROSOFT SERVICE PROVIDER Web Platform application Services (PaaS) Infrastructure Services (IaaS) Reliable messaging Virtual Networking

More information

Applicazioni Cloud native

Applicazioni Cloud native Applicazioni Cloud native Marco Dragoni IBM Cloud - Italy Roberto Pozzi IBM Cloud - Italy 2017 IBM Corporation 1 IBM Bluemix is our Integrated Cloud Platform Industry IoT Block Chain Health Financial Services

More information

Microsoft Azure Açık Kaynak Teknoloji Çözümleri

Microsoft Azure Açık Kaynak Teknoloji Çözümleri Microsoft Azure Açık Kaynak Teknoloji Çözümleri - Andrew Nusca, Fortune Our Approach to Open Source in the Cloud Enable Integrate Release Participate Enable Linux and Open Source technology to be first

More information

Services Catalogue. Cloud Solutions

Services Catalogue. Cloud Solutions Services Catalogue Cloud Solutions Cloud Solutions Public Cloud Office 365 Your complete Office in the cloud As a Microsoft Cloud Accelerate partner, CWL Systems has the skills and experience to help you

More information

Migrating deployment processes and Continuous Integration at SAP SE to a future-proof design using SLES12, Chef, GitHub, OBS and KIWI

Migrating deployment processes and Continuous Integration at SAP SE to a future-proof design using SLES12, Chef, GitHub, OBS and KIWI Migrating deployment processes and Continuous Integration at SAP SE to a future-proof design using SLES12, Chef, GitHub, OBS and KIWI Eike Waldt Linux Consultant & Trainer B1 Systems GmbH waldt@b1-systems.de

More information

What s New. Bernd Wiswedel KNIME KNIME AG. All Rights Reserved.

What s New. Bernd Wiswedel KNIME KNIME AG. All Rights Reserved. What s New Bernd Wiswedel KNIME 2018 KNIME AG. All Rights Reserved. What this session is about Presenting (and demo ing) enhancements added in the last year By the team Questions? See us at the booth.

More information

Openet: NFV - Moving It To The Field

Openet: NFV - Moving It To The Field Openet: NFV - Moving It To The Field Corporate Overview Delivering Real-time BSS that drives innovation Enable real-time monetization of network activity Virtualization ready technology Deliver functionality

More information

FOUR PRINCIPLES OF DEVOPS FOR CONTINUOUS CLOUD COST CONTROL

FOUR PRINCIPLES OF DEVOPS FOR CONTINUOUS CLOUD COST CONTROL FOUR PRINCIPLES OF DEVOPS FOR CONTINUOUS CLOUD COST CONTROL Understanding the link between DevOps processes and cloud waste is key to optimizing cloud resources and cost management. 1 EXECUTIVE SUMMARY

More information

Hybrid Cloud. Private and public clouds under a single service

Hybrid Cloud. Private and public clouds under a single service Hybrid Cloud Private and public clouds under a single service Combine the bespoke, costeffective nature of our private cloud with the latest technology and scalability of the public Azure platform and

More information

AVANTUS TRAINING PTE LTD

AVANTUS TRAINING PTE LTD [MS10979]: Microsoft Azure Fundamentals Length : 2 Days Audience(s) : IT Professionals Level : 100 Technology : Azure Delivery Method : Instructor-led (Classroom) Course Overview This course provides the

More information

IBM Spectrum Scale. Advanced storage management of unstructured data for cloud, big data, analytics, objects and more. Highlights

IBM Spectrum Scale. Advanced storage management of unstructured data for cloud, big data, analytics, objects and more. Highlights IBM Spectrum Scale Advanced storage management of unstructured data for cloud, big data, analytics, objects and more Highlights Consolidate storage across traditional file and new-era workloads for object,

More information

Kubernetes User Experiences

Kubernetes User Experiences Kubernetes User Experiences * 1. What is the status of container usage at your enterprise or organization? Not using containers. May or may not have plans to use them Using containers but not in production

More information

Innovating Availability Strategies for the Hybrid Cloud

Innovating Availability Strategies for the Hybrid Cloud Innovating Availability Strategies for the Hybrid Cloud กลย ทธ เพ มข ดความสามารถความพร อมให บร การสาหร บระบบไฮบร ดคลาวด Kiatchumpol Suttisirikul System Engineer kiatchumpol.suttisirikul@veeam.com Availability

More information

Microservices-based Business Process Model Automation. Agnes Koschmider

Microservices-based Business Process Model Automation. Agnes Koschmider Microservices-based Business Process Model Automation Agnes Koschmider Overview What are Microservices? Microservices vs. Monolith Microservices vs. SOA Microservices Framework + BPM Challenges of Microservices-BP

More information

DevOps: Driving Organizational Change and Agility with PaaS

DevOps: Driving Organizational Change and Agility with PaaS DevOps: Driving Organizational Change and Agility with PaaS Government and PaaS: What s the Holdup?...2 PaaS: Open for Business...3 How Agencies Can Benefit from the Maturing PaaS Model...5 Infographic...7

More information

MS-20533: Implementing Microsoft Azure Infrastructure Solutions

MS-20533: Implementing Microsoft Azure Infrastructure Solutions MS-20533: Implementing Microsoft Azure Infrastructure Solutions Description This course is aimed at experienced IT Professionals who currently administer their on-premise infrastructure. The course introduces

More information

CONTAINERS: DON'T SKEU THEM UP

CONTAINERS: DON'T SKEU THEM UP CONTAINERS: DON'T SKEU THEM UP USE MICROSERVICES INSTEAD Gordon Haff, Technology Evangelist, @ghaff, ghaff@redhat.com William Henry, DevOps Strategy Lead, @ipbabble, whenry@redhat.com 14 July 2016 CONTAINERS

More information

Expert Reference Series of White Papers. Microsoft Service Manager Simplified

Expert Reference Series of White Papers. Microsoft Service Manager Simplified Expert Reference Series of White Papers Microsoft Service Manager Simplified 1-800-COURSES www.globalknowledge.com Microsoft Service Manager Simplified Randy Muller, MCT, MCT Regional Lead, MCSE, CEH Introduction

More information