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.
1 parent aedf40b commit 60f989cCopy full SHA for 60f989c
pkg/webhook/preflight/nutanix/image.go
@@ -73,12 +73,11 @@ func (n *nutanixChecker) vmImageCheck(
73
}
74
75
if machineDetails.ImageLookup != nil {
76
- result.Allowed = false
77
- result.Error = true
78
- result.Causes = append(result.Causes, preflight.Cause{
79
- Message: "ImageLookup is not yet supported",
80
- Field: field,
81
- })
+ result.Allowed = true
+ result.Warnings = append(
+ result.Warnings,
+ fmt.Sprintf("%s uses imageLookup, which is not yet supported by checks", field),
+ )
82
return result
83
84
0 commit comments