diff --git a/validate/validate.go b/validate/validate.go index 0d62a53ef..02cc8dcda 100644 --- a/validate/validate.go +++ b/validate/validate.go @@ -705,7 +705,7 @@ func (v *Validator) CheckLinuxResources() (errs error) { } for index := 0; index < len(r.Devices); index++ { switch r.Devices[index].Type { - case "a", "b", "c": + case "a", "b", "c", "": default: errs = multierror.Append(errs, fmt.Errorf("type of devices %s is invalid", r.Devices[index].Type)) }