Book Image

Azure Architecture Explained

By : David Rendón, Brett Hargreaves
Book Image

Azure Architecture Explained

By: David Rendón, Brett Hargreaves

Overview of this book

Azure is a sophisticated technology that requires a detailed understanding to reap its full potential and employ its advanced features. This book provides you with a clear path to designing optimal cloud-based solutions in Azure, by delving into the platform's intricacies. You’ll begin by understanding the effective and efficient security management and operation techniques in Azure to implement the appropriate configurations in Microsoft Entra ID. Next, you’ll explore how to modernize your applications for the cloud, examining the different computation and storage options, as well as using Azure data solutions to help migrate and monitor workloads. You’ll also find out how to build your solutions, including containers, networking components, security principles, governance, and advanced observability. With practical examples and step-by-step instructions, you’ll be empowered to work on infrastructure-as-code to effectively deploy and manage resources in your environment. By the end of this book, you’ll be well-equipped to navigate the world of cloud computing confidently.
Table of Contents (20 chapters)
1
Part 1 – Effective and Efficient Security Management and Operations in Azure
5
Part 2 – Architecting Compute and Network Solutions
12
Part 3 – Making the Most of Infrastructure-as-Code for Azure

Working with Azure Container Instances

In this exercise, we will perform the following tasks:

  1. Create an Azure Container Registry instance.
  2. Push a container image to Azure Container Registry.
  3. Create an Azure Container Instance.
  4. Deploy ACI for WebApp.

Let’s begin!

Creating the Azure Container Registry instance

First, we will create an instance of Azure Container Registry (ACR), a managed registry service based on Docker Registry 2.0. Think of ACR as your private repository that allows you to share container images with your team.

You can leverage ACR to manage and build container images in Azure. You can pull images from ACR and target other Azure services, such as AKS, App Service, Batch, and Service Fabric.

Consider using ACR Tasks, a suite of ACR features, to automate the container image builds, updates to a container’s base image, or timers. ACR Tasks support various scenarios to build and maintain your container images:

    ...