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 8700a23 commit da70db1Copy full SHA for da70db1
nginx-docker-builder/manifests/nginx-manifest.yaml
@@ -23,8 +23,15 @@ spec:
23
containerPort: 80
24
env:
25
# NGINX Plus R33+ JWT license token - it is recommended to store this in a Kubernetes secret
26
+ # To create the secret using a license.jwt file, run:
27
+ #
28
+ # kubectl create secret generic nginx-license --from-literal=jwt=`cat license.jwt`
29
- name: NGINX_LICENSE
- value: "NGINX_JWT_LICENSE_TOKEN"
30
+ #value: "NGINX_JWT_LICENSE_TOKEN"
31
+ valueFrom:
32
+ secretKeyRef:
33
+ name: nginx-license
34
+ key: jwt
35
36
# NGINX Agent Configuration
37
- name: NGINX_AGENT_ENABLED
0 commit comments