[English Below]
Bonjour,
Dans cet article, je vais vous présenter comment créer un cluster AKS en utilisant des machines virtuelles de type gen2.
L’avantage d’utiliser des machines de types Gen2 est de pouvoir bénécifier de fonctionnalités de sécurité comme:
- Intel Software Guard Extensions (Intel SGX)
- virtualized persistent memory (vPMEM)
- https://docs.microsoft.com/en-us/azure/virtual-machines/windows/generation-2
Pour cela, je vous invite à saisir les commandes suivantes depuis Azure Cloud Shell par exemple (https://shell.azure.com)
az feature register --name "Gen2VMPreview" --namespace "Microsoft.ContainerService"
# wait for the feature to register
az feature show --name Gen2VMPreview --namespace "Microsoft.ContainerService"
# Re-register the AKS namespace by performing the below
az provider register --namespace 'Microsoft.ContainerService'
# Finally create the cluster
az aks create -n aks -g aks -s Standard_D2s_v3 --aks-custom-headers usegen2vm=true
Maxime.
Hello,
In this article, I would like to share with you how you can create an AKS cluster with gen2 virtual machines.
With Azure Gen2 Virtual Machines, you can use advance security features like:
- Intel Software Guard Extensions (Intel SGX)
- virtualized persistent memory (vPMEM)
- https://docs.microsoft.com/en-us/azure/virtual-machines/windows/generation-2
From Azure Cloud Shell (https://shell.azure.com), please use this commands:
az feature register --name "Gen2VMPreview" --namespace "Microsoft.ContainerService" # wait for the feature to register az feature show --name Gen2VMPreview --namespace "Microsoft.ContainerService" # Re-register the AKS namespace by performing the below az provider register --namespace 'Microsoft.ContainerService' # Finally create the cluster az aks create -n aks -g aks -s Standard_D2s_v3 --aks-custom-headers usegen2vm=true
Maxime.