Skip to content

Commit 9a85dbc

Browse files
authored
Add NFR flag to NGF configuration on reconfiguration performance test (#2391)
Add NFR flag to NGF configuration on reconfiguration performance test.
1 parent a10076e commit 9a85dbc

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/suite/reconfig_test.go

+4-1
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,10 @@ var _ = Describe("Reconfiguration Performance Testing", Ordered, Label("reconfig
333333
getStartTime := func() time.Time { return startTime }
334334
modifyStartTime := func() { startTime = startTime.Add(500 * time.Millisecond) }
335335

336-
setup(getDefaultSetupCfg())
336+
cfg := getDefaultSetupCfg()
337+
cfg.nfr = true
338+
setup(cfg)
339+
337340
podNames, err := framework.GetReadyNGFPodNames(k8sClient, ngfNamespace, releaseName, timeoutConfig.GetTimeout)
338341
Expect(err).ToNot(HaveOccurred())
339342
Expect(podNames).To(HaveLen(1))

0 commit comments

Comments
 (0)