We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7429566 + 6877a2b commit e8b59afCopy full SHA for e8b59af
test/e2e_node/e2e_node_suite_test.go
@@ -193,8 +193,12 @@ func TestE2eNode(t *testing.T) {
193
klog.Exitf("chroot %q failed: %v", rootfs, err)
194
}
195
196
- if _, err := system.ValidateSpec(*spec, "remote"); len(err) != 0 {
197
- klog.Exitf("system validation failed: %v", err)
+ warns, errs := system.ValidateSpec(*spec, "remote")
+ if len(warns) != 0 {
198
+ klog.Warningf("system validation warns: %v", warns)
199
+ }
200
+ if len(errs) != 0 {
201
+ klog.Exitf("system validation failed: %v", errs)
202
203
return
204
0 commit comments