Skip to content

Commit d2ca832

Browse files
committed
log
1 parent 5996e9c commit d2ca832

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

tests/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ stop-longevity-test: nfr-test ## Stop the longevity test and collects results
116116
.PHONY: .vm-nfr-test
117117
.vm-nfr-test: ## Runs the NFR tests on the GCP VM (called by `nfr-test`)
118118
go run github.com/onsi/ginkgo/v2/ginkgo --randomize-all --randomize-suites --keep-going --fail-on-pending \
119-
--trace -r -v --buildvcs --force-newlines $(GITHUB_OUTPUT) \
119+
--trace -r -vv --buildvcs --force-newlines $(GITHUB_OUTPUT) \
120120
--label-filter "nfr" $(GINKGO_FLAGS) --timeout 5h ./suite -- --gateway-api-version=$(GW_API_VERSION) \
121121
--gateway-api-prev-version=$(GW_API_PREV_VERSION) --image-tag=$(TAG) --version-under-test=$(NGF_VERSION) \
122122
--ngf-image-repo=$(PREFIX) --nginx-image-repo=$(NGINX_PREFIX) --nginx-plus-image-repo=$(NGINX_PLUS_PREFIX) \

tests/suite/system_suite_test.go

+1
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ func setup(cfg setupConfig, extraInstallArgs ...string) {
123123
var err error
124124
k8sClient, err = client.New(k8sConfig, options)
125125
Expect(err).ToNot(HaveOccurred())
126+
log.Log.Info(k8sConfig.String())
126127

127128
clientGoClient, err := kubernetes.NewForConfig(k8sConfig)
128129
Expect(err).ToNot(HaveOccurred())

tests/tofu/main.tf

-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ resource "google_container_cluster" "primary" {
4747
cidr_block = "${chomp(data.http.myip.response_body)}/32"
4848
display_name = "local-ip"
4949
}
50-
5150
cidr_blocks {
5251
cidr_block = google_compute_subnetwork.subnet.ip_cidr_range
5352
display_name = "vpc"

0 commit comments

Comments
 (0)