Skip to content

Commit 395c584

Browse files
authored
Was not checking if KubeVirt CRD was not installed (#1408)
By not checking and checking the live migration check box in the plan, it would error out making the plan not ready. This would only happen if kubevirt was not installed. This PR fixes this by checking if the error is that the CRD does not exist and it will return nil instead of erroring out. Signed-off-by: Alexander Wels <[email protected]>
1 parent cf2103b commit 395c584

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

pkg/controller/migplan/validation.go

+4
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ import (
2222
"github.com/opentracing/opentracing-go"
2323
kapi "k8s.io/api/core/v1"
2424
k8serror "k8s.io/apimachinery/pkg/api/errors"
25+
"k8s.io/apimachinery/pkg/api/meta"
2526
"k8s.io/apimachinery/pkg/fields"
2627
k8sLabels "k8s.io/apimachinery/pkg/labels"
2728
"k8s.io/apimachinery/pkg/runtime"
@@ -1692,6 +1693,9 @@ func (r *ReconcileMigPlan) validateKubeVirtInstalled(ctx context.Context, client
16921693
}
16931694
kubevirtList := &virtv1.KubeVirtList{}
16941695
if err := client.List(ctx, kubevirtList); err != nil {
1696+
if meta.IsNoMatchError(err) {
1697+
return nil
1698+
}
16951699
return liberr.Wrap(err)
16961700
}
16971701
if len(kubevirtList.Items) == 0 || len(kubevirtList.Items) > 1 {

0 commit comments

Comments
 (0)