@@ -105,7 +105,7 @@ var _ = Describe("Reconfiguration Performance Testing", Ordered, Label("reconfig
105
105
}
106
106
107
107
createResourcesGWLast := func (resourceCount int ) {
108
- ctx , cancel := context .WithTimeout (context .Background (), timeoutConfig .CreateTimeout )
108
+ ctx , cancel := context .WithTimeout (context .Background (), timeoutConfig .CreateTimeout * 5 )
109
109
defer cancel ()
110
110
111
111
for i := 1 ; i <= resourceCount ; i ++ {
@@ -142,7 +142,7 @@ var _ = Describe("Reconfiguration Performance Testing", Ordered, Label("reconfig
142
142
}
143
143
144
144
createResourcesRoutesLast := func (resourceCount int ) {
145
- ctx , cancel := context .WithTimeout (context .Background (), timeoutConfig .CreateTimeout )
145
+ ctx , cancel := context .WithTimeout (context .Background (), timeoutConfig .CreateTimeout * 5 )
146
146
defer cancel ()
147
147
148
148
for i := 1 ; i <= resourceCount ; i ++ {
@@ -205,6 +205,8 @@ var _ = Describe("Reconfiguration Performance Testing", Ordered, Label("reconfig
205
205
cleanupResources := func () error {
206
206
var err error
207
207
208
+ // FIXME (bjee19): https://github.com/nginxinc/nginx-gateway-fabric/issues/2376
209
+ // Find a way to bulk delete these namespaces.
208
210
for i := 1 ; i <= maxResourceCount ; i ++ {
209
211
nsName := "namespace" + strconv .Itoa (i )
210
212
resultError := resourceManager .DeleteNamespace (nsName )
@@ -422,6 +424,8 @@ var _ = Describe("Reconfiguration Performance Testing", Ordered, Label("reconfig
422
424
})
423
425
Expect (err ).ToNot (HaveOccurred ())
424
426
427
+ // FIXME (bjee19): https://github.com/nginxinc/nginx-gateway-fabric/issues/2374
428
+ // Find a way to calculate time to ready metrics without having to rely on specific log lines.
425
429
timeToReadyTotal , err := calculateTimeToReadyTotal (logs , timeToReadyStartingLogSubstring )
426
430
Expect (err ).ToNot (HaveOccurred ())
427
431
0 commit comments