File tree 2 files changed +11
-11
lines changed 2 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -221,21 +221,21 @@ jobs:
221
221
kube_config=${{ github.workspace }}/deploy/helm-chart/kube-${{ github.run_id }}-helm
222
222
make create-kind-cluster KIND_KUBE_CONFIG=${kube_config}
223
223
echo "KUBECONFIG=${kube_config}" >> "$GITHUB_ENV"
224
- kind load docker-image ${{ steps.ngf-meta.outputs.tags }} ${{ steps.nginx-meta.outputs.tags }}
224
+ kind load docker-image ghcr.io/nginxinc/nginx-gateway-fabric: ${{ steps.ngf-meta.outputs.version }} ghcr.io/nginxinc/nginx-gateway-fabric/nginx: ${{ steps.nginx-meta.outputs.version }}
225
225
kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.0.0/standard-install.yaml
226
226
227
227
- name : Install Chart
228
228
run : >
229
229
helm install
230
- helm-$(echo ${{ steps.ngf -meta.outputs.tags }} | tr '.' '-' | cut -d ":" -f 2 )
230
+ helm-$(echo ${{ steps.nginx -meta.outputs.version }} | tr '.' '-')
231
231
.
232
232
--wait
233
233
--create-namespace
234
- --set nginxGateway.image.repository=$(echo ${{ steps.ngf-meta.outputs.tags }} | cut -d ":" -f 1)
235
- --set nginxGateway.image.tag=$(echo $ {{ steps.ngf-meta.outputs.tags }} | cut -d ":" -f 2)
234
+ --set nginxGateway.image.repository=ghcr.io/nginxinc/nginx-gateway-fabric
235
+ --set nginxGateway.image.tag=${{ steps.ngf-meta.outputs.version }}
236
236
--set nginxGateway.image.pullPolicy=Never
237
- --set nginx.image.repository=$(echo ${{ steps. nginx-meta.outputs.tags }} | cut -d ":" -f 1)
238
- --set nginx.image.tag=$(echo $ {{ steps.nginx-meta.outputs.tags }} | cut -d ":" -f 2)
237
+ --set nginx.image.repository=ghcr.io/nginxinc/ nginx-gateway-fabric/nginx
238
+ --set nginx.image.tag=${{ steps.nginx-meta.outputs.version }}
239
239
--set nginx.image.pullPolicy=Never
240
240
--set service.type=NodePort
241
241
-n nginx-gateway
Original file line number Diff line number Diff line change 72
72
73
73
- name : Prepare NGF files
74
74
run : |
75
- ngf_prefix=$(echo ${{ steps.ngf-meta.outputs.tags }} | cut -d ":" -f 1)
76
- ngf_tag=$(echo $ {{ steps.ngf-meta.outputs.tags }} | cut -d ":" -f 2)
77
- make update-ngf-manifest PREFIX =${ngf_prefix} TAG =${ngf_tag}
75
+ ngf_prefix=ghcr.io/nginxinc/nginx-gateway-fabric
76
+ ngf_tag=${{ steps.ngf-meta.outputs.version }}
77
+ make update-ngf-manifest NGF_PREFIX =${ngf_prefix} NGF_TAG =${ngf_tag}
78
78
working-directory : ./conformance
79
79
80
80
- name : Build binary
@@ -142,8 +142,8 @@ jobs:
142
142
143
143
- name : Setup conformance tests
144
144
run : |
145
- ngf_prefix=$(echo ${{ steps.ngf-meta.outputs.tags }} | cut -d ":" -f 1)
146
- ngf_tag=$(echo $ {{ steps.ngf-meta.outputs.tags }} | cut -d ":" -f 2)
145
+ ngf_prefix=ghcr.io/nginxinc/nginx-gateway-fabric
146
+ ngf_tag=${{ steps.ngf-meta.outputs.version }}
147
147
if [ ${{ github.event_name }} == "schedule" ]; then export GW_API_VERSION=main; fi
148
148
if [ ${{ startsWith(matrix.k8s-version, '1.23') || startsWith(matrix.k8s-version, '1.24') }} == "true" ]; then export INSTALL_WEBHOOK=true; fi
149
149
make install-ngf-local-no-build PREFIX=${ngf_prefix} TAG=${ngf_tag}
You can’t perform that action at this time.
0 commit comments