Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Azure Containers Explained

You're reading from   Azure Containers Explained Leverage Azure container technologies for effective application migration and deployment

Arrow left icon
Product type Paperback
Published in Mar 2023
Publisher Packt
ISBN-13 9781803231051
Length 278 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Authors (2):
Arrow left icon
Wesley Haakman Wesley Haakman
Author Profile Icon Wesley Haakman
Wesley Haakman
Richard Hooper Richard Hooper
Author Profile Icon Richard Hooper
Richard Hooper
Arrow right icon
View More author details
Toc

Table of Contents (22) Chapters Close

Preface 1. Part 1: Understanding Azure Container Technologies
2. Chapter 1: Azure Containers – Pleased to Meet You FREE CHAPTER 3. Chapter 2: Azure App Service – Running a Container Was Never That Difficult 4. Chapter 3: Deploying Containers to Azure Functions 5. Chapter 4: Azure Container Instances for Serverless Containers 6. Chapter 5: Azure Container Apps for Serverless Kubernetes 7. Chapter 6: Azure Kubernetes Service for Kubernetes in the Cloud 8. Part 2: Choosing and Applying the Right Technology
9. Chapter 7: The Single Container Use Case 10. Chapter 8: Deciding the Best Fitting Azure Technologies for Multiple Containers 11. Chapter 9: Container Technologies for Startups 12. Chapter 10: Container Technologies for Small and Medium-Sized Businesses 13. Chapter 11: Container Technologies for Enterprises 14. Part 3: Migrating Between Technologies and Beyond
15. Chapter 12: Migrating Between Container Technologies 16. Chapter 13: Azure Container Instances – I Like the Scalability But I Need More 17. Chapter 14: Beyond Azure Container Apps 18. Chapter 15: Azure Kubernetes Service – The Next Steps 19. Chapter 16: What’s Next – Diving into Future Trends and More 20. Index 21. Other Books You May Enjoy

Deploying containers to AKS

Before we start deploying the actual AKS resources, we need that place for our cluster to live again. Let’s create a resource group using the following command:

az group create `
  --name rg-aks `
  --location westeurope

Once the resource group is created, we should see similar output to that shown in Figure 6.2, stating that the provisioning of our resource group succeeded.

Figure 6.2 – Resource group creation

Figure 6.2 – Resource group creation

Now that we have verified that the resource group is there, let’s create an AKS cluster! For this, we will be using only a few parameters. However, please note that when you want to add more features and go all out, the set of parameters may grow significantly:

az aks create `
--location westeurope `
--resource-group rg-aks `
--name aks `
--generate-ssh-keys

This command will create an AKS cluster in the westeurope region in your designated resource group. The cluster...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime