-
Notifications
You must be signed in to change notification settings - Fork 270
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1035 from srl-labs/rn-0.32
Rn 0.32
- Loading branch information
Showing
4 changed files
with
25 additions
and
8 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
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 |
---|---|---|
|
@@ -18,7 +18,8 @@ builds: | |
- amd64 | ||
- arm64 | ||
hooks: | ||
post: upx "{{ .Path }}" | ||
post: | ||
- upx "{{ .Path }}" | ||
dockers: | ||
- goos: linux | ||
goarch: amd64 | ||
|
@@ -46,17 +47,13 @@ publishers: | |
release: | ||
prerelease: auto | ||
changelog: | ||
sort: asc | ||
filters: | ||
exclude: | ||
- "^docs:" | ||
- "^test:" | ||
use: github-native | ||
|
||
nfpms: | ||
- id: containerlab-nfpms | ||
file_name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}" | ||
package_name: containerlab | ||
maintainer: Wim Henderickx <wim.henderickx@nokia.com>, Karim Radhouani <medkarimrdi@gmail.com>, Roman Dodin <dodin.roman@gmail.com> | ||
maintainer: Roman Dodin <dodin.roman@gmail.com>, Karim Radhouani <[email protected]> | ||
homepage: https://containerlab.dev | ||
description: | | ||
containerlab deploys containerized networking topologies | ||
|
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,19 @@ | ||
# Release 0.32 | ||
|
||
:material-calendar: 2022-09-22 | ||
|
||
## Dependency Manager | ||
|
||
Our own @steiler has volunteered to tackle a problem of inter-node dependency management and produced three mighty PRs #1013, #1022, #1026. Dependency Manager (or DM for short) gives containerlab superpowers to decide the scheduling order of the lab nodes. | ||
|
||
Scheduling the order of the nodes is important. Nodes with dynamic management IPs should start after the nodes with static IPs, nodes with shared network namespace should start after the donor node is ready, and so on... | ||
|
||
These implicit inter-node dependencies are handled by containerlab in the background, so you don't have to worry. Sometimes, though, you may want to influence the order of nodes scheduling yourself. For example, you may want to start a telemetry collector after the network nodes are running. For that reason, a new node property [`wait-for`](../manual/nodes.md#wait-for) has been introduced. | ||
|
||
In `wait-for` section, you can specify node names that this node will wait for before being allowed to get scheduled. | ||
|
||
## Miscellaneous | ||
|
||
* iptables interactions with external bridges have been fixed #982 | ||
* dependabot integration will keep watch on the deps used in containerlab and update to latest once available #984 | ||
* crpd startup config handling has been fixed in a scenario when some nodes have used startup config and some don't |
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