Skip to content

Commit

Permalink
E2E tests with EKS - only EKS
Browse files Browse the repository at this point in the history
  • Loading branch information
Slava Lysunkin committed Nov 19, 2024
1 parent 5e87262 commit 29c698c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion test/e2e/provider_aws_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ var _ = Describe("AWS Templates", Label("provider:cloud", "provider:aws"), Order
}
})

It("should work with an AWS provider", func() {
XIt("should work with an AWS provider", func() {
// Deploy a standalone cluster and verify it is running/ready.
// Deploy standalone with an xlarge instance since it will also be
// hosting the hosted cluster.
Expand Down
4 changes: 2 additions & 2 deletions test/e2e/provider_azure_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import (
"github.com/Mirantis/hmc/test/utils"
)

var _ = Context("Azure Templates", Label("provider:cloud", "provider:azure"), Ordered, func() {
var _ = XContext("Azure Templates", Label("provider:cloud", "provider:azure"), Ordered, func() {
var (
kc *kubeclient.KubeClient
standaloneClient *kubeclient.KubeClient
Expand Down Expand Up @@ -77,7 +77,7 @@ var _ = Context("Azure Templates", Label("provider:cloud", "provider:azure"), Or
}
})

It("should work with an Azure provider", func() {
XIt("should work with an Azure provider", func() {
templateBy(managedcluster.TemplateAzureStandaloneCP, "creating a ManagedCluster")
sd := managedcluster.GetUnstructured(managedcluster.TemplateAzureStandaloneCP)
sdName = sd.GetName()
Expand Down
4 changes: 2 additions & 2 deletions test/e2e/provider_vsphere_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import (
"github.com/Mirantis/hmc/test/e2e/managedcluster/vsphere"
)

var _ = Context("vSphere Templates", Label("provider:onprem", "provider:vsphere"), Ordered, func() {
var _ = XContext("vSphere Templates", Label("provider:onprem", "provider:vsphere"), Ordered, func() {
var (
kc *kubeclient.KubeClient
deleteFunc func() error
Expand Down Expand Up @@ -78,7 +78,7 @@ var _ = Context("vSphere Templates", Label("provider:onprem", "provider:vsphere"
}
})

It("should deploy standalone managed cluster", func() {
XIt("should deploy standalone managed cluster", func() {
By("creating a managed cluster")
d := managedcluster.GetUnstructured(managedcluster.TemplateVSphereStandaloneCP)
clusterName = d.GetName()
Expand Down

0 comments on commit 29c698c

Please sign in to comment.