-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update installation instructions and added Container Lab temp files t…
…o .gitignore
- Loading branch information
1 parent
0ff2299
commit cf20fe8
Showing
2 changed files
with
40 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
lab/*.bak | ||
lab/clab*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,41 @@ | ||
# Clone the repo | ||
``` | ||
# git clone https://github.com/netboxlabs/netbox-learning.git | ||
``` | ||
|
||
|
||
# Installation instructions | ||
|
||
- Install ContainerLab | ||
- Make a venv | ||
- Install requirements | ||
|
||
- Create and activate a virtual environment | ||
``` | ||
# python3 -m venv venv | ||
# source venv/bin/activate | ||
(venv) # | ||
``` | ||
|
||
- Install requirements.txt | ||
``` | ||
pip install -r requirements.txt | ||
``` | ||
|
||
|
||
- Install NATs | ||
``` | ||
docker pull nats:latest | ||
docker run -p 4222:4222 -ti nats:latest | ||
``` | ||
|
||
|
||
# Start the lab | ||
|
||
``` | ||
cd lab | ||
clab deploy | ||
``` | ||
|
||
# Start the message bus (NATs) | ||
|
||
|
||
|