Skip to content

Commit 18671fb

Browse files
authored
Move conformance tests to tests directory (#1969)
Problem: The conformance directory is outside our tests directory containing all our tests. This conformance directory has a separate Makefile with many duplicated commands and variables. At release time we have to update all the versions in multiple places. Solution: Move the conformance tests inside the tests directory and consolidate the Makefile so it's easier to maintain and update at release time
1 parent 1ed96aa commit 18671fb

30 files changed

+421
-574
lines changed

Diff for: .github/dependabot.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ updates:
1515
- package-ecosystem: docker
1616
directories:
1717
- /build
18-
- /conformance/tests
18+
- /tests
19+
- /tests/conformance
1920
schedule:
2021
interval: daily
2122

Diff for: .github/workflows/ci.yml

+4
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,10 @@ jobs:
4747
- name: Check if go.mod and go.sum are up to date
4848
run: go mod tidy && git diff --exit-code -- go.mod go.sum
4949

50+
- name: Check if go.mod and go.sum are up to date in tests
51+
run: go mod tidy && git diff --exit-code -- go.mod go.sum
52+
working-directory: tests
53+
5054
- name: Check if generated go files are up to date
5155
run: make generate && git diff --exit-code
5256

Diff for: .github/workflows/conformance.yml

+13-11
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ jobs:
2929
steps:
3030
- name: Checkout Repository
3131
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
32+
with:
33+
fetch-depth: 0
3234

3335
- name: Setup Golang Environment
3436
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
@@ -67,12 +69,12 @@ jobs:
6769
type=ref,event=pr
6870
type=ref,event=branch,suffix=-rc,enable=${{ startsWith(github.ref, 'refs/heads/release') }}
6971
70-
- name: Prepare NGF files
72+
- name: Generate static deployment
7173
run: |
7274
ngf_prefix=ghcr.io/nginxinc/nginx-gateway-fabric
7375
ngf_tag=${{ steps.ngf-meta.outputs.version }}
74-
make update-ngf-manifest${{ inputs.image == 'plus' && '-with-plus' || ''}} PREFIX=${ngf_prefix} TAG=${ngf_tag}
75-
working-directory: ./conformance
76+
make generate-static-deployment PLUS_ENABLED=${{ inputs.image == 'plus' && 'true' || 'false' }} PREFIX=${ngf_prefix} TAG=${ngf_tag}
77+
working-directory: ./tests
7678

7779
- name: Build binary
7880
uses: goreleaser/goreleaser-action@5742e2a039330cbb23ebf35f046f814d4c6ff811 # v5.1.0
@@ -111,14 +113,14 @@ jobs:
111113
- name: Update Go Modules
112114
if: ${{ github.event_name == 'schedule' }}
113115
run: make update-go-modules
114-
working-directory: ./conformance
116+
working-directory: ./tests
115117

116118
- name: Build Test Docker Image
117119
uses: docker/build-push-action@2cdde995de11925a030ce8070c3d77a52ffcf1c0 # v5.3.0
118120
with:
119-
file: conformance/tests/Dockerfile
121+
file: tests/conformance/Dockerfile
120122
tags: conformance-test-runner:${{ github.sha }}
121-
context: "."
123+
context: "tests"
122124
load: true
123125
cache-from: type=gha
124126
cache-to: type=gha,mode=max
@@ -130,7 +132,7 @@ jobs:
130132
k8s_version=${{ inputs.k8s-version }}
131133
make create-kind-cluster KIND_KUBE_CONFIG=${{ github.workspace }}/kube-${{ github.run_id }} ${{ ! contains(inputs.k8s-version, 'latest') && 'KIND_IMAGE=kindest/node:v${k8s_version}' || '' }}
132134
echo "KUBECONFIG=${{ github.workspace }}/kube-${{ github.run_id }}" >> "$GITHUB_ENV"
133-
working-directory: ./conformance
135+
working-directory: ./tests
134136

135137
- name: Setup conformance tests
136138
run: |
@@ -139,19 +141,19 @@ jobs:
139141
if [ ${{ github.event_name }} == "schedule" ]; then export GW_API_VERSION=main; fi
140142
if [ ${{ inputs.enable-experimental }} == "true" ]; then export ENABLE_EXPERIMENTAL=true; fi
141143
make install-ngf-local-no-build${{ inputs.image == 'plus' && '-with-plus' || ''}} PREFIX=${ngf_prefix} TAG=${ngf_tag}
142-
working-directory: ./conformance
144+
working-directory: ./tests
143145

144146
- name: Run conformance tests
145147
run: |
146-
make run-conformance-tests CONFORMANCE_TAG=${{ github.sha }} VERSION=${{ github.ref_name }}
148+
make run-conformance-tests CONFORMANCE_TAG=${{ github.sha }} NGF_VERSION=${{ github.ref_name }}
147149
core_result=$(cat conformance-profile.yaml | yq '.profiles[0].core.result')
148150
extended_result=$(cat conformance-profile.yaml | yq '.profiles[0].extended.result')
149151
if [ "${core_result}" == "failure" ] || [ "${extended_result}" == "failure" ]; then echo "Conformance test failed, see above for details." && exit 2; fi
150-
working-directory: ./conformance
152+
working-directory: ./tests
151153

152154
- name: Upload profile to release
153155
if: ${{ inputs.k8s-version == 'latest' && startsWith(github.ref, 'refs/tags/') }}
154156
env:
155157
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
156158
run: gh release upload ${{ github.ref_name }} conformance-profile.yaml --clobber
157-
working-directory: ./conformance
159+
working-directory: ./tests

Diff for: .github/workflows/functional.yml

+2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ jobs:
2424
steps:
2525
- name: Checkout Repository
2626
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
27+
with:
28+
fetch-depth: 0
2729

2830
- name: Setup Golang Environment
2931
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1

Diff for: .github/workflows/release-pr.yml

-2
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,6 @@ jobs:
7474
sed -i -e "s/v${{ steps.vars.outputs.current_version }}/v${{ inputs.version }}/g" README.md
7575
sed -i -e "s/\[${{ steps.vars.outputs.current_version }}\]/\[${{ inputs.version }}\]/g" README.md
7676
sed -i -e "s/VERSION = edge/VERSION = ${{ inputs.version }}/g" Makefile
77-
sed -i -e "s/VERSION = ${{ steps.vars.outputs.current_version }}/VERSION = ${{ inputs.version }}/g" conformance/Makefile
78-
sed -i -e "s/TAG = edge/TAG = ${{ inputs.version }}/g" **/Makefile
7977
sed -i "6r .github/CHANGELOG_TEMPLATE.md" CHANGELOG.md
8078
sed -i -e "s/%%VERSION%%/${{ inputs.version }}/g" CHANGELOG.md
8179
make generate-manifests

Diff for: .gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*.out
1313
cover.html
1414
cmd-cover.html
15-
conformance/conformance-profile.yaml
15+
conformance-profile.yaml
1616

1717
# Dependency directories (remove the comment below to include it)
1818
# vendor/

Diff for: Makefile

+34-17
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,14 @@
22
VERSION = edge
33
GIT_COMMIT = $(shell git rev-parse HEAD || echo "unknown")
44
DATE = $(shell date -u +"%Y-%m-%dT%H:%M:%SZ")
5+
SELF_DIR := $(dir $(lastword $(MAKEFILE_LIST)))
56
MANIFEST_DIR = $(CURDIR)/deploy/manifests
6-
CHART_DIR = $(CURDIR)/charts/nginx-gateway-fabric
7+
CHART_DIR = $(SELF_DIR)charts/nginx-gateway-fabric
78
NGINX_CONF_DIR = internal/mode/static/nginx/conf
89
NJS_DIR = internal/mode/static/nginx/modules/src
910
NGINX_DOCKER_BUILD_PLUS_ARGS = --secret id=nginx-repo.crt,src=nginx-repo.crt --secret id=nginx-repo.key,src=nginx-repo.key
1011
BUILD_AGENT=local
12+
PLUS_ENABLED ?= false
1113

1214
PROD_TELEMETRY_ENDPOINT = oss.edge.df.f5.com:443
1315
# the telemetry related variables below are also configured in goreleaser.yml
@@ -16,7 +18,7 @@ TELEMETRY_ENDPOINT=# if empty, NGF will report telemetry in its logs at debug le
1618
TELEMETRY_ENDPOINT_INSECURE = false
1719

1820
GW_API_VERSION = 1.1.0
19-
ENABLE_EXPERIMENTAL = false
21+
ENABLE_EXPERIMENTAL ?= false
2022
NODE_VERSION = $(shell cat .nvmrc)
2123

2224
# go build flags - should not be overridden by the user
@@ -31,18 +33,23 @@ NGINX_PLUS_PREFIX ?= $(PREFIX)/nginx-plus## The name of the nginx plus image. Fo
3133
TAG ?= $(VERSION:v%=%)## The tag of the image. For example, 1.1.0
3234
TARGET ?= local## The target of the build. Possible values: local and container
3335
KIND_KUBE_CONFIG=$${HOME}/.kube/kind/config## The location of the kind kubeconfig
34-
OUT_DIR ?= $(CURDIR)/build/out## The folder where the binary will be stored
36+
OUT_DIR ?= build/out## The folder where the binary will be stored
3537
GOARCH ?= amd64## The architecture of the image and/or binary. For example: amd64 or arm64
3638
GOOS ?= linux## The OS of the image and/or binary. For example: linux or darwin
3739
override HELM_TEMPLATE_COMMON_ARGS += --set creator=template --set nameOverride=nginx-gateway## The common options for the Helm template command.
3840
override HELM_TEMPLATE_EXTRA_ARGS_FOR_ALL_MANIFESTS_FILE += --set service.create=false## The options to be passed to the full Helm templating command only.
3941
override NGINX_DOCKER_BUILD_OPTIONS += --build-arg NJS_DIR=$(NJS_DIR) --build-arg NGINX_CONF_DIR=$(NGINX_CONF_DIR) --build-arg BUILD_AGENT=$(BUILD_AGENT)
42+
4043
.DEFAULT_GOAL := help
4144

45+
ifneq (,$(findstring plus,$(MAKECMDGOALS)))
46+
PLUS_ENABLED = true
47+
endif
48+
4249
.PHONY: help
4350
help: Makefile ## Display this help
44-
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "; printf "Usage:\n\n make \033[36m<target>\033[0m [VARIABLE=value...]\n\nTargets:\n\n"}; {printf " \033[36m%-30s\033[0m %s\n", $$1, $$2}'
45-
@grep -E '^(override )?[a-zA-Z_-]+ \??\+?= .*?## .*$$' $< | sort | awk 'BEGIN {FS = " \\??\\+?= .*?## "; printf "\nVariables:\n\n"}; {gsub(/override /, "", $$1); printf " \033[36m%-30s\033[0m %s\n", $$1, $$2}'
51+
@grep -hE '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "; printf "Usage:\n\n make \033[36m<target>\033[0m [VARIABLE=value...]\n\nTargets:\n\n"}; {printf " \033[36m%-30s\033[0m %s\n", $$1, $$2}'
52+
@grep -hE '^(override )?[a-zA-Z_-]+ \??\+?= .*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = " \\??\\+?= .*?## "; printf "\nVariables:\n\n"}; {gsub(/override /, "", $$1); printf " \033[36m%-30s\033[0m %s\n", $$1, $$2}'
4653

4754
.PHONY: build-prod-images
4855
build-prod-images: build-prod-ngf-image build-prod-nginx-image ## Build the NGF and nginx docker images for production
@@ -62,21 +69,21 @@ build-prod-ngf-image: build-ngf-image ## Build the NGF docker image for producti
6269

6370
.PHONY: build-ngf-image
6471
build-ngf-image: check-for-docker build ## Build the NGF docker image
65-
docker build --platform linux/$(GOARCH) --build-arg BUILD_AGENT=$(BUILD_AGENT) --target $(strip $(TARGET)) -f build/Dockerfile -t $(strip $(PREFIX)):$(strip $(TAG)) .
72+
docker build --platform linux/$(GOARCH) --build-arg BUILD_AGENT=$(BUILD_AGENT) --target $(strip $(TARGET)) -f $(SELF_DIR)build/Dockerfile -t $(strip $(PREFIX)):$(strip $(TAG)) $(strip $(SELF_DIR))
6673

6774
.PHONY: build-prod-nginx-image
6875
build-prod-nginx-image: build-nginx-image ## Build the custom nginx image for production
6976

7077
.PHONY: build-nginx-image
7178
build-nginx-image: check-for-docker ## Build the custom nginx image
72-
docker build --platform linux/$(GOARCH) $(strip $(NGINX_DOCKER_BUILD_OPTIONS)) -f build/Dockerfile.nginx -t $(strip $(NGINX_PREFIX)):$(strip $(TAG)) .
79+
docker build --platform linux/$(GOARCH) $(strip $(NGINX_DOCKER_BUILD_OPTIONS)) -f $(SELF_DIR)build/Dockerfile.nginx -t $(strip $(NGINX_PREFIX)):$(strip $(TAG)) $(strip $(SELF_DIR))
7380

7481
.PHONY: build-prod-nginx-plus-image
7582
build-prod-nginx-plus-image: build-nginx-plus-image ## Build the custom nginx plus image for production
7683

7784
.PHONY: build-nginx-plus-image
7885
build-nginx-plus-image: check-for-docker ## Build the custom nginx plus image
79-
docker build --platform linux/$(GOARCH) $(strip $(NGINX_DOCKER_BUILD_OPTIONS)) $(strip $(NGINX_DOCKER_BUILD_PLUS_ARGS)) -f build/Dockerfile.nginxplus -t $(strip $(NGINX_PLUS_PREFIX)):$(strip $(TAG)) .
86+
docker build --platform linux/$(GOARCH) $(strip $(NGINX_DOCKER_BUILD_OPTIONS)) $(strip $(NGINX_DOCKER_BUILD_PLUS_ARGS)) -f $(SELF_DIR)build/Dockerfile.nginxplus -t $(strip $(NGINX_PLUS_PREFIX)):$(strip $(TAG)) $(strip $(SELF_DIR))
8087

8188
.PHONY: check-for-docker
8289
check-for-docker: ## Check if Docker is installed
@@ -86,7 +93,7 @@ check-for-docker: ## Check if Docker is installed
8693
build: ## Build the binary
8794
ifeq (${TARGET},local)
8895
@go version || (code=$$?; printf "\033[0;31mError\033[0m: unable to build locally\n"; exit $$code)
89-
CGO_ENABLED=0 GOOS=$(GOOS) GOARCH=$(GOARCH) go build -trimpath -a -ldflags "$(GO_LINKER_FLAGS)" $(ADDITIONAL_GO_BUILD_FLAGS) -o $(OUT_DIR)/gateway github.com/nginxinc/nginx-gateway-fabric/cmd/gateway
96+
CGO_ENABLED=0 GOOS=$(GOOS) GOARCH=$(GOARCH) go build -C $(SELF_DIR) -trimpath -a -ldflags "$(GO_LINKER_FLAGS)" $(ADDITIONAL_GO_BUILD_FLAGS) -o $(OUT_DIR)/gateway github.com/nginxinc/nginx-gateway-fabric/cmd/gateway
9097
endif
9198

9299
.PHONY: build-goreleaser
@@ -103,13 +110,25 @@ generate-crds: ## Generate CRDs and Go types using kubebuilder
103110
go run sigs.k8s.io/controller-tools/cmd/controller-gen crd object paths=./apis/... output:crd:artifacts:config=config/crd/bases
104111
kubectl kustomize config/crd >deploy/crds.yaml
105112

113+
.PHONY: install-crds
114+
install-crds: ## Install CRDs
115+
kubectl kustomize config/crd | kubectl apply -f -
116+
117+
.PHONY: install-gateway-crds
118+
install-gateway-crds: ## Install Gateway API CRDs
119+
$(SELF_DIR)tests/scripts/install-gateway.sh $(GW_API_VERSION) $(ENABLE_EXPERIMENTAL)
120+
121+
.PHONY: uninstall-gateway-crds
122+
uninstall-gateway-crds: ## Uninstall Gateway API CRDs
123+
$(SELF_DIR)tests/scripts/uninstall-gateway.sh $(GW_API_VERSION) $(ENABLE_EXPERIMENTAL)
124+
106125
.PHONY: generate-manifests
107126
generate-manifests: ## Generate manifests using Helm.
108127
helm template nginx-gateway $(CHART_DIR) $(HELM_TEMPLATE_COMMON_ARGS) $(HELM_TEMPLATE_EXTRA_ARGS_FOR_ALL_MANIFESTS_FILE) -n nginx-gateway | cat $(strip $(MANIFEST_DIR))/namespace.yaml - > $(strip $(MANIFEST_DIR))/nginx-gateway.yaml
109128
helm template nginx-gateway $(CHART_DIR) $(HELM_TEMPLATE_COMMON_ARGS) $(HELM_TEMPLATE_EXTRA_ARGS_FOR_ALL_MANIFESTS_FILE) --set nginx.plus=true --set nginx.image.repository=$(NGINX_PLUS_PREFIX) -n nginx-gateway | cat $(strip $(MANIFEST_DIR))/namespace.yaml - > $(strip $(MANIFEST_DIR))/nginx-plus-gateway.yaml
110129
helm template nginx-gateway $(CHART_DIR) $(HELM_TEMPLATE_COMMON_ARGS) $(HELM_TEMPLATE_EXTRA_ARGS_FOR_ALL_MANIFESTS_FILE) --set nginxGateway.gwAPIExperimentalFeatures.enable=true -n nginx-gateway | cat $(strip $(MANIFEST_DIR))/namespace.yaml - > $(strip $(MANIFEST_DIR))/nginx-gateway-experimental.yaml
111130
helm template nginx-gateway $(CHART_DIR) $(HELM_TEMPLATE_COMMON_ARGS) $(HELM_TEMPLATE_EXTRA_ARGS_FOR_ALL_MANIFESTS_FILE) --set nginxGateway.gwAPIExperimentalFeatures.enable=true --set nginx.plus=true --set nginx.image.repository=$(NGINX_PLUS_PREFIX) -n nginx-gateway | cat $(strip $(MANIFEST_DIR))/namespace.yaml - > $(strip $(MANIFEST_DIR))/nginx-plus-gateway-experimental.yaml
112-
helm template nginx-gateway $(CHART_DIR) $(HELM_TEMPLATE_COMMON_ARGS) --set metrics.enable=false --set nginxGateway.productTelemetry.enable=false -n nginx-gateway -s templates/deployment.yaml > conformance/provisioner/static-deployment.yaml
131+
helm template nginx-gateway $(CHART_DIR) $(HELM_TEMPLATE_COMMON_ARGS) --set metrics.enable=false --set nginxGateway.productTelemetry.enable=false -n nginx-gateway -s templates/deployment.yaml > config/tests/static-deployment.yaml
113132
helm template nginx-gateway $(CHART_DIR) $(HELM_TEMPLATE_COMMON_ARGS) -n nginx-gateway -s templates/service.yaml > $(strip $(MANIFEST_DIR))/service/loadbalancer.yaml
114133
helm template nginx-gateway $(CHART_DIR) $(HELM_TEMPLATE_COMMON_ARGS) --set service.annotations.'service\.beta\.kubernetes\.io\/aws-load-balancer-type'="nlb" -n nginx-gateway -s templates/service.yaml > $(strip $(MANIFEST_DIR))/service/loadbalancer-aws-nlb.yaml
115134
helm template nginx-gateway $(CHART_DIR) $(HELM_TEMPLATE_COMMON_ARGS) --set service.type=NodePort --set service.externalTrafficPolicy="" -n nginx-gateway -s templates/service.yaml > $(strip $(MANIFEST_DIR))/service/nodeport.yaml
@@ -128,7 +147,7 @@ deps: ## Add missing and remove unused modules, verify deps and download them to
128147

129148
.PHONY: create-kind-cluster
130149
create-kind-cluster: ## Create a kind cluster
131-
$(eval KIND_IMAGE=$(shell grep -m1 'FROM kindest/node' <conformance/tests/Dockerfile | awk -F'[ ]' '{print $$2}'))
150+
$(eval KIND_IMAGE=$(shell grep -m1 'FROM kindest/node' <$(SELF_DIR)tests/Dockerfile | awk -F'[ ]' '{print $$2}'))
132151
kind create cluster --image $(KIND_IMAGE)
133152
kind export kubeconfig --kubeconfig $(KIND_KUBE_CONFIG)
134153

@@ -189,14 +208,12 @@ install-ngf-local-build: build-images load-images helm-install-local ## Install
189208
install-ngf-local-build-with-plus: build-images-with-plus load-images-with-plus helm-install-local-with-plus ## Install NGF with NGINX Plus from local build on configured kind cluster.
190209

191210
.PHONY: helm-install-local
192-
helm-install-local: ## Helm install NGF on configured kind cluster with local images. To build, load, and install with helm run make install-ngf-local-build.
193-
./conformance/scripts/install-gateway.sh $(GW_API_VERSION) $(ENABLE_EXPERIMENTAL)
194-
helm install dev $(CHART_DIR) --create-namespace --wait --set service.type=NodePort --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) -n nginx-gateway
211+
helm-install-local: install-gateway-crds ## Helm install NGF on configured kind cluster with local images. To build, load, and install with helm run make install-ngf-local-build.
212+
helm install nginx-gateway $(CHART_DIR) --set nginx.image.repository=$(NGINX_PREFIX) --create-namespace --wait --set nginxGateway.image.pullPolicy=Never --set service.type=NodePort --set nginxGateway.image.repository=$(PREFIX) --set nginxGateway.image.tag=$(TAG) --set nginx.image.tag=$(TAG) --set nginx.image.pullPolicy=Never --set nginxGateway.gwAPIExperimentalFeatures.enable=$(ENABLE_EXPERIMENTAL) -n nginx-gateway $(HELM_PARAMETERS)
195213

196214
.PHONY: helm-install-local-with-plus
197-
helm-install-local-with-plus: ## Helm install NGF with NGINX Plus on configured kind cluster with local images. To build, load, and install with helm run make install-ngf-local-build-with-plus.
198-
./conformance/scripts/install-gateway.sh $(GW_API_VERSION) $(ENABLE_EXPERIMENTAL)
199-
helm install dev $(CHART_DIR) --create-namespace --wait --set service.type=NodePort --set nginxGateway.image.repository=$(PREFIX) --set nginxGateway.image.tag=$(TAG) --set nginxGateway.image.pullPolicy=Never --set nginx.image.repository=$(NGINX_PLUS_PREFIX) --set nginx.image.tag=$(TAG) --set nginx.image.pullPolicy=Never --set nginx.plus=true --set nginxGateway.gwAPIExperimentalFeatures.enable=$(ENABLE_EXPERIMENTAL) -n nginx-gateway
215+
helm-install-local-with-plus: install-gateway-crds ## Helm install NGF with NGINX Plus on configured kind cluster with local images. To build, load, and install with helm run make install-ngf-local-build-with-plus.
216+
helm install nginx-gateway $(CHART_DIR) --set nginx.image.repository=$(NGINX_PLUS_PREFIX) --create-namespace --wait --set nginxGateway.image.pullPolicy=Never --set service.type=NodePort --set nginxGateway.image.repository=$(PREFIX) --set nginxGateway.image.tag=$(TAG) --set nginx.image.tag=$(TAG) --set nginx.image.pullPolicy=Never --set nginxGateway.gwAPIExperimentalFeatures.enable=$(ENABLE_EXPERIMENTAL) -n nginx-gateway --set nginx.plus=true $(HELM_PARAMETERS)
200217

201218
# Debug Targets
202219
.PHONY: debug-build
File renamed without changes.

0 commit comments

Comments
 (0)