You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
field.Required(field.NewPath("spec").Child("fileNameConversions"), "Please specify a value for fileNameConversions. Values can be a filename convert pattern or NONE"))
159
164
}
165
+
ifr.Spec.TotalSize=="" {
166
+
*allErrs=append(*allErrs,
167
+
field.Required(field.NewPath("spec").Child("totalSize"), "When the storage is not UNLIMITED the Total Size must be specified"))
168
+
}
169
+
ifr.Spec.TempSize=="" {
170
+
*allErrs=append(*allErrs,
171
+
field.Required(field.NewPath("spec").Child("tempSize"), "When the storage is not UNLIMITED the Temp Size must be specified"))
0 commit comments