Skip to content

Commit 7ad8d49

Browse files
authored
Merge pull request #3878 from richardcase/eks-e2e-timeout-logging
test: increased cluster creation timeout for eks e2e
2 parents 3586b3b + 0eb6115 commit 7ad8d49

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

test/e2e/data/e2e_eks_conf.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ variables:
135135
CAPA_LOGLEVEL: "4"
136136

137137
intervals:
138-
default/wait-cluster: ["30m", "10s"]
138+
default/wait-cluster: ["40m", "10s"]
139139
default/wait-control-plane: ["35m", "10s"]
140140
default/wait-worker-nodes: ["30m", "10s"]
141141
default/wait-controllers: ["5m", "10s"]

test/e2e/suites/managed/cluster.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,14 @@ func ManagedClusterSpec(ctx context.Context, inputGetter func() ManagedClusterSp
7474
Expect(err).ShouldNot(HaveOccurred())
7575

7676
shared.Byf("Waiting for the cluster to be provisioned")
77+
start := time.Now()
7778
cluster := framework.DiscoveryAndWaitForCluster(ctx, framework.DiscoveryAndWaitForClusterInput{
7879
Getter: input.BootstrapClusterProxy.GetClient(),
7980
Namespace: configCluster.Namespace,
8081
Name: configCluster.ClusterName,
8182
}, input.E2EConfig.GetIntervals("", "wait-cluster")...)
83+
duration := time.Since(start)
84+
shared.Byf("Finished waiting for cluster after: %s", duration)
8285
Expect(cluster).NotTo(BeNil())
8386

8487
shared.Byf("Checking EKS cluster is active")

0 commit comments

Comments
 (0)