Skip to content

Commit 5de2f06

Browse files
committed
R34 updates
1 parent a33fd5e commit 5de2f06

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

labs/lab5/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,12 @@ services:
7676
# NGINX_AGENT_SERVER_HOST: 'agent.connect.nginx.com'
7777
# NGINX_AGENT_SERVER_GRPCPORT: '443'
7878
# NGINX_AGENT_TLS_ENABLE: 'true'
79-
# NGINX_AGENT_SERVER_TOKEN: $TOKEN # Dataplane key From Nginx One Console
79+
# NGINX_AGENT_SERVER_TOKEN: $TOKEN # Dataplane key From Nginx One Console
8080
# NGINX_LICENSE_JWT: $JWT
8181
# NGINX_AGENT_INSTANCE_GROUP: $NAME-sync-group
8282
# hostname: $NAME-plus4
8383
# container_name: $NAME-plus4
84-
# image: private-registry.nginx.com/nginx-plus/agent:debian # From Nginx Private Registry R34
84+
# image: private-registry.nginx.com/nginx-plus/agent:r34-debian # From Nginx Private Registry R34
8585
# volumes: # Sync these folders to container
8686
# - ./nginx-plus/etc/nginx/nginx.conf:/etc/nginx/nginx.conf
8787
# - ./nginx-plus/etc/nginx/conf.d:/etc/nginx/conf.d

labs/lab5/readme.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,20 @@ This lab will explore the R33-R34 upgrade process with NGINX One Console. Starti
3535

3636
Starting with Release 33, NGINX Plus requires NGINX Agent to be installed along with a license for NGINX One (Not to be confused with the NGINX One Console you are working with today). It is not as painful as some have been led to believe. You will now add the latest version of an instance to your lab setup.
3737

38-
1. First you need the NGINX One `license.jwt` file which you can get from [my.f5.com](https://my.f5.com). Create a new file in the lab5 folder called `license.jwt` and paste the contents into it. If you are in the F5 UDF environment, this has been done for you. The $JWT environment variable should still be set from the earlier labs, but you can check it. If it is not there, add the license to an environment variable as you did previously:
38+
1. First you need the NGINX One `license.jwt` file which you can get from [my.f5.com](https://my.f5.com). Create a new file in the lab5 folder called `license.jwt` and paste the contents into it. *If you are in the F5 UDF environment, this has been done for you.* The $JWT environment variable should still be set from the earlier labs, but you can check it. If it is not there, add the license to an environment variable as you did previously:
3939

40+
1. Change to the `lab5` folder for these exercises.
41+
42+
```bash
43+
cd lab5
44+
```
45+
4046
```bash
4147
echo $JWT
4248
```
4349

44-
If the result is empty, set it the JWT variable again.
45-
50+
If the result is empty, set it the JWT variable again, you must be in the `/lab5 folder`.
51+
4652
```bash
4753
export JWT=$(cat ../lab2/license.jwt)
4854
```
@@ -86,7 +92,7 @@ Starting with Release 33, NGINX Plus requires NGINX Agent to be installed along
8692
NGINX_AGENT_INSTANCE_GROUP: $NAME-sync-group
8793
hostname: $NAME-plus4
8894
container_name: $NAME-plus4
89-
image: private-registry.nginx.com/nginx-plus/agent:debian # From NGINX Private Registry R34
95+
image: private-registry.nginx.com/nginx-plus/agent:r34-debian # From NGINX Private Registry R34
9096
volumes: # Sync these folders to container
9197
- ./nginx-plus/etc/nginx/nginx.conf:/etc/nginx/nginx.conf
9298
- ./nginx-plus/etc/nginx/conf.d:/etc/nginx/conf.d

0 commit comments

Comments
 (0)