az aks update -n -g --enable-azure-container-storage The deployment will take 10-15 minutes to complete. Install Azure Container Storage on specific node pools. If you want to install Azure Container Storage on specific node pools, follow these instructions.
The most common use of Azure Storage Accounts is to store binary data or Blobs (binary large objects). To do this, you need to create at least one storage Container within the Storage Account that you will be storing blobs within. To create storage containers within an existing Azure Storage Account, you can use the following command:
Install Az.Storage module. Install-Module Az.Storage -Repository PSGallery -Force For more information about how to install PowerShell modules, see Install the Azure PowerShell module. Connect to the account. Choose how you want your commands to obtain authorization to the storage account. Option 1: Obtain authorization by using Microsoft Entra ID The Get-AzStorageBlob cmdlet lists blobs in the specified container in an Azure storage account. Examples Example 1: Get a blob by blob name Get-AzStorageBlob -Container "ContainerName" -Blob blob* This command uses a blob name and wildcard to get a blob. Example 2: Get blobs in a container by using the pipeline Because in Azure portal, you're generating an account level sas-token, but in azure cli, you're actually generating a container level sas-token by using az storage container generate-sas. To generate an account level sas-token, you should use this azure cli command: az storage account generate-sas. The sample like below: .