title | description | author | ms.service | ms.topic | ms.date | ms.author | ms.custom |
---|---|---|---|---|---|---|---|
include file |
include file |
khdownie |
azure-container-storage |
include |
09/13/2023 |
kendownie |
include file |
Follow these instructions to install Azure Container Storage on your AKS cluster using an installation script.
-
Run the
az login
command to sign in to Azure. -
Download and save this shell script.
-
Navigate to the directory where the file is saved using the
cd
command. For example,cd C:\Users\Username\Downloads
. -
Run the following command to change the file permissions:
chmod +x acstor-install.sh
-
Run the installation script and specify the parameters.
Flag Parameter Description -s --subscription The subscription identifier. Defaults to the current subscription. -g --resource-group The resource group name. -c --cluster-name The name of the cluster where Azure Container Storage is to be installed. -n --nodepool-name The name of the nodepool. Defaults to the first nodepool in the cluster. -r --release-train The release train for the installation. Defaults to stable. For example:
bash ./acstor-install.sh -g <resource-group-name> -s <subscription-id> -c <cluster-name> -n <nodepool-name> -r <release-train-name>
Installation takes 10-15 minutes to complete. You can check if the installation completed correctly by running the following command and ensuring that provisioningState
says Succeeded:
az k8s-extension list --cluster-name <cluster-name> --resource-group <resource-group> --cluster-type managedClusters
Congratulations, you've successfully installed Azure Container Storage. You now have new storage classes that you can use for your Kubernetes workloads.