Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/labs/clab.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

## Supported Versions

The latest _netlab_ release was tested with _containerlab_ version 0.71.1. That's also the version the **netlab install containerlab** command installs.
The latest _netlab_ release was tested with _containerlab_ version 0.72. That's also the version the **netlab install containerlab** command installs.

If needed, use ```sudo containerlab version upgrade``` to upgrade to the latest _containerlab_ version.

Expand Down
2 changes: 1 addition & 1 deletion netsim/devices/iosv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ features:
clab:
image: vrnetlab/cisco_vios:15.9.3
node:
kind: linux
kind: cisco_vios
interface.name: eth{ifindex}
build: https://github.com/srl-labs/vrnetlab/tree/master/vios
2 changes: 1 addition & 1 deletion netsim/devices/iosvl2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ libvirt:
clab:
image: vrnetlab/cisco_viosl2:15.2
node:
kind: linux
kind: cisco_vios
interface.name: eth{ifindex}
build: https://github.com/srl-labs/vrnetlab/tree/master/viosl2
1 change: 0 additions & 1 deletion netsim/install/containerlab.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#!/bin/bash
#
# Install a specific version of Containerlab -- it's now set in 'netlab install' before calling this script
# CONTAINERLAB_VERSION="0.62.2"
#
set -e
REPLACE="--upgrade"
Expand Down
6 changes: 3 additions & 3 deletions netsim/providers/clab.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ config: clab.yml
lab_prefix: "clab" # Containerlab default, set to "" to remove prefix
node_config_special: [ binds, config_templates, image, kind, startup-config, srl-agents, runtime ]
template: clab.j2
version: 0.71.1
version: 0.72
# Preserve env to allow user to configure PATH
start: sudo -E containerlab deploy --reconfigure -t clab.yml
stop: sudo -E containerlab destroy --cleanup -t clab.yml
Expand All @@ -15,8 +15,8 @@ act_title: "Running containers"
probe:
- cmd: "containerlab version"
err: "Containerlab is not installed"
- cmd: [ bash, '-c', "[[ `containerlab version|awk '/version/ {print $2}'` > '0.69.2' ]] && echo OK" ]
err: "Containerlab version is too old, please upgrade to 0.69.3 or later with 'sudo containerlab version upgrade'"
- cmd: [ bash, '-c', "[[ `containerlab version|awk '/version/ {print $2}'` > '0.71.999' ]] && echo OK" ]
err: "Containerlab version is too old, please upgrade to 0.72 or later with 'sudo containerlab version upgrade'"

cleanup: [ clab.yml, clab_files ]
bridge_type: bridge # Use 'ovs-bridge' to create Openvswitch bridges
Expand Down