You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> If no patch is specified, the cluster will automatically be upgraded to the specified minor version's latest GA patch. For example, setting `--kubernetes-version` to `1.21` will result in the cluster upgrading to `1.21.9`.
3
2
>
4
-
> When upgrading by alias minor version, only a higher minor version is supported. For example, upgrading from `1.20.x` to `1.20` will not trigger an upgrade to the latest GA `1.20` patch, but upgrading to `1.21` will trigger an upgrade to the latest GA `1.21` patch.
3
+
> If no patch is specified, the cluster automatically upgrades to the specified minor version's latest GA patch. For example, setting `--kubernetes-version` to `1.21` results in the cluster upgrading to `1.21.9`.
4
+
>
5
+
> For more information, see [Supported Kubernetes minor version upgrades in AKS](../../supported-kubernetes-versions.md#alias-minor-version).
Copy file name to clipboardExpand all lines: articles/aks/tutorial-kubernetes-deploy-application.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
title: Kubernetes on Azure tutorial - Deploy an application to Azure Kubernetes Service (AKS)
3
3
description: In this Azure Kubernetes Service (AKS) tutorial, you deploy a multi-container application to your cluster using images stored in Azure Container Registry.
4
4
ms.topic: tutorial
5
-
ms.date: 10/23/2023
5
+
ms.date: 11/02/2023
6
6
ms.custom: mvc
7
7
#Customer intent: As a developer, I want to learn how to deploy apps to an Azure Kubernetes Service (AKS) cluster so that I can deploy and run my own applications.
8
8
---
@@ -173,7 +173,7 @@ In this tutorial, you deployed a sample Azure application to a Kubernetes cluste
173
173
In the next tutorial, you learn how to use PaaS services for stateful workloads in Kubernetes.
174
174
175
175
> [!div class="nextstepaction"]
176
-
> Use PaaS services for stateful workloads in AKS
176
+
> [Use PaaS services for stateful workloads in AKS][aks-tutorial-paas]
Copy file name to clipboardExpand all lines: articles/aks/tutorial-kubernetes-prepare-acr.md
+13-10Lines changed: 13 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
title: Kubernetes on Azure tutorial - Create an Azure Container Registry and build images
3
3
description: In this Azure Kubernetes Service (AKS) tutorial, you create an Azure Container Registry instance and upload sample application container images.
#Customer intent: As a developer, I want to learn how to create and use a container registry so that I can deploy my own applications to Azure Kubernetes Service.
@@ -38,6 +38,9 @@ This tutorial requires Azure PowerShell version 5.9.0 or later. Run `Get-Install
38
38
39
39
Before creating an ACR instance, you need a resource group. An Azure resource group is a logical container into which you deploy and manage Azure resources.
40
40
41
+
> [!IMPORTANT]
42
+
> This tutorial uses *myResourceGroup* as a placeholder for the resource group name. If you want to use a different name, replace *myResourceGroup* with your own resource group name.
43
+
41
44
### [Azure CLI](#tab/azure-cli)
42
45
43
46
1. Create a resource group using the [`az group create`][az-group-create] command.
@@ -46,10 +49,10 @@ Before creating an ACR instance, you need a resource group. An Azure resource gr
46
49
az group create --name myResourceGroup --location eastus
47
50
```
48
51
49
-
2. Create an ACR instance using the [`az acr create`][az-acr-create] command and provide your own unique registry name. The registry name must be unique within Azure and contain 5-50 alphanumeric characters. The rest of this tutorial uses `<acrName>` as a placeholder for the container registry name. The *Basic* SKU is a cost-optimized entry point for development purposes that provides a balance of storage and throughput.
52
+
2. Create an ACR instance using the [`az acr create`][az-acr-create] command and provide your own unique registry name. The registry name must be unique within Azure and contain 5-50 alphanumeric characters. The rest of this tutorial uses an environment variable, `$ACRNAME`, as a placeholder for the container registry name. You can set this environment variable to your unique ACR name to use in future commands. The *Basic* SKU is a cost-optimized entry point for development purposes that provides a balance of storage and throughput.
50
53
51
54
```azurecli-interactive
52
-
az acr create --resource-group myResourceGroup --name <acrName> --sku Basic
55
+
az acr create --resource-group myResourceGroup --name $ACRNAME --sku Basic
53
56
```
54
57
55
58
### [Azure PowerShell](#tab/azure-powershell)
@@ -60,10 +63,10 @@ Before creating an ACR instance, you need a resource group. An Azure resource gr
2. Create an ACR instance using the [`New-AzContainerRegistry`][new-azcontainerregistry] cmdlet and provide your own unique registry name. The registry name must be unique within Azure and contain 5-50 alphanumeric characters. The rest of this tutorial uses `<acrName>` as a placeholder for the container registry name. The *Basic* SKU is a cost-optimized entry point for development purposes that provides a balance of storage and throughput.
66
+
2. Create an ACR instance using the [`New-AzContainerRegistry`][new-azcontainerregistry] cmdlet and provide your own unique registry name. The registry name must be unique within Azure and contain 5-50 alphanumeric characters. The rest of this tutorial uses an environment variable, `$ACRNAME`, as a placeholder for the container registry name. You can set this environment variable to your unique ACR name to use in future commands. The *Basic* SKU is a cost-optimized entry point for development purposes that provides a balance of storage and throughput.
@@ -76,9 +79,9 @@ Before creating an ACR instance, you need a resource group. An Azure resource gr
76
79
> In the following example, we don't build the `rabbitmq` image. This image is available from the Docker Hub public repository and doesn't need to be built or pushed to your ACR instance.
77
80
78
81
```azurecli-interactive
79
-
az acr build --registry <acrName> --image aks-store-demo/product-service:latest ./src/product-service/
80
-
az acr build --registry <acrName> --image aks-store-demo/order-service:latest ./src/order-service/
81
-
az acr build --registry <acrName> --image aks-store-demo/store-front:latest ./src/store-front/
82
+
az acr build --registry $ACRNAME --image aks-store-demo/product-service:latest ./src/product-service/
83
+
az acr build --registry $ACRNAME --image aks-store-demo/order-service:latest ./src/order-service/
84
+
az acr build --registry $ACRNAME --image aks-store-demo/store-front:latest ./src/store-front/
82
85
```
83
86
84
87
## List images in registry
@@ -88,7 +91,7 @@ Before creating an ACR instance, you need a resource group. An Azure resource gr
88
91
* View the images in your ACR instance using the [`az acr repository list`][az-acr-repository-list] command.
89
92
90
93
```azurecli-interactive
91
-
az acr repository list --name <acrName> --output table
94
+
az acr repository list --name $ACRNAME --output table
92
95
```
93
96
94
97
The following example output lists the available images in your registry:
@@ -106,7 +109,7 @@ Before creating an ACR instance, you need a resource group. An Azure resource gr
106
109
* View the images in your ACR instance using the [`Get-AzContainerRegistryRepository`][get-azcontainerregistryrepository] cmdlet.
Copy file name to clipboardExpand all lines: articles/aks/tutorial-kubernetes-upgrade-cluster.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
title: Kubernetes on Azure tutorial - Upgrade an Azure Kubernetes Service (AKS) cluster
3
3
description: In this Azure Kubernetes Service (AKS) tutorial, you learn how to upgrade an existing AKS cluster to the latest available Kubernetes version.
#Customer intent: As a developer or IT pro, I want to learn how to upgrade an Azure Kubernetes Service (AKS) cluster so that I can use the latest version of Kubernetes and features.
8
8
---
@@ -360,3 +360,4 @@ For more information on AKS, see the [AKS overview][aks-intro]. For guidance on
0 commit comments