Microsoft announced back in May of the Windows Server Containers support in Azure Kubernetes Service Preview
Finally we can run Windows containers on the AKS service. It’s still only in preview, but fingers crossed will be coming to General Availability soon.
Let’s take a look how that is setup.
Most of this is done through the Azure cli, I’m using powershell, but you can use what you wish, so first login to your subscription.
1. Login to your Azure subscription:
2. Register the Preview
Since the Windows Server containers is still in Preview, we need to tell Azure that we want to utilise this, we do this by using the az extension add command:
1
2
3
4
5
| # Install the aks-preview extension
az extension add --name aks-preview
# Update the extension to make sure you have the latest version installed
az extension update --name aks-preview
|
1
| az feature register --name WindowsPreview --namespace Microsoft.ContainerService
|
1
| az provider register --namespace Microsoft.ContainerService
|
3. Create our resource group
1
| az group create --name aks-windowspreview --location northeurope
|
4. Create the AKS cluster
1
2
3
4
5
6
7
8
9
10
| $PASSWORD_WIN="P@ssw0rd1234"
az aks create --resource-group aks-windowspreview --name myAKSCluster --node-count 1 `
--enable-addons monitoring `
--kubernetes-version 1.14.6 `
--generate-ssh-keys `
--windows-admin-password $PASSWORD_WIN `
--windows-admin-username azureuser `
--enable-vmss `
--network-plugin azure
|
Now lets create our Windows nodepool:
1
2
3
4
5
6
7
| az aks nodepool add `
--resource-group aks-windowspreview `
--cluster-name myAKSCluster `
--os-type Windows `
--name npwin `
--node-count 1 `
--kubernetes-version 1.14.6
|
Create the permissions to allow us to see the dashboard
1
| kubectl create clusterrolebinding kubernetes-dashboard -n kube-system --clusterrole=cluster-admin --serviceaccount=kube-system:kubernetes-dashboard
|
Get the credentials for the AKS cluster
1
| az aks get-credentials --resource-group myAKSCluster --name aks-windowspreview
|
Display the nodes
Apply our kubernetes file to spin up a Windows Container
1
| kubectl apply -f sample.yaml
|
Load the Kubnetes dashboard
1
| az aks browse --resource-group myAKSCluster --name aks-windowspreview
|
All in one
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
| $resourceGroup = 'aks-windowspreview'
$aksName = 'myAKSCluster'
az group create --name $resourceGroup --location northeurope
$PASSWORD_WIN="P@ssw0rd1234"
az aks create --resource-group $resourceGroup --name $aksName
--node-count 1 `
--enable-addons monitoring `
--kubernetes-version 1.14.6 `
--generate-ssh-keys `
--windows-admin-password $PASSWORD_WIN `
--windows-admin-username azureuser `
--enable-vmss `
--network-plugin azure
az aks nodepool add `
--resource-group $resourceGroup `
--cluster-name $aksName `
--os-type Windows `
--name npwin `
--node-count 1 `
--kubernetes-version 1.14.6
kubectl create clusterrolebinding kubernetes-dashboard -n kube-system --clusterrole=cluster-admin --serviceaccount=kube-system:kubernetes-dashboard
az aks get-credentials --resource-group $resourceGroup --name $aksName
kubectl get nodes
## Load the yaml file
kubectl apply -f sample.yaml
az aks browse --resource-group $resourceGroup --name $aksName
|