Home > Blockchain >  What is default value of allowVolumeExpansion on the default storage class in kubernetes
What is default value of allowVolumeExpansion on the default storage class in kubernetes

Time:01-07

What is the default value for the allowVolumeExpansion? I create my volumes through a statefulset from apiVersion: apps/v1 volumeClaimTemplates In the case that the answer is false how to I change it to true?

potentially relevant info: the cluster running on GKE autopilot

CodePudding user response:

You can find out by looking into the StorageClass that your claim is using kubectl describe StorageClass <name>

volumeClaimTemplates:
- ...
  spec:
    storageClassName: <name>  # <-- check using this name

Recent version of GKE the default is true. More about this field can be found here.

  •  Tags:  
  • Related