maxVolumesPerNode=flag.Int64("maxvolumespernode",0,"limit of volumes per node")
workdir=flag.String("workdir","/csi-data-dir","Location where plugin will store configuration and directories")
afterLifespan=flag.Duration(
"afterlifespan",
time.Hour*12,
"Length of time to keep a volume after a request for deletion",
)
pruneInterval=flag.Duration(
"pruneinterval",
time.Second*5,
"Interval at which the background process looking to evict deleted volumes runs.",
)
headroom=flag.Float64(
"headroom",
0.1,
"Value between 0.0 and 1.0 (inclusive) that determines the percentage of space that should be attempted to be kept free in the underlying storage device",