Skip to content

Commit

Permalink
Update comments per review
Browse files Browse the repository at this point in the history
  • Loading branch information
kylewuolle committed Jan 14, 2025
1 parent b629acb commit c9ed221
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions test/e2e/provider_adopted_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,11 @@ var _ = Describe("Adopted Cluster Templates", Label("provider:cloud", "provider:

It("should work with an Adopted cluster provider", func() {
// Deploy a standalone cluster and verify it is running/ready. Then, delete the management cluster and
// recreate it. Next "adopt" the cluster we created and verify the services were deployed.
// recreate it. Next "adopt" the cluster we created and verify the services were deployed. Next we delete
// the adopted cluster and finally the management cluster (AWS standalone).
GinkgoT().Setenv(clusterdeployment.EnvVarAWSInstanceType, "t3.xlarge")

templateBy(clusterdeployment.TemplateAWSStandaloneCP, "creating a ManagedCluster")
templateBy(clusterdeployment.TemplateAWSStandaloneCP, "creating a ClusterDeployment")
sd := clusterdeployment.GetUnstructured(clusterdeployment.TemplateAWSStandaloneCP)
clusterName = sd.GetName()

Expand Down Expand Up @@ -119,7 +120,7 @@ var _ = Describe("Adopted Cluster Templates", Label("provider:cloud", "provider:
Expect(err).NotTo(HaveOccurred())
adoptedDeleteFunc = nil

// finally delete the aws standalone cluster
// finally delete the aws standalone cluster and verify it's deleted correctly
err = clusterDeleteFunc()
Expect(err).NotTo(HaveOccurred())
clusterDeleteFunc = nil
Expand Down

0 comments on commit c9ed221

Please sign in to comment.