Home > Blockchain >  How to attach a disk in Kubernetes cluster in azure (AKS)
How to attach a disk in Kubernetes cluster in azure (AKS)

Time:02-17

I have deploy my running application in aks i want to add a new disk (Harddisk of 30GB) but i dont know how to add it

I want to attach 3 disk

Here is details of AKS Node sizes Standard_DS2_v2 Node pools 1 node pool

Storage is default (default) kubernetes.io/azure-disk Delete WaitForFirstConsumer true

please tell me how to add it

CodePudding user response:

A persistent volume represents a piece of storage that has been provisioned for use with Kubernetes pods. A persistent volume can be used by one or many pods, and can be dynamically or statically provisioned.

This article shows you how to dynamically create persistent volumes with Azure disks for use by a single pod in an Azure Kubernetes Service (AKS) cluster.


But if your requirement is to share the persistent volume across the multiple nodes use Azure FileShare

This article shows you how to dynamically create an Azure Files share for use by multiple pods in an Azure Kubernetes Service (AKS) cluster.

  • Related