diff --git a/test/e2e/upgrade/service/service.go b/test/e2e/upgrade/service/service.go index 076f50243f15..6e0476f0834d 100644 --- a/test/e2e/upgrade/service/service.go +++ b/test/e2e/upgrade/service/service.go @@ -49,7 +49,7 @@ func (t *UpgradeTest) Setup(f *framework.Framework) { infra, err := configClient.ConfigV1().Infrastructures().Get(context.Background(), "cluster", metav1.GetOptions{}) framework.ExpectNoError(err) // ovirt does not support service type loadbalancer because it doesn't program a cloud. - if infra.Status.PlatformStatus.Type == configv1.OvirtPlatformType || infra.Status.PlatformStatus.Type == configv1.KubevirtPlatformType || infra.Status.PlatformStatus.Type == configv1.LibvirtPlatformType || infra.Status.PlatformStatus.Type == configv1.VSpherePlatformType { + if infra.Status.PlatformStatus.Type == configv1.OvirtPlatformType || infra.Status.PlatformStatus.Type == configv1.KubevirtPlatformType || infra.Status.PlatformStatus.Type == configv1.LibvirtPlatformType || infra.Status.PlatformStatus.Type == configv1.VSpherePlatformType || infra.Status.PlatformStatus.Type == configv1.BareMetalPlatformType { t.unsupportedPlatform = true } if t.unsupportedPlatform {