Skip to content

Commit bdc15ec

Browse files
committed
Fix helm local tests
1 parent 7453aa7 commit bdc15ec

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/helm.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
env:
105105
PLUS_LICENSE: ${{ secrets.JWT_PLUS_REGISTRY }}
106106
run: |
107-
echo "$PLUS_LICENSE" > license.jwt
107+
echo "${PLUS_LICENSE}" > license.jwt
108108
kubectl create namespace nginx-gateway
109109
kubectl create secret generic nplus-license --from-file license.jwt -n nginx-gateway
110110
@@ -125,7 +125,8 @@ jobs:
125125
--set=nginx.image.tag=${{ steps.nginx-meta.outputs.version }} \
126126
--set=nginxGateway.image.pullPolicy=Never \
127127
--set=nginx.image.pullPolicy=Never \
128-
--set=nginxGateway.productTelemetry.enable=false"
128+
--set=nginxGateway.productTelemetry.enable=false \
129+
--namespace nginx-gateway"
129130
130131
helm-test-remote:
131132
name: Helm Tests Remote
@@ -157,7 +158,7 @@ jobs:
157158
env:
158159
PLUS_LICENSE: ${{ secrets.JWT_PLUS_REGISTRY }}
159160
run: |
160-
echo "$PLUS_LICENSE" > license.jwt
161+
echo "${PLUS_LICENSE}" > license.jwt
161162
kubectl create secret docker-registry nginx-plus-registry-secret --docker-server=private-registry.nginx.com --docker-username=${{ secrets.JWT_PLUS_REGISTRY }} --docker-password=none -n nginx-gateway
162163
kubectl create secret generic nplus-license --from-file license.jwt -n nginx-gateway
163164

0 commit comments

Comments
 (0)