Skip to content

Commit

Permalink
Increase the e2e-cache-ssc e2e test create shoot context timeout to…
Browse files Browse the repository at this point in the history
… 15 minutes (#301)

* Increase the `e2e-cache-ssc` e2e test create shoot context timeout to 15 minutes

* Address PR review feedback

---------

Co-authored-by: Ismail Alidzhikov <[email protected]>
  • Loading branch information
dimitar-kostadinov and ialidzhikov authored Dec 9, 2024
1 parent dc6fc13 commit e68b2c8
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ var _ = Describe("Registry Cache Extension Tests", Label("cache"), func() {
// Use 10min as timeout to verify that we don't have a Node bootstrap issue.
// https://github.com/gardener/gardener-extension-registry-cache/pull/68 fixes the Node bootstrap issue
// and this tests verifies that the scenario does not regress.
ctx, cancel := context.WithTimeout(parentCtx, 10*time.Minute)
//
// Mitigate https://github.com/gardener/gardener-extension-registry-cache/issues/290 by increasing context timeout to 15min to prevent flakes.
// TODO(dimitar-kostadinov): Fix https://github.com/gardener/gardener-extension-registry-cache/issues/290 in a permanent way.
ctx, cancel := context.WithTimeout(parentCtx, 15*time.Minute)
defer cancel()
Expect(f.CreateShootAndWaitForCreation(ctx, false)).To(Succeed())
f.Verify()
Expand Down

0 comments on commit e68b2c8

Please sign in to comment.