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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
danet
goSDN
Merge requests
!477
Update deprecated fields in clab along other parameters
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Update deprecated fields in clab along other parameters
update-deprecated-fields-in-clab-along-other-parameters
into
master
Overview
0
Commits
4
Pipelines
3
Changes
11
Merged
Fabian Seidl
requested to merge
update-deprecated-fields-in-clab-along-other-parameters
into
master
1 year ago
Overview
0
Commits
4
Pipelines
3
Changes
11
Expand
Description
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.
0
0
Merge request reports
Compare
master
version 2
15392d73
1 year ago
version 1
8c208af2
1 year ago
master (base)
and
version 1
latest version
3a6e48a6
4 commits,
1 year ago
version 2
15392d73
3 commits,
1 year ago
version 1
8c208af2
2 commits,
1 year ago
11 files
+
19
−
19
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
11
Search (e.g. *.vue) (Ctrl+P)
applications/venv-manager/containerlab/containerlab.go
+
3
−
3
Options
@@ -3,8 +3,8 @@ package containerlab
@@ -3,8 +3,8 @@ package containerlab
// Management represents the management part for containerlab.
// Management represents the management part for containerlab.
type
Management
struct
{
type
Management
struct
{
Network
string
`yaml:"network,omitempty"`
Network
string
`yaml:"network,omitempty"`
Ipv4Subnet
string
`yaml:"ipv4
_
subnet,omitempty"`
Ipv4Subnet
string
`yaml:"ipv4
-
subnet,omitempty"`
Ipv6Subnet
string
`yaml:"ipv6
_
subnet,omitempty"`
Ipv6Subnet
string
`yaml:"ipv6
-
subnet,omitempty"`
}
}
// Link represents a link for containerlab.
// Link represents a link for containerlab.
@@ -16,7 +16,7 @@ type Link struct {
@@ -16,7 +16,7 @@ type Link struct {
type
Node
struct
{
type
Node
struct
{
Kind
string
`yaml:"kind"`
Kind
string
`yaml:"kind"`
Image
string
`yaml:"image"`
Image
string
`yaml:"image"`
MgmtIpv4
string
`yaml:"mgmt
_
ipv4"`
MgmtIpv4
string
`yaml:"mgmt
-
ipv4"`
}
}
// Topology represent a topology for containerlab.
// Topology represent a topology for containerlab.
Loading