Etiket: AZURE
-
Restart an AKS Cluster
First we need to run these commands but it will require aks-preview extensions to run and will prompt you to install aks-preview. After the installation we can continue az aks stop –name myaksname –resource-group myresourcegroup Then we can watch its progress with az aks show –name myaksname –resource-group myresourcegroup And after a succesfull stop we…
-
Log in to Azure from CLI
We are gonna use powershell with this command and first we install Azure CLI Invoke-WebRequest -Uri https://aka.ms/installazurecliwindows -OutFile .AzureCLI.msi; Start-Process msiexec.exe -Wait -ArgumentList ‘/I AzureCLI.msi /quiet’; rm .AzureCLI.msi And after the installation of the client we are gonna login azure with this command below and enter credentials. az login