Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
goSDN
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
danet
goSDN
Merge requests
!196
Add complex clab topology 1.0
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Add complex clab topology 1.0
add-complex-clab-topology
into
develop
Overview
0
Commits
5
Pipelines
7
Changes
4
Merged
Add complex clab topology 1.0
Felix Ohms
requested to merge
add-complex-clab-topology
into
develop
Jul 22, 2021
Overview
0
Commits
5
Pipelines
7
Changes
4
Description
Add a more complex network topology, modelled in containerlab.
Related Issue
Motivation and Context
How Has This Been Tested?
Screenshots (if appropriate):
Types of changes
Bug fix (non-breaking change which fixes an issue)
New feature (non-breaking change which adds functionality)
Breaking change (fix or feature that would cause existing functionality to change)
Checklist:
My code follows the code style of this project.
My change requires a change to the documentation.
I have updated the documentation accordingly.
I have read the
CONTRIBUTING
document.
I have added tests to cover my changes.
All new and existing tests passed.
Edited
Nov 10, 2021
by
Felix Ohms
0
0
Merge request reports
Compare
version 1
version 6
46ad7d9b
Nov 8, 2021
version 5
fb197187
Nov 8, 2021
version 4
fb197187
Nov 8, 2021
version 3
ab5e5ac6
Nov 8, 2021
version 2
6465c55a
Jul 23, 2021
version 1
0a79a125
Jul 22, 2021
develop (base)
and
version 6
latest version
fa3c5e71
5 commits,
Nov 10, 2021
version 6
46ad7d9b
5 commits,
Nov 8, 2021
version 5
fb197187
4 commits,
Nov 8, 2021
version 4
fb197187
4 commits,
Nov 8, 2021
version 3
ab5e5ac6
3 commits,
Nov 8, 2021
version 2
6465c55a
2 commits,
Jul 23, 2021
version 1
0a79a125
1 commit,
Jul 22, 2021
Show latest version
4 files
+
36
−
12
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
build/ci/.containerlab-ci.yml
+
7
−
2
View file @ 46ad7d9b
Edit in single-file editor
Open in Web IDE
Show full file
@@ -42,7 +42,7 @@ variables:
containerlab:template:integration
:
extends
:
.containerlab_template
variables
:
CLAB_TEMPLATE
:
"
${CI_PROJECT_DIR}/test/containerlab/
int01
.clab.tmpl.yml"
CLAB_TEMPLATE
:
"
${CI_PROJECT_DIR}/test/containerlab/
complex-1.0
.clab.tmpl.yml"
rules
:
-
if
:
$CI_PIPELINE_SOURCE == "merge_request_event" && ($CI_MERGE_REQUEST_TARGET_BRANCH_NAME == $CI_DEFAULT_BRANCH || $CI_MERGE_REQUEST_TARGET_BRANCH_NAME == 'develop')
-
if
:
$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
@@ -58,7 +58,12 @@ containerlab:deploy:integration:
echo -e "\
GOSDN_HTTP_PORT=$(docker_host_port 8080 clab-${CLAB_NAME}-gosdn)\n\
GOSDN_GRPC_PORT=$(docker_host_port 55055 clab-${CLAB_NAME}-gosdn)\n\
CEOS1_PORT=$(docker_host_port 6030 clab-${CLAB_NAME}-ceos1)" \
CEOS1_1_PORT=$(docker_host_port 6030 clab-${CLAB_NAME}-ceos1-1)\n\
CEOS1_2_PORT=$(docker_host_port 6030 clab-${CLAB_NAME}-ceos1-2)\n\
CEOS2_1_1_PORT=$(docker_host_port 6030 clab-${CLAB_NAME}-ceos2-1-1)\n\
CEOS2_1_2_PORT=$(docker_host_port 6030 clab-${CLAB_NAME}-ceos2-1-2)\n\
CEOS2_2_1_PORT=$(docker_host_port 6030 clab-${CLAB_NAME}-ceos2-2-1)\n\
CEOS2_2_2_PORT=$(docker_host_port 6030 clab-${CLAB_NAME}-ceos2-2-2)" \
> ${CI_PROJECT_DIR}/build.env
-
cat ${CI_PROJECT_DIR}/build.env
artifacts
:
Loading