Skip to content

Commit

Permalink
Update documentation
Browse files Browse the repository at this point in the history
Signed-off-by: Simon Misencik <[email protected]>
  • Loading branch information
SimonMisencik committed Jul 27, 2023
1 parent 842e48e commit bae327e
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 5 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,16 @@ You can specify requered cli and netconf devices in devices.csv file.
- count_of_devices - netconf device specific value. Count of devices
- starting_port - netconf device specific value. First port of netconf testool

### Docker compose setup

```
docker-compose up -d
```

### Kubernetes setup

```
helm repo add frinx https://FRINXio.github.io/helm-charts
helm install [RELEASE_NAME] frinx/sample-topology
```
more info at https://artifacthub.io/packages/helm/frinx-helm-charts/sample-topology
5 changes: 1 addition & 4 deletions devices.csv
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,4 @@ cli,leaf4,10012,-,-,-
cli,leaf5,10013,-,-,-
cli,spine1,10014,-,-,-
cli,spine2,10015,-,-,-
netconf,iosxr653_1,17000,cisco-iosxr-653,2,17000
netconf,iosxr653_2,17001,cisco-iosxr-653,2,17000
netconf,iosxr663_1,17100,cisco-iosxr-663,1,17100
netconf,junos_1,17200,junos-16-2021,1,17200

11 changes: 11 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
version: "3.7"

services:
sample-topology:
image: frinx/sample-topology:3.2.0
volumes:
- ./devices.csv:/sample-topology/devices.csv
ports:
- 17000-17200:17000-17200
command:
python2.7 main.py
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def pushConfigToNetconfTesttool(devices):
LOG.info("Device {} is ready".format(device["device_name"]))

def push_operation_data_to_device(port, operation_data):
m = manager.connect(host=os.getenv('DOCKER_GWBRIDGE_IP'), port=port, username="frinx",
m = manager.connect(host=os.getenv('DOCKER_GWBRIDGE_IP', 'localhost'), port=port, username="frinx",
password="frinx", hostkey_verify=False)

netconf_operation_data = open(str(operation_data)).read()
Expand Down

0 comments on commit bae327e

Please sign in to comment.