Software Transformation for Cloud Video Services

Size: px
Start display at page:

Download "Software Transformation for Cloud Video Services"

Transcription

1

2 Software Transformation for Cloud Video Services Randell Hand

3 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 Where are we going? Wrap up

4 What are we trying to solve?

5 What is Infrastructure Transformation for Video? Unified platform COTS Segment Routing Cloud Orchestration Abstraction Service Awareness Software-defined (networks, workflows, apps) Can you spot the hole? 5

6 When HBO Go crashes during the season premiere of Game of Thrones, it s not because the internet can t handle all the traffic, it s because the software solution can t handle sudden spikes in traffic. Alan Wolk Industry Analyst 6

7 Focus for Today Many steps to fix. Collapse infrastructure Introduce Cloud strategy Abstract workflows Public and private clouds Deploy and operate tooling Software App Architecture All software the same? Spectrum of Cloudiness Virtualization and Containers Case Study Future Transformed Video Architecture 7

8 Speaking the Same Language UCS Unified Computing System COTS Commercial-Off-the-Shelf NMS Network Management System LXC Linux Container CMS Content Management System CDN Content Distribution Network ABR Adaptive Bit Rate HLS HTTP Live Streaming DASH Dynamic Adaptive Streaming over HTTP SDN Software Defined Networking SLA Service Level Agreement OS Operating System HA High Availability JITP Just-in-Time Packaging VMR Virtual Media Recorder 8

9 How did we get here?

10 Family Vacation! 10

11 Packing for the trip! 11

12 Does your video network look like this? 12

13 True Story of D Bespoke NMS Bespoke A/V 13

14 True Story of D Bespoke NMS Bespoke A/V 14

15 True Story of D Bespoke NMS Software? Cloud? How am I supposed to manage this? Who knows how to configure xyz? Bespoke A/V 15

16 True Story of D Bespoke NMS Software? Cloud? How am I supposed to manage this? Who knows how to configure xyz? Bespoke A/V 16

17 True Story of D Bespoke NMS Software? Cloud? How am I supposed to manage this? Who knows how to configure xyz? Bespoke A/V 17

18 Infrastructure Systems Example Desired Transition - vms architecture Service 1 Service 2 Service N BSS 1 BSS 2 BSS N OSS / BSS OSS 1 OSS 2 OSS N Silos VNF 1 VNF 2 VNF 3 NMS / EMS NMS / EMS NMS / EMS Transition E2E Orchestration SDN NFV HW HW HW HW SW x86 18

19 DC vs Media DC Trends Virtualization Programmable Infra Converged Infra Microservices Containerization Any Cloud Future Mixed HW Silos Consolidate Platforms/Apps? Cloud Environment Hybrid Cloud 19

20 Application Architecture Progression Silos / Appliances Virtualization Cloud Micro Services PaaS, Container Clusters App 1 App 3 App 2 App 1 App 3 App 1 App 2 App 2 Cloud PaaS Hypervisor Hypervisor Hypervisor Cloud App 1 App 2 App 3 App 3 Hypervisor Containers Independent, dedicated app silos Dependent SW + HW relationship Silos built to peak Not a material driver for app rearchitecture; however enabled app teams to view servers as cheap and expendable IT driven Server consolidation Scale out SW / HW separation HW responsibilities move up the stack All is programmable Shared resources VM as deployment unit Dev centric Lightweight container as deployment unit Similar architectural tenants as cloud 20

21 Spectrum of Software Cloudiness Bespoke Appliance Bare Metal COTS Virtualized Apps Cloud-Native Apps Operational Flexibility Performance? 21

22 A story of 3 cloud software products Lift and shift = Cloud Tolerant Cloud ready virtualized Cloud Native microservices, stateless and decoupled atomic functions 22

23 Emergence of Container Technology for Video

24 All Video roads lead to Virtual Machines? Contribution Studio and Post Production Distribution Control Plane Scheduling NMS MAM CMS Automation Master Control Security Scheduler Billing User Mgmt Middleware Data Plane Encoding Content Factory Routing Switching Editing QC Transcoding Packaging Recording CDN 24

25 Best of Both Worlds? 25

26 Benefit Confluence Bare Metal is great because: Able to access HW directly Performant (no HW emulation) Full use of resources VMs are great because: Portability between hosts Elasticity Flexibility and Isolation of Apps CONTAINERS 26

27 Virtual Machines are Fundamentally Different than Containers App App App App Bins / libs Operating System Virtual Machine Hypervisor Operating System Hardware Bins / libs Operating System Virtual Machine Each App has its own OS App App App App Bins / libs Container Container Bins / libs Operating System Hardware Apps Share OS Hypervisor Linux Containers 27

28 Application Development Old Way: Applications on Host New Way: Deploy Containers App App App App Libraries Libraries App App App App Libraries Libraries Libraries Kernel Kernel 28

29 Virtual Machine vs Container Virtual Machine Container What is Virtualized? Hardware OS Portability Between hardware Software Overhead Medium Low Time to Spin up Slow Very Fast Best for: Design Philosophy of application Persistence Running multiple OS on Host Full application on VM Stateful, coupled with filesystem When performance, web-scale, and density is important Micro-services per container, DevOps friendly Stateless, decoupled with filesystem 29

30 Container Technology Primer

31 Linux Container (LXC) Technology Stack LXCs are built on modern kernel features cgroups; limits, prioritization, accounting & control namespaces; process based resource isolation chroot; apparent root FS directory Linux Security Modules (LSM); Mandatory Access Control (MAC) User space interfaces for kernel functions 31

32 Linux cgroups: CPU Pinning Pin containers / jobs to CPU cores Carry out complex scheduling schemes Reduce core switching costs Adhere to SLAs 32

33 Docker Build, Store, and Run Containers. 33

34 Momentum for Containers (Docker) 34

35 Docker Architecture Overview 35

36 Docker Engine Lifecycle Overview Image Pull Creates a new container Allocates a filesystem Allocates a network and IP Executes Captures and provides output 36

37 Union File System App Layer OS Libraries Host OS Layer 37

38 Kubernetes (K8s) manages Docker Containers Provides control plane for container environment 38

39 Kubernetes Architecture Worker Node 1 Docker Pod Container Container Container Pod Container Container Container Pod Container Container Container K8s Master Worker Node 2 Pod Container Container Container Pod Container Container Container Docker Pod Container Container Container Worker Node 3 Docker Pod Container Container Container Pod Container Container Container Pod Container Container Container 39

40 K8S Key Components Kube-API-server Validates and configures data for API objects Pods Master Services Replication Controllers Kube-Controller Control Loop Kube-Proxy Network interface Kube-Scheduler Resource manager and policy Kubelet Monitor and Enforcer (kubelet agent on nodes) API-server Controller Proxy Scheduler Node 1 Node 2 Node N 40

41 Containers, Pods, Nodes Node K8s Master Pod Container 41

42 Service and Labels Worker Node Docker Pods Running Containers Service Construct Labels Service ABC Pod App 1 - SQL Pod App 2 - Nginx 42

43 Worker Node Worker Node Worker Node Worker Node Replication Controller Maintains Pod Structure Node 1 Node 1 Node 1 Node 1 Pod App 1 - SQL Pod App 1 - SQL Pod App 1 - SQL Pod Pod App 1 - SQL App 2 - Nginx Node 2 Pod App 2 - Nginx Node 2 XPod App 2 - Nginx Node 2 X OR Node 2 X Node 3 Node 3 Node 3 Node 3 Pod App 2 - Nginx 43

44 Kubernetes HA Cluster Load-Balanced Nodes Master Node Cluster 44

45 Redundancy is Now Native to Solution Old way New way 45

46 DevOps the new normal? Only replace the micro-service needed Enabled by layered container architecture Fail fast philosophy Deploy, test small scale Rollback Deploy Feature Velocity 46

47 What does this mean for Apps?

48 Recent Video App Development Trends App teams skip OpenStack for containers Migration from VMWare to container platforms Multi DC / hybrid / multi provider app deployment Top down approach / App CD tooling Container frameworks as the enabling platform Managed Platforms and Services Vendor solutions have matured Little appetite for DIY (time, talent, cost, risk) Let the app developers drive platform decisions Have an overarching platform to allow orchestration across any platform 48

49 Video Processing Transformation IBC 2015: Virtualized Main Screen Functions CES 2016: Video Headend Innovation Live TV VOD IOS VOD cdvr Bandwidth Optimization Encoding Packaging Applications xcode Mux/Stat Mux Orchestration Orchestration DPI IP Video Infrastructure Compute Storage Network 49

50 Video Processing Transformation CES 2016: Video Headend Innovation Bandwidth Optimization Encoding Packaging 50

51 Video Processing Transformation CES 2016: Video Headend Innovation NAB 2016: Hybrid Cloud Orchestration Bandwidth Optimization Encoding Packaging Service Provider Cloud Content Provider Cloud Hosted Cloud 51

52 Container as Cloud Native Building Block for Data Plane Requirement Container Answer Web Scale Dynamic Resiliency Agility Loosely coupled Discovery Overhead Hybrid solutions Independent scaling Microservices Quickly spin up and down Load-balanced, stateless design Fits squarely into CI/CD model Micro-services for independent atomic functions Labeling of services Minimal OS and libraries, no hypervisor layer Portability, APIs are first class citizens Apps Libs Guest OS Guest OS Hypervisor Host OS Infrastructure VM Apps Libs Apps Libs Docker Engine Host OS Apps Libs Infrastructure Containers 52

53 Case Study Virtual Media Recorder (VMR)

54 High Level cdvr Reference Architecture Scheduler Back Office Control Plane DRM Packager Recorder JITP CDN Data Plane 54

55 cdvr is Excellent Use Case for Containers Old Way with Virtual Machines or Bare Metal BM or VMs per application Pod dimensioning and deployment model Not Dynamic Recorder bound by multiple constraints Redundancy model Users vs channels Upgrade/Maintenance downtime Scales By Channels Sources Recorder Playout Scales By Users Scales By Channels Storage 55

56 cdvr is Excellent Use Case for Containers New Way with Containers Micro-services Granular model Dynamic, On-Demand services Atomic components of cdvr scale independently in stateless, selfhealing container cluster Extreme feature velocity - CI/CD pipeline Scales By Channels Sources Recorder Playout Scales By Users Scales By Channels Storage 56

57 cdvr Better with micro-services Sources Manifest HBO Agent ESPN Agent In- Memory DB Recorder Stream1 Stream Agents Agents ZooKeeper (ESB) Archive Arch1 Agent Arch2 Agent Agents Origin Play1 Agent Play2 Agent Agents JITP 57

58 VMR cdvr Micro-services Architecture AUX Control Plane INGEST RECORD PLAYBACK RM DO AA CoreOS Container OS DASH Unicast SR RA MA API ZK UI DASH DASH Unicast Kubernetes (K8) Docker Container S3 API 58

59 Scaling Out VMR Control Plane Host 1 Host N.... Object Storage 59

60 Where are we going?

61 D s Journey Bespoke NMS Step 1: Infrastructure Convergence Remove Bespoke Single HW Platform Bespoke A/V 61

62 D s Journey Step 1: Infrastructure Convergence Remove Bespoke Single HW Platform 62

63 D s Journey Step 1: Infrastructure Convergence Remove Bespoke Single HW Platform 63

64 D s Journey Step 2: Application Convergence Orchestration Layer is Key Hybrid Clouds and SW Platforms Multi-Vendor Converged Tooling Converged Infrastructure 64

65 D s Journey Step 2: Application Convergence Orchestration Layer is Key Hybrid Clouds and SW Platforms Multi-Vendor Converged Tooling Converged Infrastructure 65

66 D s Journey Step 2: Application Convergence Orchestration Layer is Key Hybrid Clouds and SW Platforms Multi-Vendor Converged Tooling Converged Infrastructure 66

67 D s Video Architecture Solution Stack V2PC WorkFlow Orchestration On-Premise Containerized VMP Containerized vdcm 3 rd Party Docker UCS + Nexus 67

68 D s Video Architecture Hybrid Solution V2PC WorkFlow Orchestration VMR 68

69 ABR Transcoder JITP & JITE Multicast ABR vcmts Content Providers Alternate Content SS ABR TS VOD Pump Statmux Scramble ABR Transcoder Linear Packager ABR TS Linear Future: Fully Converged Micro-services Solution Micro-Service Edge ABR Core Unicast via CDN cdvr CDN VOD Library Any Cloud General Purpose Public or Private Cloud Compute 69

70 Openstack and Containers - Can they work together? 70

71 OpenStack on Kubernetes (SAP use case) Control and Data Plane Split Openstack Kubernetes Nova Neutron Cinder LBaaS CoreOS VMware KVM Cisco UCS Bare Metal Cisco ACI NetApp F5 71

72 Hurdles Still to Overcome Networking Complexity in Container Environment Security App Isolation Access to Host Adoption by Video Vendor Community Skill Set in Market Container Management Platform Evolution 72

73 What to do about it? I encourage you to : 1. Focus on software architecture, and not just the feature set. 2. Include SW architecture as a critical part of your decision-making process for future video solutions. 3. Make sure that containers are represented as a key piece of that architecture. 4. Ensure that the architecture will support hybrid cloud architectures.? 73

74 Wrap up

75 Key Messages Not all cloud software is the same! Cloud-native opens up new architecture and business possibilities Containers provide technology for true cloud delivery of services, because of: Web-scale design (resiliency, scale, elasticity) Micro-service apps enable true CI/CD and DevOps Cisco building solutions for orchestrated container-based, hybrid workflows Content Provider Cloud Service Provider Cloud Hosted Cloud 75

76 Complete Your Online Session Evaluation Please complete your Online Session Evaluations after each session Complete 4 Session Evaluations & the Overall Conference Evaluation (available from Thursday) to receive your Cisco Live T-shirt All surveys can be completed via the Cisco Live Mobile App or the Communication Stations Don t forget: Cisco Live sessions will be available for viewing on-demand after the event at CiscoLive.com/Online 76

77 Continue Your Education Demos in the Cisco campus Walk-in Self-Paced Labs Lunch & Learn Meet the Engineer 1:1 meetings 77

78 Continue Your Education Related sessions DEVNET-2203: DevNet Workshop - Building a DevOps CICD Pipeline from Scratch: Wednesday, Feb 22, 2:00 p.m. or Thursday, Feb 23, 10:00 a.m. DEVNET-2030/2123: Container Networking with Project Contiv Wednesday, Feb 22, 5:00 p.m. or Thursday, Feb 23, 5:00 p.m. DEVNET-2058: Cisco Zeus: Monitoring as a Service Thursday, Feb 23, 9:00 a.m. BRKSPM-2333: Leveraging Microservices and Containers to Fulfill the Promise of Autoscale and Continuous Delivery in Service Provider Networks: Thursday, Feb 23, 2:30 p.m. DEVNET-2042: DevNet Workshop - Getting Started with Containers Thursday, Feb 23, 4:00 p.m. 78

79 Q & A

80 Thank You

81

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

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

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

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

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

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

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

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

Stateful Services on DC/OS. Santa Clara, California April 23th 25th, 2018

Stateful Services on DC/OS. Santa Clara, California April 23th 25th, 2018 Stateful Services on DC/OS Santa Clara, California April 23th 25th, 2018 Who Am I? Shafique Hassan Solutions Architect @ Mesosphere Operator 2 Agenda DC/OS Introduction and Recap Why Stateful Services

More information

Container Native Application Development

Container Native Application Development Container Native Application Development Wolfgang Weigend Disclaimer The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated

More information

Mastering the Microservices, Fast Data & Hybrid Cloud Trifecta

Mastering the Microservices, Fast Data & Hybrid Cloud Trifecta Mastering the Microservices, Fast Data & Hybrid Cloud Trifecta Edward Hsu, VP Product 2018.10.23 2018 Mesosphere, Inc. All Rights Reserved. 2 Cloud On Who s Terms? 2018 Mesosphere, Inc. All Rights Reserved.

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

Dynamic App Services in Containers PRESENTED BY:

Dynamic App Services in Containers PRESENTED BY: Dynamic App Services in Containers PRESENTED BY: Apps and container market overview Container description and benefits Container platforms and orchestration tools Container integrations: F5 Container Connector

More information

Middleware Modernization: lay the foundation to your digital success

Middleware Modernization: lay the foundation to your digital success Middleware Modernization: lay the foundation to your digital success Agenda 1 Why modernize? 5 Platform services 2 What middleware capabilities would a digital enterprise need? 6 People and processes 3

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

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

THE FUTURE OF NETWORKS IS OPEN...SOURCE! François Duthilleul EMEA Solution Architect, Telco Technology Office

THE FUTURE OF NETWORKS IS OPEN...SOURCE! François Duthilleul EMEA Solution Architect, Telco Technology Office THE FUTURE OF NETWORKS IS OPEN...SOURCE! François Duthilleul EMEA Solution Architect, Telco Technology Office fduthill@redhat.com TRENDS IMPACTING THE FUTURE NETWORK Softwarization & HW Commoditization

More information

Containers and

Containers and Containers and Docker @NetApp 09 Mars 2017 Christophe Danjou & Thibaud Lenik C 1. What are Containers? 2. Why Containers and Docker? Agenda 3. Using Docker with NetApp 2 2016 NetApp, Inc. All rights reserved.

More information

THETARAY ANOMALY DETECTION

THETARAY ANOMALY DETECTION Going Cloud 0100110001101111011100100110010101101101001000000110100101110 0000111001101110101011011010010000001100100011011110110110001 1011110111001000100000011100110110100101110100001000000110000 1011011010110010101110100001011000010000001100011011011110110

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

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

Oracle Cloud Blueprint and Roadmap Service. 1 Copyright 2012, Oracle and/or its affiliates. All rights reserved.

Oracle Cloud Blueprint and Roadmap Service. 1 Copyright 2012, Oracle and/or its affiliates. All rights reserved. Oracle Cloud Blueprint and Roadmap Service 1 Copyright 2012, Oracle and/or its affiliates. All rights reserved. Cloud Computing: Addressing Today s Business Challenges Business Flexibility & Agility Cost

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

A Examcollection.Premium.Exam.35q

A Examcollection.Premium.Exam.35q A2030-280.Examcollection.Premium.Exam.35q Number: A2030-280 Passing Score: 800 Time Limit: 120 min File Version: 32.2 http://www.gratisexam.com/ Exam Code: A2030-280 Exam Name: IBM Cloud Computing Infrastructure

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

Simplify Private Cloud Deployments PRESENTED BY:

Simplify Private Cloud Deployments PRESENTED BY: Simplify Private Cloud Deployments PRESENTED BY: What CIOs are ultimately looking for is the ability to than their competitors, while adhering to regulatory requirements, and. RedMonk Analyst Strong Security

More information

NFV Orchestrator powered by VMware

NFV Orchestrator powered by VMware NFV Orchestrator powered by VMware White paper October 2015 2 Amdocs Network Cloud Service Orchestrator enables service agility and operational efficiency, powered by VMware. For Amdocs, it s important

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

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

Understanding Cloud. #IBMDurbanHackathon. Presented by: Britni Lonesome IBM Cloud Advisor

Understanding Cloud. #IBMDurbanHackathon. Presented by: Britni Lonesome IBM Cloud Advisor Understanding Cloud #IBMDurbanHackathon Presented by: Britni Lonesome IBM Cloud Advisor What is this thing called cloud? Cloud computing is a new consumption and delivery model inspired by consumer internet

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

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

I D C M A R K E T S P O T L I G H T. S i l o s a n d Promote Business Ag i l i t y

I D C M A R K E T S P O T L I G H T. S i l o s a n d Promote Business Ag i l i t y I D C M A R K E T S P O T L I G H T E f f e c t i ve M u l ticloud Str ategies B reak Dow n S i l o s a n d Promote Business Ag i l i t y August 2016 Adapted from IDC's Multicloud Management Survey by

More information

Application & Data Modernization enabling your Digital Transformation. Dennis Lauwers European Technical Leader Hybrid Cloud

Application & Data Modernization enabling your Digital Transformation. Dennis Lauwers European Technical Leader Hybrid Cloud Application & Data Modernization enabling your Digital Transformation Dennis Lauwers European Technical Leader Hybrid Cloud Dennis Lauwers European Technical Leader Hybrid Cloud @DenLauwers Getting innovation

More information

INTRODUCTION AUX APPLICATIONS CLOUD NATIVE AVEC PIVOTAL READY SYSTEM

INTRODUCTION AUX APPLICATIONS CLOUD NATIVE AVEC PIVOTAL READY SYSTEM INTRODUCTION AUX APPLICATIONS CLOUD NATIVE AVEC PIVOTAL READY SYSTEM EMMANUEL BERNARD PRINCIPAL SYSTEM ENGINEER, CLOUD PLATFORM SPECIALIST DELL EMC @_ebernard GLOBAL SPONSORS Every Business is Becoming

More information

C exam.34q.

C exam.34q. C5050-287.exam.34q Number: C5050-287 Passing Score: 800 Time Limit: 120 min C5050-287 Foundations of IBM Cloud Reference Architecture V5 Exam A QUESTION 1 Which statement is true about Software Defined

More information

DRAFT ENTERPRISE TECHNICAL REFERENCE FRAMEWORK ETRF WHITE PAPER

DRAFT ENTERPRISE TECHNICAL REFERENCE FRAMEWORK ETRF WHITE PAPER DRAFT ENTERPRISE TECHNICAL REFERENCE FRAMEWORK ETRF WHITE PAPER CONTENTS CONTENTS... 0 INTRODUCTION... 1 VISION AND OBJECTIVES... 1 ARCHITECTURE GUIDING PRINCIPLES... 1 ENTERPRISE TECHNICAL REFERENCE FRAMEWORK

More information

A CONTAINER-PLATFORM APPROACH TO DIGITAL TRANSFORMATION AND DEVOPS. Diógenes Rettor Principal Product Manager, OpenShift

A CONTAINER-PLATFORM APPROACH TO DIGITAL TRANSFORMATION AND DEVOPS. Diógenes Rettor Principal Product Manager, OpenShift A CONTAINER-PLATFORM APPROACH TO DIGITAL TRANSFORMATION AND DEVOPS Diógenes Rettor (@rettori) Principal Product Manager, OpenShift What you ll learn in this session The 4 adoption patterns for evolving

More information

Uncovering the Hidden Truth In Log Data with vcenter Insight

Uncovering the Hidden Truth In Log Data with vcenter Insight Uncovering the Hidden Truth In Log Data with vcenter Insight April 2014 VMware vforum Istanbul 2014 Serdar Arıcan 2014 VMware Inc. All rights reserved. VMware Strategy To help customers realize the promise

More information

What s new on Azure? Jan Willem Groenenberg

What s new on Azure? Jan Willem Groenenberg What s new on Azure? Jan Willem Groenenberg Why the cloud? Rapidly setup environments to drive business priorities Scale to meet peak demands Increase daily activities, efficiency and reduced cost. Why

More information

The future of network and service automation

The future of network and service automation The future of network and service automation Timo Perälä Nokia September 2018 1 The future of digital service delivery from Digital Service Providers (DSPs) Traditional CSP Focus on elephant massmarket

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

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

NSO in an ETSI NFV Context Carl Moberg Technical Director, Tail-f Engineering January 7, 2015

NSO in an ETSI NFV Context Carl Moberg Technical Director, Tail-f Engineering January 7, 2015 NSO in an ETSI NFV Context Carl Moberg Technical Director, Tail-f Engineering January 7, 2015 Agenda NSO Overview ETSI MANO Terms Demo Time Questions and Wrap 2 NSO Overview 3 Cisco Service Provider Architecture

More information

FROM SHORE TO SHIP: USING MESOSPHERE ENTERPRISE DC/OS TO DELIVER REAL TIME MICROSERVICES TO A GLOBAL FLEET OF SHIPS

FROM SHORE TO SHIP: USING MESOSPHERE ENTERPRISE DC/OS TO DELIVER REAL TIME MICROSERVICES TO A GLOBAL FLEET OF SHIPS FROM SHORE TO SHIP: USING MESOSPHERE ENTERPRISE DC/OS TO DELIVER REAL TIME MICROSERVICES TO A GLOBAL FLEET OF SHIPS & WELCOME TO DIGITAL TRANSFORMATION Today we will be taking you through the moments that

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

Death of the ESB: 10 Pitfalls in the transition to Cloud-Native Integration. Rishikesh Palve, 25th Oct 2017 Open Source Summit Europe 2017

Death of the ESB: 10 Pitfalls in the transition to Cloud-Native Integration. Rishikesh Palve, 25th Oct 2017 Open Source Summit Europe 2017 Death of the ESB: 10 Pitfalls in the transition to Cloud-Native Integration Rishikesh Palve, 25th Oct 2017 Open Source Summit Europe 2017 1 What are we going to talk about today? ESBs?? Cloud & Edge Native

More information

Cisco ONE Enterprise Cloud Suite Automates Infrastructure, Cloud, and Application Lifecycles

Cisco ONE Enterprise Cloud Suite Automates Infrastructure, Cloud, and Application Lifecycles Solution Overview Cisco ONE Enterprise Cloud Suite Automates Infrastructure, Cloud, and Application Lifecycles BENEFITS Delivers automation crucial for increasing business velocity Provides continuous

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

Evolving MAM Systems in the Cloud

Evolving MAM Systems in the Cloud Evolving MAM Systems in the Cloud Julián Fernández-Campón Business Solutions Director@Tedial 1.2 Traditional MAM Systems Complex Deployment Monolithic Hardcoded / Complex Logic / Difficult to Configure

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

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

Data Center Operating System (DCOS) IBM Platform Solutions

Data Center Operating System (DCOS) IBM Platform Solutions April 2015 Data Center Operating System (DCOS) IBM Platform Solutions Agenda Market Context DCOS Definitions IBM Platform Overview DCOS Adoption in IBM Spark on EGO EGO-Mesos Integration 2 Market Context

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

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

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

Cloud Computing, How do I do that?

Cloud Computing, How do I do that? Cloud Computing, How do I do that? Christian Verstraete Chief Technologist - Cloud Every Generation has a Defining Industry 2 IT is the Defining Industry of our Generation 1970-80s Mainframe 1990s Client/Server

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

CONNECTING THE DIGITAL WORLD. Modernize telecommunications infrastructure using an open framework

CONNECTING THE DIGITAL WORLD. Modernize telecommunications infrastructure using an open framework CONNECTING THE DIGITAL WORLD Modernize telecommunications infrastructure using an open framework TABLE OF CONTENTS Navigating this E-book Page 3 Disruption: The new normal for telecommunications Page 5

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

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

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

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

SAN DIEGO Oct BREAKOUT SESSIONS

SAN DIEGO Oct BREAKOUT SESSIONS BREAKOUT SESSIONS Interconnect Everything Track Integrating Microservices in a Cloud-native Environment With application architecture evolving to include microservices and deploy them to containers (like

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

SunGard: Cloud Provider Capabilities

SunGard: Cloud Provider Capabilities SunGard: Cloud Provider Capabilities Production and Recovery Solutions for Mid-Sized Enterprises www.sungardas.com Agenda Our Mission Use Cases Cloud Strategy Why SunGard 2 Our Mission Enable mid-sized

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

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

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

EXPERIENCE EVERYTHING

EXPERIENCE EVERYTHING EXPERIENCE EVERYTHING RAPID. OPEN. SECURE. Jigar Bhansali VP Solution & Architecture, Asia & China INNOVATION TOUR 2018 April 26 Singapore 2018 Software AG. All rights reserved. For internal use only HYBRID

More information

z Systems The Lowest Cost Platform

z Systems The Lowest Cost Platform z Systems The Lowest Cost Platform Using IT Economics (TCO) to prove that z Systems is in fact the lowest cost platform, with the highest QoS! David F. Anderson PE dfa@us.ibm.com June 24, 2016 Christopher

More information

Fortune Global 50 Financial Institution Accelerates Application Delivery with Anuta ATOM Network Service Orchestration

Fortune Global 50 Financial Institution Accelerates Application Delivery with Anuta ATOM Network Service Orchestration Fortune Global 50 Financial Institution Accelerates Application Delivery with Anuta ATOM Network Service Orchestration A Fortune Global-50 (FG50) Financial Institution which operates a large number of

More information

Application Performance Management

Application Performance Management Application Performance Management in a Containerized World Achieving visibility in orchestrated environments To say that containers have revolutionized software delivery and deployment is an understatement.

More information

Big Data in Cloud. 堵俊平 Apache Hadoop Committer Staff Engineer, VMware

Big Data in Cloud. 堵俊平 Apache Hadoop Committer Staff Engineer, VMware Big Data in Cloud 堵俊平 Apache Hadoop Committer Staff Engineer, VMware Bio 堵俊平 (Junping Du) - Join VMware in 2008 for cloud product first - Initiate earliest effort on big data within VMware since 2010 -

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

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

Solutions to Cloud Native Applications. Bassam Zantout - Advisory vspecialist SE

Solutions to Cloud Native Applications. Bassam Zantout - Advisory vspecialist SE Solutions to Cloud Native Applications Bassam Zantout - Advisory vspecialist SE THE TRENDS Remove friction across software supply chain Offering Idea SHARED RESPONSIBILITY Common incentives, tools, process,

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

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

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

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

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

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

Cisco Intelligent Automation for Cloud

Cisco Intelligent Automation for Cloud Data Sheet Cisco Intelligent Automation for Cloud Introduction IT is under increasing pressure to deliver services to the business more quickly and inexpensively than ever before. Fortunately, a new solution,

More information

xpaas Track Menny Tsarfaty Solution Architect, Manager Red Hat

xpaas Track Menny Tsarfaty Solution Architect, Manager Red Hat xpaas Track Menny Tsarfaty Solution Architect, Manager Red Hat Agenda l l l l l l xpaas Red Hat E&M Cloud Offering based on Red Hat Cloud Suite Innovation, Not Infrastructure: Google Cloud The Enterprise

More information

New Ways to Leverage Open Source

New Ways to Leverage Open Source #techsummitch New Ways to Leverage Open Source NEW DEMANDS NEW OPPORTUNITIES Open Source Projects Have Exploded + SUSE: What it Means to be Open Open Source Community Customers & Partners Committed to

More information

Ken Gold. Leader, Solutions Marketing EXFO

Ken Gold. Leader, Solutions Marketing EXFO Topical Session 7: SD-WAN & Network Virtualization Orchestrated Service Assurance - An Enabler to Realize the Benefits of Virtualization 22-01-2018 1530-1645 Ken Gold Leader, Solutions Marketing EXFO Operators

More information

Integrating the Enterprise. How Business Leaders are Implementing Digital Integration

Integrating the Enterprise. How Business Leaders are Implementing Digital Integration Integrating the Enterprise How Business Leaders are Implementing Digital Integration Today s Session In Review Business Value of IoT Building an IoT Backbone Integrating the Enterprise Market Potential

More information

Oracle s Cloud Computing Strategy

Oracle s Cloud Computing Strategy Oracle s Cloud Computing Strategy Your Strategy, Your Cloud, Your Choice Frank Zervos Sales Consulting Director, Oracle CEE George Bourmas Enterprise Architect, EMEA XLOB Architects Copyright 2014, Oracle

More information

Cloud Orchestration Solution Enterprise Public Hybrid

Cloud Orchestration Solution Enterprise Public Hybrid Cloud Orchestration Solution Enterprise Public Hybrid Cloud Solutions: Snapshot AWS Partner Orchestration solution for private and public clouds (AWS, Azure, OpenStack, Cloudstack) Manage and orchestrate

More information

Self-driving Clouds: From Vision to Reality

Self-driving Clouds: From Vision to Reality @ZeroStackInc sales@zerostack.com www.zerostack.com Self-driving Clouds: From Vision to Reality White Paper Introduction Imagine you are in New York for some customer meetings and meet your brother. So

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

Innovate with Oracle Public Cloud Platform & Infrastructure Services

Innovate with Oracle Public Cloud Platform & Infrastructure Services Innovate with Oracle Public Cloud Platform & Infrastructure Services Ravi Pinto Director, Product Management Copyright 2014 Oracle and/or its affiliates. All rights reserved. Safe Harbor Statement The

More information

Azure. Bruno Kovačić Axilis, Microsoft MVP

Azure. Bruno Kovačić Axilis, Microsoft MVP Azure Bruno Kovačić Axilis, Microsoft MVP Why the cloud? Game sessions hosted using Azure Hosted using >100,000 Azure Virtual Machines Why the cloud? Rapidly setup environments to drive business priorities

More information

Oracle Cloud for the Enterprise John Mishriky Director, NAS Strategy & Business Development

Oracle Cloud for the Enterprise John Mishriky Director, NAS Strategy & Business Development % Oracle Cloud for the Enterprise John Mishriky Director, NAS Strategy & Business Development john.mishriky@oracle.com Right Solution. Right Time. What We Built An Enterprise Cloud An integrated platform

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

Take a Tour of Native Hybrid Cloud & Neutrino. Modern, cloud native platforms

Take a Tour of Native Hybrid Cloud & Neutrino. Modern, cloud native platforms Take a Tour of Native Hybrid Cloud & Neutrino Modern, cloud native platforms Native Hybrid Cloud Introducing Native Hybrid Cloud TURNKEY developer platform DESIGNED, SUPPORTED AND SUSTAINED AS ONE Developer

More information

DRIVING DIGITAL TRANSFORMATION WITH CONTAINERS AND KUBERNETES. How Kubernetes Manages Containerized Applications to Deliver Business Value

DRIVING DIGITAL TRANSFORMATION WITH CONTAINERS AND KUBERNETES. How Kubernetes Manages Containerized Applications to Deliver Business Value WHITE PAPER AUGUST 2017 DRIVING DIGITAL TRANSFORMATION WITH How Kubernetes Manages Containerized Applications to Deliver Business Value Table of Contents Introduction...3 The Digital Transformation and

More information

DevOps Journey. adoption after organizational and process changes. Some of the key aspects to be considered are:

DevOps Journey. adoption after organizational and process changes. Some of the key aspects to be considered are: VIEWPOINT DevOps Background The world is being transformed in fundamental ways with software and communication technologies. As bits reshape and pervade the atoms, connecting us and the world around us,

More information