From f6869bc85eb4d94c2f7cf0a67bba957448651d4a Mon Sep 17 00:00:00 2001
From: Simone Spinelli <simone.spinelli@GA0503-SSPINELLI.local>
Date: Thu, 11 Apr 2024 13:18:52 +0200
Subject: [PATCH] Modified topology and readme

---
 README.md                                          |  7 +++++++
 .../containerlab/templates/test_topology.clab.yml  | 14 ++++++++++++--
 2 files changed, 19 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index 79ad34d..3993d54 100644
--- a/README.md
+++ b/README.md
@@ -25,3 +25,10 @@ Consider that the Docker repository and the username to login on the box are pas
     - containerlab
 ```
 
+So you should: 
+
+```
+export GITLAB_USER=name.surname
+export GITLAB_TOKEN=your_token (you generate it in profile, access-tokens, registry-read as right)
+
+```
\ No newline at end of file
diff --git a/roles/containerlab/templates/test_topology.clab.yml b/roles/containerlab/templates/test_topology.clab.yml
index 0a27166..420a5ab 100644
--- a/roles/containerlab/templates/test_topology.clab.yml
+++ b/roles/containerlab/templates/test_topology.clab.yml
@@ -6,8 +6,18 @@ topology:
       image: '{{ docker.registry_url }}/vrnetlab/vr-vmx:18.2R1.9'
     vr-sros:
       image: '{{ docker.registry_url }}/vrnetlab/vr-sros:23.3.R3'
+      license: license.txt
   nodes:
-    vmx1:
+    juniper1:
       kind: vr-vmx
-    vmx2:
+    nokia1:
       kind: vr-sros
+    juniper2:
+      kind: vr-vmx
+    nokia2:
+      kind: vr-sros
+  links:
+    - endpoints: ["juniper1:eth1", "juniper2:eth1"]
+    - endpoints: ["nokia1:eth1", "nokia2:eth1"]
+    - endpoints: ["juniper1:eth2", "nokia2:eth2"]
+    - endpoints: ["juniper2:eth2", "nokia1:eth2"]
-- 
GitLab