In this recipe, we will get the Azure CLI tool called az and kubectl installed.
Let's perform the following steps:
- Install the necessary dependencies:
$ sudo apt-get update && sudo apt-get install -y libssl-dev \
libffi-dev python-dev build-essential
- Download and install the az CLI tool:
$ curl -L https://aka.ms/InstallAzureCli | bash
- Verify the az version you're using:
$ az --version
- Install kubectl, if you haven't installed it already:
$ az aks install-cli
If all commands were successful, you can start provisioning your AKS cluster.