From 82409e2737d8f0e10227ad3bb553a623b1967e0f Mon Sep 17 00:00:00 2001 From: Michael Pleshakov Date: Mon, 18 Mar 2024 15:06:59 -0400 Subject: [PATCH] Fix NFR upgrade test Problem: NFR performance test fails with the following error: Error: INSTALLATION FAILED: release name "": no name provided Solution: Fix the test by providing the release name. Also, add a missing nfr config setting. CLOSES https://github.com/nginxinc/nginx-gateway-fabric/issues/1715 Testing: - Ran upgrade test successfully --- tests/suite/upgrade_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/suite/upgrade_test.go b/tests/suite/upgrade_test.go index a64b6689ac..c52ced924e 100644 --- a/tests/suite/upgrade_test.go +++ b/tests/suite/upgrade_test.go @@ -52,9 +52,11 @@ var _ = Describe("Upgrade testing", Label("nfr", "upgrade"), func() { teardown(releaseName) cfg := setupConfig{ + releaseName: releaseName, chartPath: "oci://ghcr.io/nginxinc/charts/nginx-gateway-fabric", gwAPIVersion: *gatewayAPIPrevVersion, deploy: true, + nfr: true, } setup(cfg, "--values", valuesFile)