We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90c42c1 commit 7453aa7Copy full SHA for 7453aa7
.github/workflows/helm.yml
@@ -99,6 +99,15 @@ jobs:
99
kind load docker-image ${{ join(fromJSON(steps.ngf-meta.outputs.json).tags, ' ') }} ${{ join(fromJSON(steps.nginx-meta.outputs.json).tags, ' ') }} --name ${{ github.run_id }}
100
kubectl kustomize config/crd/gateway-api/standard | kubectl apply -f -
101
102
+ - name: Create plus secret
103
+ if: ${{ inputs.image == 'plus' }}
104
+ env:
105
+ PLUS_LICENSE: ${{ secrets.JWT_PLUS_REGISTRY }}
106
+ run: |
107
+ echo "$PLUS_LICENSE" > license.jwt
108
+ kubectl create namespace nginx-gateway
109
+ kubectl create secret generic nplus-license --from-file license.jwt -n nginx-gateway
110
+
111
- name: Set up Python
112
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
113
with:
0 commit comments