DevOps on AWS: Best Practices for Enterprise IT Teams

Size: px
Start display at page:

Download "DevOps on AWS: Best Practices for Enterprise IT Teams"

Transcription

1 : Best Practices for Enterprise IT Teams logicworks.net FOR LOGIC 2015 Logicworks

2 Executive Summary Amazon Web Services is a robust, powerful, and constantly evolving set of tools and resources but it takes a DevOps team to turn these resources into highly available, responsive, secure infrastructure. A well-executed DevOps approach enables development teams to concentrate on continuous improvement of their software applications, not on deployment and infrastructure updates, and empowers IT teams to become drivers of organizational innovation and agility. What is DevOps? The benefits of DevOps are widely known: seventy percent (70%) of senior IT leaders believe they need to implement a DevOps approach. At their most foundational level, DevOps practices tightly integrate applications with the infrastructure on which they run. Therefore, DevOps teams are often composed of application 2015 Logicworks content@logicworks.net logicworks.net FOR LOGIC 2

3 developers and system engineers who have developed integrated deployment and provisioning processes. While parts of DevOps philosophy can be implemented in a traditional IT environment, the new possibilities of Infrastructureas-Code are the foundation for DevOps best practices. In traditional IT environments, provisioning new servers is an expensive, time-consuming, and often highly manual process that is opaque to business leaders and development teams. Cloud platforms like AWS empower teams to automate deployments with custom scripts and configuration management tools, allowing for a rapid provisioning and deployment schedule. The pressure to deliver software applications quickly continues to increase. This is part of why deployment automation has always been a crucial component of DevOps philosophy. But fully automated environments require a sophisticated development process, and in the rush to production, that can add unwanted complexity. This is why organizations need to be strategic about selecting the aspects of DevOps the team can currently handle. DevOps is a spectrum, and it is not true that one needs to implement every 2015 Logicworks content@logicworks.net logicworks.net FOR LOGIC 3

4 DevOps best practice in order to enjoy some benefit from DevOps principles. DevOps is a spectrum, from most basic to advanced: Base Images "Golden Master" Automed Network Architecture Deployment Automation Auto Scaling NoOps ArchOps DevOps One can also think of this as a spectrum from ArchOps to DevOps. ArchOps is about laying the foundation the minimum viable product of the environment and DevOps is about building the automation. In many ways this is a complete paradigm shift for the governing principles of most IT departments: there was a time when a system administrator would show the uptime on his systems with pride. DevOps teams take equal pride in high availability. This evolution should be considered a new state of the art, as IT shifts from system to application management Logicworks content@logicworks.net logicworks.net FOR LOGIC 4

5 ArchOps: Laying the Foundation ArchOps is the set of principles that focuses on automating just the infrastructure buildout to be able to deploy standard environments in a few hours or days. At the most basic level, ArchOps is creating a perfect image of an instance to bring up manually. A good base image should not make any assumptions about what its name is, should be destructively tested, etc. An automated network architecture buildout is the next level of complexity. Even if an enterprise has hundreds of complex apps, the network configuration often does not change radically, and remembering to close specific security loopholes each time a network is configured has a high risk of failure. Setting up credentials and baking in naming conventions will also save large amounts of time. DevOps teams often use CloudFormation, a native AWS resource, to do this. If the network infrastructure ever needs to change, changes can be made in the CloudFormation template. This helps prevent regressions in a security policy and acts as a physical document that fully defines the environment being built. CloudFormation allows teams to automate things like deploying secure, multi-az web servers, network infrastructure, and can even download Puppet scripts and configures the Puppetmaster 2015 Logicworks content@logicworks.net logicworks.net FOR LOGIC 5

6 dozens of small tasks that are very time-consuming if done manually. CloudFormation is especially time-saving if an enterprise s standard deployment has HIPAA or PCI compliance restraints or must incorporate legacy systems; a team can spend countless hours writing and re-installing 3rd party tools and a custom mix of AWS tools for each deployment. While this might be sustainable if with a small deployment of a handful of instances, one would need a fleet of NOC engineers to spin up hundreds of environments in an enterprise or growing start-up. In essence, CloudFormation allows teams to maintain buildout velocity by orchestrating AWS resources to spin up the foundation of an environment quickly. This is the fundamental goal of ArchOps. AWS DevOps Practices Once CloudFormation does the work of installing and configuring Puppet, now it is time to start pulling the strings. At this point, an IT team is getting into true DevOps practices. Configuration Management While it is possible to deploy a highly available Amazon Web 2015 Logicworks content@logicworks.net logicworks.net FOR LOGIC 6

7 Services (AWS) environments without configuration management tools like Puppet, doing so significantly increases the risk of error and downtime. On any kind of infrastructure, automated software installs can save a team a great deal of time, but in a dynamic cloud environment, configuration management tools can actually create the AWS resources nodes require to operate, such as Elastic IPs, network interfaces, or block storage. A DevOps team relies on configuration management to maintain a single source of consistent, documented system configuration. As enterprise infrastructure becomes code and instances can be spun up or down with a few clicks, the protection this affords is absolutely essential for complex deployments. An EC2-resident configuration tool like Puppet is the key configuration engine during auto scaling events, provides version control, and has monitoring and reporting capacities, along with other benefits. It is often tempting to not bother with Puppet or configuration management in an initial AWS set-up, especially if the team is new to using Puppet. The benefit of doing the hard work upfront is that every consumer-facing application changes. The more that is automated, the more time engineers can spend on new projects and the quicker the team can adapt to change. Deployment Automation Deployment automation enables continuous integration, where 2015 Logicworks content@logicworks.net logicworks.net FOR LOGIC 7

8 development teams deploy code to production several or even hundreds of times a day. With every commit that is pushed out to the site, a whole suite of unit tests verifies what is working. If a team has a one-button process to push from Git so they can deploy a large update to just one instance and then run statistics on that one node to make sure it is working correctly this is a very mature systems development process. AWS CodeDeploy is often used to facilitate this process. It has a number of functions, like deploying an update to a fleet of AWS EC2 instances (from a single instance to thousands) and automatically scheduling updates across multiple Availability Zones to maintain High Availability during deployment. Auto Scaling Auto scaling, when correctly implemented, significantly decreases the risks associated with traffic overflow causing server failure. At the same time costs are reduced; instead of running instances based on projected (assumed) usage and leaving excess resources in place as a buffer, one can only run resources matched to actual usage, on a moment-to-moment basis. These price and scalability advantages are not without their own complexities. Most importantly, auto scaling is a capacity of AWS, 2015 Logicworks content@logicworks.net logicworks.net FOR LOGIC 8

9 but not a built-in function; it requires custom scripts and processes. There are many ways to getting a system from zero to 100% scalability, and configuration management tools like Puppet are the most common tools. A final step is integration between deploy process and auto scaling where Puppet scripts automatically integrate those EC2 instances into Auto Scaling groups. Puppet scripts can replace the need for a perfectly baked AMI. Instead, a vanilla template with the minimum possible configurations replaces individual Golden Masters for each server role. In this scenario, instance userdata or boot script needs only to do what is necessary to connect to the Puppetmaster. It takes a significant amount of time and focus to create and maintain these automation resources. Ultimately, a DevOps team may develop a sophisticated library of scripts that enable them to deploy testing environments or increase capacity within hours. These scripts themselves become a whole separate infrastructure that needs to be maintained. But the team is ultimately saving hundreds of hours of manual work and keeping development velocity high so it can spend time on code, not deploy. Choosing a Cloud Platform and Team 2015 Logicworks content@logicworks.net logicworks.net FOR LOGIC 9

10 Start-ups and enterprises that are first moving into the cloud make one of two common mistakes: They either choose an out-of-thebox cloud solution that fits their immediate needs, or they hire a short-term consultant to help them migrate to the public cloud. Both solutions make it very difficult to implement a true DevOps culture in an IT team. Choosing a cloud platform with limited resources (that do not change frequently) often does not provide the breadth of automation and integration tools that keep DevOps teams innovating. And while a short-term cloud consultancy often promises to coach teams in DevOps philosophy, the team frequently struggles to maintain the infrastructure and does not have the time to innovate and explore once the consultants leave. This results in multiple, expensive engagements without affecting true internal change. Enterprises need to find a cloud platform that provides a sophisticated set of tools and constantly improves its infrastructure. They need a cloud platform with a broad development community that has used these tools to develop great infrastructure. They need templated deployment infrastructure tools. And importantly, most enterprises will require an a la carte resource model, so that these tools can be used in custom configurations. This is crucial to enterprises with complex builds that do not perform optimally in one-size-fits-all 2015 Logicworks content@logicworks.net logicworks.net FOR LOGIC 10

11 systems. Currently, the only cloud provider that fits this description is Amazon Web Services. There is good reason why more enterprises choose AWS than any other IaaS provider. However, AWS is only as powerful as the team managing it longterm. Both the internal IT team and any Managed Service Provider the enterprise might bring on must understand the unique blend of AWS resources that put DevOps principles into action. Therefore, the combination of an experienced Managed Service Provider and AWS is much more powerful than a short-term consultant partner or Managed Services on top of a less robust cloud platform. Summary Wherever a team is on the ArchOps/DevOps spectrum, any degree of automation can lead to a gain in efficiency that directly translates into cost-efficiencies. A team that is less hampered by provisioning timelines, lengthy deployment approval processes, etc. will be able to concentrate on improving the organization s applications, not on repetitive manual work. IT will no longer be an organizational cost, but a driver of innovation, powering new lies of business and working more closely with business leaders to meet organizational goals. Although some teams may resist this 2015 Logicworks content@logicworks.net logicworks.net FOR LOGIC 11

12 dramatic organizational shift, the inexorable progression of the industry will ultimately yield leaner, more agile teams than were possible in IT just five years ago. The world s largest enterprises now host complex, mission-critical infrastructure on IaaS platforms like Amazon Web Services. But the true power of AWS is only realized when the infrastructure is managed by a highly integrated DevOps team that is committed to process and communication. About Us Logicworks provides cloud computing and managed hosting to some of the world s most respected brands including Dow Jones, NBC, Lincoln Center, and Orion Health. As a Premier AWS Consulting Partner, Logicworks specializes in Hybrid and Managed AWS Solutions for SaaS, Media, ecommerce, Mobile, Healthcare, and Financial services companies. Visit us at to learn more or contact us at (866) FOR LOGIC Logicworks content@logicworks.net logicworks.net FOR LOGIC 12

Hybrid Clouds for Legacy Applications: Maintaining Integration Across Multiple Environments

Hybrid Clouds for Legacy Applications: Maintaining Integration Across Multiple Environments Hybrid Clouds for Legacy Applications: Maintaining Integration Across Multiple Environments 20 2015 logicworks content@logicworks.net logicworks.net +1 866 FOR LOGIC ! Executive Summary The cloud is not

More information

COMPLIANT CLOUD INFRASTRUCTURE FOR THE PUBLIC SECTOR SERVING STATE, LOCAL GOVERNMENT AND EDUCATION ORGANIZATIONS

COMPLIANT CLOUD INFRASTRUCTURE FOR THE PUBLIC SECTOR SERVING STATE, LOCAL GOVERNMENT AND EDUCATION ORGANIZATIONS COMPLIANT CLOUD INFRASTRUCTURE FOR THE PUBLIC SECTOR SERVING STATE, LOCAL GOVERNMENT AND EDUCATION ORGANIZATIONS CONTENT LOGICWORKS AT-A-GLANCE 04 PRIVATE CLOUD HOSTING 05 NETWORK AND SECURITY 07 DEVOPS

More information

Introduction to DevOps on AWS

Introduction to DevOps on AWS Introduction to DevOps on AWS David Chapman December 2014 Contents Contents Abstract Introduction Agile Evolution to DevOps Infrastructure as Code AWS CloudFormation AWS AMI Continuous Deployment AWS CodeDeploy

More information

Managed Amazon Web Services

Managed Amazon Web Services Managed Amazon Web Services iomart and Amazon Web Services (AWS) The growth of public cloud services has been led by Amazon, with AWS now the overwhelming market share leader, thanks to their extensive

More information

How To Set Up Wiremock In Anhtml.Com On A Testnet On A Linux Server On A Microsoft Powerbook 2.5 (Powerbook) On A Powerbook 1.5 On A Macbook 2 (Powerbooks)

How To Set Up Wiremock In Anhtml.Com On A Testnet On A Linux Server On A Microsoft Powerbook 2.5 (Powerbook) On A Powerbook 1.5 On A Macbook 2 (Powerbooks) The Journey of Testing with Stubs and Proxies in AWS Lucy Chang lucy_chang@intuit.com Abstract Intuit, a leader in small business and accountants software, is a strong AWS(Amazon Web Services) partner

More information

Migration Scenario: Migrating Backend Processing Pipeline to the AWS Cloud

Migration Scenario: Migrating Backend Processing Pipeline to the AWS Cloud Migration Scenario: Migrating Backend Processing Pipeline to the AWS Cloud Use case Figure 1: Company C Architecture (Before Migration) Company C is an automobile insurance claim processing company with

More information

Who moved my cloud? Part I: Introduction to Private, Public and Hybrid clouds and smooth migration

Who moved my cloud? Part I: Introduction to Private, Public and Hybrid clouds and smooth migration Who moved my cloud? Part I: Introduction to Private, Public and Hybrid clouds and smooth migration Part I of an ebook series of cloud infrastructure and platform fundamentals not to be avoided when preparing

More information

Enabling Database-as-a-Service (DBaaS) within Enterprises or Cloud Offerings

Enabling Database-as-a-Service (DBaaS) within Enterprises or Cloud Offerings Solution Brief Enabling Database-as-a-Service (DBaaS) within Enterprises or Cloud Offerings Introduction Accelerating time to market, increasing IT agility to enable business strategies, and improving

More information

Harnessing the Power of Big Data for Real-Time IT: Sumo Logic Log Management and Analytics Service

Harnessing the Power of Big Data for Real-Time IT: Sumo Logic Log Management and Analytics Service Harnessing the Power of Big Data for Real-Time IT: Sumo Logic Log Management and Analytics Service A Sumo Logic White Paper Introduction Managing and analyzing today s huge volume of machine data has never

More information

19.10.11. Amazon Elastic Beanstalk

19.10.11. Amazon Elastic Beanstalk 19.10.11 Amazon Elastic Beanstalk A Short History of AWS Amazon started as an ECommerce startup Original architecture was restructured to be more scalable and easier to maintain Competitive pressure for

More information

RemoteApp Publishing on AWS

RemoteApp Publishing on AWS RemoteApp Publishing on AWS WWW.CORPINFO.COM Kevin Epstein & Stephen Garden Santa Monica, California November 2014 TABLE OF CONTENTS TABLE OF CONTENTS... 2 ABSTRACT... 3 INTRODUCTION... 3 WHAT WE LL COVER...

More information

ITIL Asset and Configuration. Management in the Cloud

ITIL Asset and Configuration. Management in the Cloud ITIL Asset and Configuration Management in the Cloud An AWS Cloud Adoption Framework Addendum September 2015 A Joint Whitepaper with Minjar Cloud Solutions 2015, Amazon Web Services, Inc. or its affiliates.

More information

Migration Scenario: Migrating Batch Processes to the AWS Cloud

Migration Scenario: Migrating Batch Processes to the AWS Cloud Migration Scenario: Migrating Batch Processes to the AWS Cloud Produce Ingest Process Store Manage Distribute Asset Creation Data Ingestor Metadata Ingestor (Manual) Transcoder Encoder Asset Store Catalog

More information

White. Paper. ROI Benefits from Automating Application Delivery Solutions. December 2013

White. Paper. ROI Benefits from Automating Application Delivery Solutions. December 2013 White Paper ROI Benefits from Automating Application Delivery Solutions By Bob Laliberte, Senior Analyst December 2013 This ESG White Paper was commissioned by Riverbed and is distributed under license

More information

STeP-IN SUMMIT 2013. June 18 21, 2013 at Bangalore, INDIA. Performance Testing of an IAAS Cloud Software (A CloudStack Use Case)

STeP-IN SUMMIT 2013. June 18 21, 2013 at Bangalore, INDIA. Performance Testing of an IAAS Cloud Software (A CloudStack Use Case) 10 th International Conference on Software Testing June 18 21, 2013 at Bangalore, INDIA by Sowmya Krishnan, Senior Software QA Engineer, Citrix Copyright: STeP-IN Forum and Quality Solutions for Information

More information

How To Monitor Hybrid It From A Hybrid Environment

How To Monitor Hybrid It From A Hybrid Environment IT Monitoring for the Hybrid Enterprise With a Look at ScienceLogic Perspective 2012 Neovise, LLC. All Rights Reserved. Report Published April, 2015 Hybrid IT Goes Mainstream Enterprises everywhere are

More information

ITIL Asset and Configuration Management in the Cloud. January 2016

ITIL Asset and Configuration Management in the Cloud. January 2016 ITIL Asset and Configuration Management in the Cloud January 2016 2016, Amazon Web Services, Inc. or its affiliates. All rights reserved. Notices This document is provided for informational purposes only.

More information

WhitePaper. Private Cloud Computing Essentials

WhitePaper. Private Cloud Computing Essentials Private Cloud Computing Essentials The 2X Private Cloud Computing Essentials This white paper contains a brief guide to Private Cloud Computing. Contents Introduction.... 3 About Private Cloud Computing....

More information

A Unified View of Network Monitoring. One Cohesive Network Monitoring View and How You Can Achieve It with NMSaaS

A Unified View of Network Monitoring. One Cohesive Network Monitoring View and How You Can Achieve It with NMSaaS A Unified View of Network Monitoring One Cohesive Network Monitoring View and How You Can Achieve It with NMSaaS Executive Summary In the past few years, the enterprise computing technology has changed

More information

The Private Cloud Your Controlled Access Infrastructure

The Private Cloud Your Controlled Access Infrastructure White Paper: Private Clouds The ongoing debate on the differences between a Public and Private Cloud are broad and often loud. The bottom line is that it s really about how the resource, or computing power,

More information

Cloudify and OpenStack Heat

Cloudify and OpenStack Heat Cloudify and OpenStack Heat General Cloudify is an application orchestration platform that provides a complete solution for automating and managing application deployment and DevOps processes on top of

More information

Solution White Paper Build the Right Cloud, Quickly

Solution White Paper Build the Right Cloud, Quickly Solution White Paper Build the Right Cloud, Quickly BMC Express Cloud Table of Contents 1 THE PROMISE OF CLOUD COMPUTING Getting Started 2 SUCCEEDING WITH CLOUD COMPUTING 3 INTRODUCING BMC EXPRESS CLOUD

More information

Market Maturity. Cloud Definitions

Market Maturity. Cloud Definitions HRG Assessment: Cloud Computing Provider Perspective In the fall of 2009 Harvard Research Group (HRG) interviewed selected Cloud Computing companies including SaaS (software as a service), PaaS (platform

More information

CLOUD IN HEALTHCARE EXECUTIVE SUMMARY 1/21/15

CLOUD IN HEALTHCARE EXECUTIVE SUMMARY 1/21/15 CLOUD IN HEALTHCARE CURRENT STATE AND STRATEGIES THAT IMPACT THE BOTTOM LINE EXECUTIVE SUMMARY As healthcare organizations struggle with competing priorities such as HITECH/ARRA, Meaningful Use, ICD-10,

More information

Alfresco Enterprise on AWS: Reference Architecture

Alfresco Enterprise on AWS: Reference Architecture Alfresco Enterprise on AWS: Reference Architecture October 2013 (Please consult http://aws.amazon.com/whitepapers/ for the latest version of this paper) Page 1 of 13 Abstract Amazon Web Services (AWS)

More information

Increased Security, Greater Agility, Lower Costs for AWS DELPHIX FOR AMAZON WEB SERVICES WHITE PAPER

Increased Security, Greater Agility, Lower Costs for AWS DELPHIX FOR AMAZON WEB SERVICES WHITE PAPER Increased Security, Greater Agility, Lower Costs for AWS DELPHIX FOR AMAZON WEB SERVICES TABLE OF CONTENTS Introduction... 3 Overview: Delphix Virtual Data Platform... 4 Delphix for AWS... 5 Decrease the

More information

I D C V E N D O R S P O T L I G H T. W o r k l o a d Management Enables Big Data B u s i n e s s Process Optimization

I D C V E N D O R S P O T L I G H T. W o r k l o a d Management Enables Big Data B u s i n e s s Process Optimization I D C V E N D O R S P O T L I G H T W o r k l o a d Management Enables Big Data B u s i n e s s Process Optimization November 2015 Adapted from Worldwide Workload Management Software Market Shares, 2014:

More information

Five More Myths About SaaS and Cloud Computing

Five More Myths About SaaS and Cloud Computing A For Senior Corporate Decision-Makers and Cloud Computing What You Really Should Know To Compete In Today s Rapidly Changing Marketplace An Independent analysis published on behalf of SoftServe. Executive

More information

Cloud models and compliance requirements which is right for you?

Cloud models and compliance requirements which is right for you? Cloud models and compliance requirements which is right for you? Bill Franklin, Director, Coalfire Stephanie Tayengco, VP of Technical Operations, Logicworks March 17, 2015 Speaker Introduction Bill Franklin,

More information

A Complete Open Cloud Storage, Virt, IaaS, PaaS. Dave Neary Open Source and Standards, Red Hat

A Complete Open Cloud Storage, Virt, IaaS, PaaS. Dave Neary Open Source and Standards, Red Hat A Complete Open Cloud Storage, Virt, IaaS, PaaS Dave Neary Open Source and Standards, Red Hat 1 Agenda 1. Traditional virtualization 2. The move to IaaS 3. Storage 4. PaaS, application encapsulation and

More information

Making the Transition. From ISV to SaaS. with Xterity Wholesale Cloud

Making the Transition. From ISV to SaaS. with Xterity Wholesale Cloud Making the Transition From ISV to SaaS with Xterity Wholesale Cloud CONTENTS: 1 The New Business Model...Page 3 2 Business Challenges...Page 5 3 Technology Challenges...Page 7 4 Xterity Wholesale Cloud...Page

More information

Fundamental Concepts and Models

Fundamental Concepts and Models Fundamental Concepts and Models 1 1. Roles and Boundaries Could provider The organization that provides the cloud based IT resources Cloud consumer An organization (or a human) that has a formal contract

More information

IT Operations Management: A Service Delivery Primer

IT Operations Management: A Service Delivery Primer IT Operations Management: A Service Delivery Primer Agile Service Delivery Creates Business Value Today, IT has to innovate at an ever- increasing pace to meet accelerating business demands. Rapid service

More information

Ironfan Your Foundation for Flexible Big Data Infrastructure

Ironfan Your Foundation for Flexible Big Data Infrastructure Ironfan Your Foundation for Flexible Big Data Infrastructure Benefits With Ironfan, you can expect: Reduced cycle time. Provision servers in minutes not days. Improved visibility. Increased transparency

More information

CHAPTER 8 CLOUD COMPUTING

CHAPTER 8 CLOUD COMPUTING CHAPTER 8 CLOUD COMPUTING SE 458 SERVICE ORIENTED ARCHITECTURE Assist. Prof. Dr. Volkan TUNALI Faculty of Engineering and Natural Sciences / Maltepe University Topics 2 Cloud Computing Essential Characteristics

More information

How To Make A Mobile Bridge Work For You

How To Make A Mobile Bridge Work For You MobileBridge ALLOWING BRANDS TO ENGAGE EXISTING AND POTENTIAL NEW AUDIENCES CUSTOMER SUCCESS STORY MobileBridge used Clustrix to grow beyond MySQL on its high-end AWS instance, which was struggling with

More information

BUSINESS MANAGEMENT SUPPORT

BUSINESS MANAGEMENT SUPPORT BUSINESS MANAGEMENT SUPPORT Business disadvantages using cloud computing? Author: Maikel Mardjan info@bm-support.org 2010 BM-Support.org Foundation. All rights reserved. EXECUTIVE SUMMARY Cloud computing

More information

White Paper. The Importance of Automating the End to End Pipeline for Continuous Delivery

White Paper. The Importance of Automating the End to End Pipeline for Continuous Delivery White Paper The Importance of Automating the End to End Pipeline for Continuous Delivery The Importance of Automating the End to End Pipeline for Continuous Delivery Executive Summary Continuous Delivery

More information

Hybrid Cloud Architecture: How to Streamline Hybrid Cloud Migration

Hybrid Cloud Architecture: How to Streamline Hybrid Cloud Migration Hybrid Cloud Architecture: How to Streamline Hybrid Cloud Migration Introduction According to a Nucleus Research report cloud applications deliver 1.7 times more return on investment on average over on-

More information

DevOps for the Cloud. Achieving agility throughout the application lifecycle. The business imperative of agility

DevOps for the Cloud. Achieving agility throughout the application lifecycle. The business imperative of agility DevOps for the Cloud Achieving agility throughout the application lifecycle We don t have to tell you that your company is under increasing pressure to respond more quickly to changing business conditions.

More information

Cloud.. Migration? Bursting? Orchestration? Vincent Lavergne SED EMEA, South Gary Newe Sr SEM EMEA, UKISA

Cloud.. Migration? Bursting? Orchestration? Vincent Lavergne SED EMEA, South Gary Newe Sr SEM EMEA, UKISA Cloud.. Migration? Bursting? Orchestration? Vincent Lavergne SED EMEA, South Gary Newe Sr SEM EMEA, UKISA Technology shifts center on applications Advanced threats APIs Internet of things Mobility SDDC/Cloud

More information

Cloud Hosting. QCLUG presentation - Aaron Johnson. Amazon AWS Heroku OpenShift

Cloud Hosting. QCLUG presentation - Aaron Johnson. Amazon AWS Heroku OpenShift Cloud Hosting QCLUG presentation - Aaron Johnson Amazon AWS Heroku OpenShift What is Cloud Hosting? According to the Wikipedia - 2/13 Cloud computing, or in simpler shorthand just "the cloud", focuses

More information

Cloud Benefits Elusive for CMOs Charged with Harnessing Big Data

Cloud Benefits Elusive for CMOs Charged with Harnessing Big Data Cloud Benefits Elusive for CMOs Charged with Harnessing Big Data Until Now A publication by: Introduction The analysts at Gartner made waves when they predicted that, by 2017, chief marketing officers

More information

Implementing Software- Defined Security with CloudPassage Halo

Implementing Software- Defined Security with CloudPassage Halo WHITE PAPER Implementing Software- Defined Security with CloudPassage Halo Introduction... 2 Implementing Software-Defined Security w/cloudpassage Halo... 3 Abstraction... 3 Automation... 4 Orchestration...

More information

5 Key Reasons to Migrate from Cisco ACE to F5 BIG-IP

5 Key Reasons to Migrate from Cisco ACE to F5 BIG-IP 5 Key Reasons to Migrate from Cisco ACE to F5 BIG-IP With support for Cisco ACE load balancer ending, organizations need to find an alternative. Contents Introduction 3 Advanced Architecture 3 Ease of

More information

All the benefits of Public Cloud on Private, Dedicated Infrastructure. Benefits. Enterprise-Level Security. High Performance. Compliant and Audited

All the benefits of Public Cloud on Private, Dedicated Infrastructure. Benefits. Enterprise-Level Security. High Performance. Compliant and Audited ActiveGrid Private Cloud Solutions Support any workload with incredible flexibility and security, combined with the peace of mind of an enterprise cloud platform. All signs point to continued cloud adoption

More information

Modern App Architecture for the Enterprise Delivering agility, portability and control with Docker Containers as a Service (CaaS)

Modern App Architecture for the Enterprise Delivering agility, portability and control with Docker Containers as a Service (CaaS) Modern App Architecture for the Enterprise Delivering agility, portability and control with Docker Containers as a Service (CaaS) Executive Summary Developers don t adopt locked down platforms. In a tale

More information

Why back up the Cloud?

Why back up the Cloud? Why back up the Cloud? The CloudBerry Lab Whitepaper The introduction Always backup your data, even if it is in the cloud. The 3-2-1 rule of data protection says keep three copies of your data, on two

More information

Intel IT Cloud Extending OpenStack* IaaS with Cloud Foundry* PaaS

Intel IT Cloud Extending OpenStack* IaaS with Cloud Foundry* PaaS Intel IT Cloud Extending OpenStack* IaaS with Cloud Foundry* PaaS Speaker: Catherine Spence, IT Principal Engineer, Cloud Computing Acknowledgements: Aaron Huber, Jon Price November 2014 Legal Notices

More information

Developing SAP Enterprise Cloud Computing Strategy

Developing SAP Enterprise Cloud Computing Strategy White Paper WFT Cloud Technology SAP Cloud Integration Service Provider Developing SAP Enterprise Cloud Computing Strategy SAP Cloud Computing is a significant IT paradigm change with the potential to

More information

DEVOPS: INNOVATIVE ENGINEERING PRACTICES FOR CONTINUOUS SOFTWARE DELIVERY

DEVOPS: INNOVATIVE ENGINEERING PRACTICES FOR CONTINUOUS SOFTWARE DELIVERY Accenture Architecture Services DEVOPS: INNOVATIVE ENGINEERING PRACTICES FOR CONTINUOUS SOFTWARE DELIVERY Development Operations WHAT IS DEVOPS? IT delivery supporting the new pace of business Over the

More information

Bridge Development and Operations for faster delivery of applications

Bridge Development and Operations for faster delivery of applications Technical white paper Bridge Development and Operations for faster delivery of applications HP Continuous Delivery Automation software Table of contents Application lifecycle in the current business scenario

More information

IAN MASSINGHAM. Technical Evangelist Amazon Web Services

IAN MASSINGHAM. Technical Evangelist Amazon Web Services IAN MASSINGHAM Technical Evangelist Amazon Web Services From 2014: Cloud computing has become the new normal Deploying new applications to the cloud by default Migrating existing applications as quickly

More information

Hybrid cloud on your terms: Dell Cloud Manager with Dell Hybrid Cloud System for Microsoft

Hybrid cloud on your terms: Dell Cloud Manager with Dell Hybrid Cloud System for Microsoft Hybrid on your terms: Dell Cloud Manager with Dell Hybrid Cloud System for Microsoft In an era of digital transformation, the future is hybrid Many organizations recognize the critical need to quickly

More information

I D C T E C H N O L O G Y S P O T L I G H T

I D C T E C H N O L O G Y S P O T L I G H T I D C T E C H N O L O G Y S P O T L I G H T AP M S a a S and An a l yt i c s S t e p U p t o Meet the N e e d s o f M odern Ap p l i c a t i o n s, M o b i le Users, a n d H yb r i d C l o ud Ar c h i

More information

Web Application Deployment in the Cloud Using Amazon Web Services From Infancy to Maturity

Web Application Deployment in the Cloud Using Amazon Web Services From Infancy to Maturity P3 InfoTech Solutions Pvt. Ltd http://www.p3infotech.in July 2013 Created by P3 InfoTech Solutions Pvt. Ltd., http://p3infotech.in 1 Web Application Deployment in the Cloud Using Amazon Web Services From

More information

High Performance Computing Cloud Computing. Dr. Rami YARED

High Performance Computing Cloud Computing. Dr. Rami YARED High Performance Computing Cloud Computing Dr. Rami YARED Outline High Performance Computing Parallel Computing Cloud Computing Definitions Advantages and drawbacks Cloud Computing vs Grid Computing Outline

More information

Lets SAAS-ify that Desktop Application

Lets SAAS-ify that Desktop Application Lets SAAS-ify that Desktop Application Chirag Jog Clogeny 1 About me o Chirag Jog o Computer Science Passout, PICT o Currently CTO at Clogeny Technologies. o Working on some cutting-edge Products in Cloud

More information

WHITE PAPER. Automating Network Provisioning for Private Cloud

WHITE PAPER. Automating Network Provisioning for Private Cloud WHITE PAPER Automating Network Provisioning for Private Cloud Executive Summary Roughly 80 percent of all enterprise IT today is virtualized. Virtualization is a key enabler in deploying private clouds

More information

vision realize your software-defined with the Digital Data Center from Atos Whitepaper

vision realize your software-defined with the Digital Data Center from Atos Whitepaper realize your software-defined vision with the Digital Data Center from Atos Whitepaper Revolutionize agility and flexibility. Accelerate time to market. Mitigate risk without inhibiting innovation. Reduce

More information

The Business Case for the Enterprise Cloud ISSUE I

The Business Case for the Enterprise Cloud ISSUE I The Business Case for the Enterprise Cloud ISSUE I INSIDE THIS ISSUE Welcome 3 Enterprise vs. Commodity Cloud Use Cases 5 Baseline Infrastructure Services and Support 6 Automation 7 Management & Role-Based

More information

Data Center Migration to the Cloud

Data Center Migration to the Cloud Data Center Migration to the Cloud Approach & Key Considerations By: Taylor Bird, Principal Architect - Cloud Solutions, at Nimbo March 2015 Abstract Migrating IT systems and infrastructure to a private

More information

Using Cloud Services for Building Next Generation Mobile Apps

Using Cloud Services for Building Next Generation Mobile Apps Using Cloud Services for Building Next Generation Mobile Apps appcelerator.com Executive Summary Enterprises are in the midst of a major transformation as it relates to their interaction with customers,

More information

Enterprise Cloud Security via DevSecOps

Enterprise Cloud Security via DevSecOps SESSION ID: ASD-T08 Enterprise Cloud via DevSecOps Shannon Leitz Sr Mgr, Cloud & DevSecOps Leader Intuit Information @devsecops Scott C Kennedy Scientist Intuit Information @scknogas Agenda Who we are

More information

Relocating Windows Server 2003 Workloads

Relocating Windows Server 2003 Workloads Relocating Windows Server 2003 Workloads An Opportunity to Optimize From Complex Change to an Opportunity to Optimize There is much you need to know before you upgrade to a new server platform, and time

More information

Creating the open cloud

Creating the open cloud WHITE PAPER Creating the open cloud May 2012 Copyright Canonical 2012 www.canonical.com Contents INTRODUCTION 03 WHY THE OPEN CLOUD? 03 USING A PUBLIC CLOUD 04 Cutting complexity with cloud-init 04 Ensure

More information

Cloud computing - Architecting in the cloud

Cloud computing - Architecting in the cloud Cloud computing - Architecting in the cloud anna.ruokonen@tut.fi 1 Outline Cloud computing What is? Levels of cloud computing: IaaS, PaaS, SaaS Moving to the cloud? Architecting in the cloud Best practices

More information

Data voice network cloud. On the most critical Of missions. Yours

Data voice network cloud. On the most critical Of missions. Yours Data voice network cloud On the most critical Of missions. Yours When failure is not an option. Let s face it IT is the lifeblood of your business. Big or small, global or local your Business relies on

More information

CUMULUX WHICH CLOUD PLATFORM IS RIGHT FOR YOU? COMPARING CLOUD PLATFORMS. Review Business and Technology Series www.cumulux.com

CUMULUX WHICH CLOUD PLATFORM IS RIGHT FOR YOU? COMPARING CLOUD PLATFORMS. Review Business and Technology Series www.cumulux.com ` CUMULUX WHICH CLOUD PLATFORM IS RIGHT FOR YOU? COMPARING CLOUD PLATFORMS Review Business and Technology Series www.cumulux.com Table of Contents Cloud Computing Model...2 Impact on IT Management and

More information

Choosing the Right Service Provider for Cloud Infrastructure Outsourcing

Choosing the Right Service Provider for Cloud Infrastructure Outsourcing Choosing the Right Service Provider for Cloud Infrastructure Outsourcing Paul Burns January 29, 2015 This report is underwritten by QTS. TABLE OF CONTENTS Executive Summary... 3 The Case for Cloud... 4

More information

Case Study: D+M Group Cloud Consolidation: Migrating 15 physical data centers into three private clouds

Case Study: D+M Group Cloud Consolidation: Migrating 15 physical data centers into three private clouds Case Study: D+M Group Cloud Consolidation: Migrating 15 physical data centers into three private clouds Operational Impact and Benefits: Consolidate 15 data centers down to three private clouds Reduce

More information

Case Study. Cloud Adoption, Fault Tolerant AWS Support & Magento ecommerce Implementation. Case Study

Case Study. Cloud Adoption, Fault Tolerant AWS Support & Magento ecommerce Implementation. Case Study Cloud Adoption, Fault Tolerant AWS Support & Magento ecommerce Implementation World s Largest Publisher of Medical and Scientific Literature 1 2013 Compunnel Software Group Cloud Adoption, Fault Tolerant

More information

Technical Aspects to GIS in the Cloud

Technical Aspects to GIS in the Cloud Technical Aspects to GIS in the Cloud Nathan Watermeier State GIS Coordinator State of Nebraska OCIO Michael Schonlau GIS Manager Douglas County 2013 NSGIC Annual Meeting October 30, 2013 NebraskaMAP.gov

More information

Leveraging Public Cloud for Affordable VMware Disaster Recovery & Business Continuity

Leveraging Public Cloud for Affordable VMware Disaster Recovery & Business Continuity White Paper White Paper Managing Public Cloud Computing in the Enterprise Leveraging Public Cloud for Affordable VMware Disaster Recovery & Business Continuity A Quick Start Guide By Edward Haletky Principal

More information

Cloud Training Portal. Trainings. Process Guide. October 2012 ECPG-3. Version 1.2

Cloud Training Portal. Trainings. Process Guide. October 2012 ECPG-3. Version 1.2 Cloud Training Portal Trainings Process Guide October 2012 ECPG-3 Version 1.2 Content Content... 2 1. PREFACE... 3 1.1. About this Guide... 3 1.2. Trainers and Contacts... 3 1.3. Audience... 3 1.4. Typographic

More information

RightScale mycloud with Eucalyptus

RightScale mycloud with Eucalyptus Swiftly Deploy Private and Hybrid Clouds with a Single Pane of Glass View into Cloud Infrastructure Enable Fast, Easy, and Robust Cloud Computing with RightScale and Eucalyptus Overview As organizations

More information

WHITE PAPER OCTOBER 2014. Unified Monitoring. A Business Perspective

WHITE PAPER OCTOBER 2014. Unified Monitoring. A Business Perspective WHITE PAPER OCTOBER 2014 Unified Monitoring A Business Perspective 2 WHITE PAPER: UNIFIED MONITORING ca.com Table of Contents Introduction 3 Section 1: Today s Emerging Computing Environments 4 Section

More information

Optimizing Service Levels in Public Cloud Deployments

Optimizing Service Levels in Public Cloud Deployments WHITE PAPER OCTOBER 2014 Optimizing Service Levels in Public Cloud Deployments Keys to Effective Service Management 2 WHITE PAPER: OPTIMIZING SERVICE LEVELS IN PUBLIC CLOUD DEPLOYMENTS ca.com Table of

More information

Accelerating Time to Market:

Accelerating Time to Market: Accelerating Time to Market: Application Development and Test in the Cloud Paul Speciale, Savvis Symphony Product Marketing June 2010 HOS-20100608-GL-Accelerating-Time-to-Market-Dev-Test-Cloud 1 Software

More information

Transtream Plug & Play ecommerce Shipping

Transtream Plug & Play ecommerce Shipping WHITE PAPER 2015 Transtream Plug & Play ecommerce Shipping 1 Executive Summary Notwithstanding middleware vendors claims to the contrary, there is no getting around it: systems integration is hard. And

More information

Modern Application Architecture for the Enterprise

Modern Application Architecture for the Enterprise Modern Application Architecture for the Enterprise Delivering agility, portability and control with Docker Containers as a Service (CaaS) Executive Summary Developers don t adopt locked down platforms.

More information

Critical Step On the Journey toward the Private Cloud: Analyzing the future

Critical Step On the Journey toward the Private Cloud: Analyzing the future Critical Step On the Journey toward the Private Cloud: Analyzing the future Dr. Madhumita Dash, Professor[madhumitadash44@yahoo.com] Mr. R N Panda, Assistant Professor, DSMS[rnpanda2007@gmail.com] Abstract

More information

USER CONFERENCE 2011 SAN FRANCISCO APRIL 26 29. Running MarkLogic in the Cloud DEVELOPER LOUNGE LAB

USER CONFERENCE 2011 SAN FRANCISCO APRIL 26 29. Running MarkLogic in the Cloud DEVELOPER LOUNGE LAB USER CONFERENCE 2011 SAN FRANCISCO APRIL 26 29 Running MarkLogic in the Cloud DEVELOPER LOUNGE LAB Table of Contents UNIT 1: Lab description... 3 Pre-requisites:... 3 UNIT 2: Launching an instance on EC2...

More information

Guide to AWS. Brought to you by

Guide to AWS. Brought to you by Guide to AWS Brought to you by Welcome to Ingram Micro Cloud For more than 35 years, Ingram Micro a Fortune 100 company with $30 billion in annual revenue has been successfully connecting IT technology

More information

Deploying Your Application On Public Cloud

Deploying Your Application On Public Cloud #GHC14 Deploying Your Application On Public Cloud Egle Sigler @eglute Iccha Sethi @IcchaSethi October 9, Egle Sigler Principal Architect at Rackspace Works with OpenStack POWER: Professional Organization

More information

Managing the Cloud as an Incremental Step Forward

Managing the Cloud as an Incremental Step Forward WP Managing the Cloud as an Incremental Step Forward How brings cloud services into your IT infrastructure in a natural, manageable way white paper INFO@SERVICE-NOW.COM Table of Contents Accepting the

More information

Enterprise Cloud Use Cases and Security Considerations

Enterprise Cloud Use Cases and Security Considerations Enterprise Cloud Use Cases and Security Considerations Carson Sweet! CEO, CloudPassage! For This Discussion We re talking about cloud infrastructure! Cloud-oriented infrastructure delivery Infrastructure

More information

Relational Databases in the Cloud

Relational Databases in the Cloud Contact Information: February 2011 zimory scale White Paper Relational Databases in the Cloud Target audience CIO/CTOs/Architects with medium to large IT installations looking to reduce IT costs by creating

More information

The State of Application Delivery in 2015

The State of Application Delivery in 2015 The State of Application Delivery in 2015 a report by F5 f5.com/soad 1 Introduction F5 surveyed customers from more than 300 organizations (of all sizes) across a broad spectrum of vertical markets such

More information

Easy Deployment of Mission-Critical Applications to the Cloud

Easy Deployment of Mission-Critical Applications to the Cloud Easy Deployment of Mission-Critical Applications to the Cloud Businesses want to move to the cloud to gain agility and reduce costs. But if your app needs re-architecting or new code that s neither easy

More information

EXTENDING SINGLE SIGN-ON TO AMAZON WEB SERVICES

EXTENDING SINGLE SIGN-ON TO AMAZON WEB SERVICES pingidentity.com EXTENDING SINGLE SIGN-ON TO AMAZON WEB SERVICES Best practices for identity federation in AWS Table of Contents Executive Overview 3 Introduction: Identity and Access Management in Amazon

More information

How To Manage A Cloud System

How To Manage A Cloud System Understanding Enterprise Cloud Management What You Need to Know About Managing Your Cloud Applications Enterprise Cloud Management New applications, driven largely by the economics of cloud computing,

More information

New World of Customer Expectations

New World of Customer Expectations New World of Customer Expectations The Agile Enterprise The Agile Enterprise Jerry Gregoire, the CIO of Dell Computers, said it best Customer Service is the next competitive battleground. We have entered

More information

Servers. Servers. NAT Public Subnet: 172.30.128.0/20. Internet Gateway. VPC Gateway VPC: 172.30.0.0/16

Servers. Servers. NAT Public Subnet: 172.30.128.0/20. Internet Gateway. VPC Gateway VPC: 172.30.0.0/16 .0 Why Use the Cloud? REFERENCE MODEL Cloud Development April 0 Traditionally, deployments require applications to be bound to a particular infrastructure. This results in low utilization, diminished efficiency,

More information

Trust issues. 68 Computer News Middle East november 2014 www.cnmeonline.com

Trust issues. 68 Computer News Middle East november 2014 www.cnmeonline.com Trust issues Storing data in the public cloud can be both convenient and cost-effective. However, shared access to stored information can be a nerve-wracking prospect for some users. Vendors can do some

More information

Media on AWS. Consulting, DevOps & Managed Services. www.cloudcover.in sales@cloudcover.in

Media on AWS. Consulting, DevOps & Managed Services. www.cloudcover.in sales@cloudcover.in Media on AWS Consulting, DevOps & Managed Services 1 Trusted, Focused, Cloud Led Parent Company: ActivElement Software Years in Existence: 12+ years ActivElement architecting, developing, migrating, optimizing

More information

CLOUD DEVELOPMENT BEST PRACTICES & SUPPORT APPLICATIONS

CLOUD DEVELOPMENT BEST PRACTICES & SUPPORT APPLICATIONS whitepaper CLOUD DEVELOPMENT BEST PRACTICES & SUPPORT APPLICATIONS - Cloud Development Best Practices and Support Applications CLOUD DEVELOPMENT BEST PRACTICES 1 Cloud-based solutions are increasingly

More information

How AWS Pricing Works

How AWS Pricing Works How AWS Pricing Works (Please consult http://aws.amazon.com/whitepapers/ for the latest version of this paper) Page 1 of 15 Table of Contents Table of Contents... 2 Abstract... 3 Introduction... 3 Fundamental

More information

NEXT-GENERATION, CLOUD-BASED SERVER MONITORING AND SYSTEMS MANAGEMENT

NEXT-GENERATION, CLOUD-BASED SERVER MONITORING AND SYSTEMS MANAGEMENT NEXT-GENERATION, CLOUD-BASED SERVER MONITORING AND SYSTEMS MANAGEMENT COVERS INTRODUCTION A NEW APPROACH CUSTOMER USE CASES FEATURES ARCHITECTURE V 1.0 INTRODUCTION & OVERVIEW Businesses use computers

More information

WHITEPAPER. Beyond Infrastructure Virtualization Platform Virtualization, PaaS and DevOps

WHITEPAPER. Beyond Infrastructure Virtualization Platform Virtualization, PaaS and DevOps WHITEPAPER Beyond Infrastructure Virtualization Platform Virtualization, PaaS and DevOps Table of Contents 3 Business Demands and IT Challenges 6 State of the Art 6 Use Case: Large Bank 7 Use Case: Large

More information