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
Copy file name to clipboardExpand all lines: articles/aks/learn/quick-windows-container-deploy-cli.md
+2-36Lines changed: 2 additions & 36 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -80,7 +80,7 @@ To run an AKS cluster that supports node pools for Windows Server containers, yo
80
80
> [!NOTE]
81
81
> To ensure your cluster to operate reliably, you should run at least 2 (two) nodes in the default node pool.
82
82
83
-
Create a username to use as administrator credentials for the Windows Server nodes on your cluster. The following commands prompt you for a username and sets it to *WINDOWS_USERNAME* for use in a later command (remember that the commands in this article are entered into a BASH shell).
83
+
Create a username to use as administrator credentials for the Windows Server nodes on your cluster. The following commands prompt you for a username and set it to *WINDOWS_USERNAME* for use in a later command (remember that the commands in this article are entered into a BASH shell).
84
84
85
85
```azurecli-interactive
86
86
echo "Please enter the username to use as administrator credentials for Windows Server nodes on your cluster: " && read WINDOWS_USERNAME
@@ -124,44 +124,10 @@ az aks nodepool add \
124
124
125
125
The above command creates a new node pool named *npwin* and adds it to the *myAKSCluster*. The above command also uses the default subnet in the default vnet created when running `az aks create`.
126
126
127
-
## Add a Windows Server 2022 node pool (preview)
127
+
## Add a Windows Server 2022 node pool
128
128
129
129
When creating a Windows node pool, the default operating system will be Windows Server 2019. To use Windows Server 2022 nodes, you will need to specify an OS SKU type of `Windows2022`.
130
130
131
-
[!INCLUDE [preview features callout](../includes/preview/preview-callout.md)]
132
-
133
-
### Install the `aks-preview` extension
134
-
135
-
You also need the *aks-preview* Azure CLI extension version `0.5.68` or later. Install the *aks-preview* Azure CLI extension by using the [az extension add][az-extension-add] command, or install any available updates by using the [az extension update][az-extension-update] command.
136
-
137
-
```azurecli-interactive
138
-
# Install the aks-preview extension
139
-
az extension add --name aks-preview
140
-
# Update the extension to make sure you have the latest version installed
141
-
az extension update --name aks-preview
142
-
```
143
-
144
-
### Register the `AKSWindows2022Preview` preview feature
145
-
146
-
To use the feature, you must also enable the `AKSWindows2022Preview` feature flag on your subscription.
147
-
148
-
Register the `AKSWindows2022Preview` feature flag by using the [az feature register][az-feature-register] command, as shown in the following example:
149
-
150
-
```azurecli-interactive
151
-
az feature register --namespace "Microsoft.ContainerService" --name "AKSWindows2022Preview"
152
-
```
153
-
154
-
It takes a few minutes for the status to show *Registered*. Verify the registration status by using the [az feature list][az-feature-list] command:
155
-
156
-
```azurecli-interactive
157
-
az feature list -o table --query "[?contains(name, 'Microsoft.ContainerService/AKSWindows2022Preview')].{Name:name,State:properties.state}"
158
-
```
159
-
160
-
When ready, refresh the registration of the *Microsoft.ContainerService* resource provider by using the [az provider register][az-provider-register] command:
161
-
162
-
```azurecli-interactive
163
-
az provider register --namespace Microsoft.ContainerService
164
-
```
165
131
> [!NOTE]
166
132
> Windows Server 2022 requires Kubernetes version "1.23.0" or higher.
Copy file name to clipboardExpand all lines: articles/aks/windows-faq.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
@@ -16,7 +16,7 @@ This article outlines some of the frequently asked questions and OS concepts for
16
16
17
17
## Which Windows operating systems are supported?
18
18
19
-
AKS uses Windows Server 2019 as the host OS version and only supports process isolation. Container images built by using other Windows Server versions are not supported. For more information, see [Windows container version compatibility][windows-container-compat].
19
+
AKS uses Windows Server 2019 and Windows Server 2022 as the host OS version and only supports process isolation. Container images built by using other Windows Server versions are not supported. For more information, see [Windows container version compatibility][windows-container-compat].
20
20
21
21
## Is Kubernetes different on Windows and Linux?
22
22
@@ -135,7 +135,7 @@ Yes, an ingress controller that supports Windows Server containers can run on Wi
135
135
136
136
## Can my Windows Server containers use gMSA?
137
137
138
-
Group-managed service account (gMSA) support is currently available in preview. See [Enable Group Managed Service Accounts (GMSA) for your Windows Server nodes on your Azure Kubernetes Service (AKS) cluster (Preview)](use-group-managed-service-accounts.md)
138
+
Group-managed service account (gMSA) support is generally available for Windows on AKS. See [Enable Group Managed Service Accounts (GMSA) for your Windows Server nodes on your Azure Kubernetes Service (AKS) cluster](use-group-managed-service-accounts.md)
139
139
140
140
## Can I use Azure Monitor for containers with Windows nodes and containers?
0 commit comments