Skip to content

Commit 0d3ab8c

Browse files
author
Kate Osborn
committed
More fixes
1 parent e48f4ae commit 0d3ab8c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ deploy-updated-provisioner: ## Update provisioner manifest and deploy to the con
177177

178178
.PHONY: generate-static-deployment
179179
generate-static-deployment:
180-
helm template nginx-gateway $(CHART_DIR) --set nameOverride=nginx-gateway --set metrics.enable=false --set nginxGateway.productTelemetry.enable=false -n nginx-gateway -s templates/deployment.yaml --set nginxGateway.image.repository=$(PREFIX) --set nginxGateway.image.tag=$(TAG) --set nginxGateway.image.pullPolicy=Never --set nginx.image.repository=$(NGINX_PREFIX) --set nginx.image.tag=$(TAG) --set nginx.image.pullPolicy=Never --set nginxGateway.gwAPIExperimentalFeatures.enable=$(ENABLE_EXPERIMENTAL) --set nginx.plus=$(PLUS_ENABLED) > $(SELF_DIR)config/tests/static-deployment.yaml
180+
helm template nginx-gateway $(CHART_DIR) --set nameOverride=nginx-gateway --set metrics.enable=false --set nginxGateway.productTelemetry.enable=false -n nginx-gateway -s templates/deployment.yaml --set nginxGateway.image.repository=$(PREFIX) --set nginxGateway.image.tag=$(TAG) --set nginxGateway.image.pullPolicy=Never --set nginx.image.repository=$(NGINX_PREFIX) --set nginx.image.tag=$(TAG) --set nginx.image.pullPolicy=Never --set nginxGateway.gwAPIExperimentalFeatures.enable=$(ENABLE_EXPERIMENTAL) --set nginx.plus=$(PLUS_ENABLED) --set nginx.usage.endpoint=$(PLUS_USAGE_ENDPOINT) > $(SELF_DIR)config/tests/static-deployment.yaml
181181

182182
# this target is used to install the gateway-api CRDs from the main branch (only used in the nightly CI job)
183183
# it overrides the target in the main Makefile when the GW_API_VERSION is set to main

tests/suite/graceful_recovery_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ func checkContainerLogsForErrors(ngfPodName string, checkNginxLogsOnly bool) {
367367
Expect(line).ToNot(ContainSubstring("[emerg]"), line)
368368
if strings.Contains(line, "[error]") {
369369
expectedError1 := "connect() failed (111: Connection refused)"
370-
expectedError2 := "product.connect.nginx.com could not be resolved"
370+
expectedError2 := "could not be resolved (host not found) during usage report"
371371
expectedError3 := "server returned 429"
372372
// FIXME(salonichf5) remove this error message check
373373
// when https://github.com/nginxinc/nginx-gateway-fabric/issues/2090 is completed.

0 commit comments

Comments
 (0)