Book Image

Building Hybrid Clouds with Azure Stack

Book Image

Building Hybrid Clouds with Azure Stack

Overview of this book

Azure Stack is all about creating fewer gaps between on-premise and public cloud application deployment. Azure Stack is the logical progression of Microsoft Cloud Services to create a true hybrid cloud-ready application. This book provides an introduction to Azure Stack and the cloud-first approach. Starting with an introduction to the architecture of Azure Stack, the book will help you plan and deploy your Azure Stack. Next, you will learn about the network and storage options in Azure Stack and you'll create your own private cloud solution. Finally, you will understand how to integrate public cloud using the third-party resource provider. After reading the book, you will have a good understanding of the end-to-end process of designing, offering, and supporting cloud solutions for enterprises or service providers.
Table of Contents (19 chapters)
Title Page
Credits
About the Authors
About the Reviewer
www.PacktPub.com
Customer Feedback
Preface

Understanding deployment of virtual machines in Azure Stack


There are two basic ways to provision a virtual machine. You may use the Marketplace at Azure Stack portal. If you go to Marketplace | Virtual Machines—you are able to offer your end user pre-defined virtual machines that are based on a (sysprepped) VHD with OS like Microsoft Windows Server 2012 R2 or Linux Ubuntu Server. You define which resources are available and/or required—like NIC for a virtual machine or in case of a multi-service application the required configuration settings. The end user has to use the gallery item as it is.

The alternative is to create Azure Resource templates and deploy them using PowerShell or CLI. This approach allows for automation of deployment and offers greater flexibility in (combining) resources offered.

An overview of the steps required to create and deploy an image of your choice using those different approaches are as follows:

Preparing (sysprepped) VHD for Windows and Linux OS

Many of us might...