Launching Kubernetes in Microsoft Azure
In Chapter 1, The Serverless Landscape, we looked at Microsoft Azure Functions; however, we did not progress much further than the Azure web interface to launch our Function. To use the Azure Container Service (AKS) we will need to install the Azure command-line client.
It is also worth pointing out at this time that the AKS does not currently support the Windows 10 PowerShell Azure tools. However, if you are using Windows do not worry, as the Linux version of the command-line client is available through the Azure web interface.
Preparing the Azure command-line tools
The Azure command-line tools are available through Homebrew on macOS High Sierra, which makes installing as easy as running the following two commands:
$ brew update $ brew install azure-cli
Ubuntu 17.04 users can run the following commands:
$ echo "deb [arch=amd64] https://packages.microsoft.com/repos/azure-cli/ wheezy main" | sudo tee /etc/apt/sources.list.d/azure-cli.list $ sudo apt-key adv...