Updated dependencies

This commit is contained in:
Christian Huffman
2020-06-10 15:09:17 -04:00
parent 58bd3e5230
commit e65f0f565a
19 changed files with 358 additions and 181 deletions

View File

@@ -452,6 +452,8 @@ func validateStorageCapacity(storageCapacity *bool, fldPath *field.Path) field.E
if storageCapacity == nil && utilfeature.DefaultFeatureGate.Enabled(features.CSIStorageCapacity) {
allErrs = append(allErrs, field.Required(fldPath, ""))
}
return allErrs
}
var supportedFSGroupPolicy = sets.NewString(string(storage.ReadWriteOnceWithFSTypeFSGroupPolicy), string(storage.FileFSGroupPolicy), string(storage.NoneFSGroupPolicy))