Skip to content

Commit c29a829

Browse files
committed
Rework creating license secrets section
1 parent a2c37bf commit c29a829

File tree

1 file changed

+11
-24
lines changed

1 file changed

+11
-24
lines changed

site/content/installation/installing-nic/deploy-with-nap-using-helm.md

+11-24
Original file line numberDiff line numberDiff line change
@@ -21,31 +21,18 @@ This is accomplished with the following steps:
2121

2222
## Prepare Secrets and credentials
2323

24-
Download the following files from your [MyF5 Portal](https://my.f5.com):
24+
1. Download your NGINX Ingress Controller subscription's JSON Web Token, SSL Certificate, and Private Key from MyF5.
25+
You can use the same JSON Web Token, Certificate, and Key as NGINX Plus in your MyF5 portal.
26+
2. Rename the files to the following:
27+
- `nginx-repo.crt`
28+
- `nginx-repo.key`
29+
- `nginx-repo.jwt`
30+
3. Log in to the Docker registry using the contents of the JSON Web Token file:
31+
```shell
32+
$ docker login private-registry.nginx.com --username=$(cat nginx-repo.jwt) --password=none
33+
```
2534

26-
- `nginx-repo.crt`
27-
- `nginx-repo.key`
28-
- `nginx-jwt.token`
29-
30-
Store these files locally:
31-
32-
```
33-
├── nginx-repo.crt
34-
├── nginx-repo.key
35-
└── nginx-repo.jwt
36-
```
37-
38-
39-
## Step 2: Pull the NGINX App Protect WAF Compiler image
40-
41-
Log into the nginx private registry using your jwt file and the password `none` which you will have to type in when
42-
asked:
43-
44-
```shell
45-
$ docker login private-registry.nginx.com --username=$(cat nginx-repo.jwt)
46-
47-
i Info → A Personal Access Token (PAT) can be used instead.
48-
To create a PAT, visit https://app.docker.com/settings
35+
---
4936

5037

5138
Password:

0 commit comments

Comments
 (0)