Skip to content

Commit

Permalink
Merge pull request #1035 from srl-labs/rn-0.32
Browse files Browse the repository at this point in the history
Rn 0.32
  • Loading branch information
hellt authored Sep 22, 2022
2 parents faac41d + 8c7d24f commit 2818a4a
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env:
GOVER: 1.18.4
CGO_ENABLED: 0
MKDOCS_INS_VER: 8.4.3-insiders-4.22.1
GORELEASER_VER: v1.5.0
GORELEASER_VER: v1.11.4
PODMAN_VER: v4.1.1

jobs:
Expand Down
11 changes: 4 additions & 7 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ builds:
- amd64
- arm64
hooks:
post: upx "{{ .Path }}"
post:
- upx "{{ .Path }}"
dockers:
- goos: linux
goarch: amd64
Expand Down Expand Up @@ -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
Expand Down
19 changes: 19 additions & 0 deletions docs/rn/0.32.md
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
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ nav:
- Leaf-spine topology: lab-examples/templated01.md
- 5-stage Clos topology: lab-examples/templated02.md
- Release notes:
- "0.32": rn/0.32.md
- "0.31": rn/0.31.md
- "0.30": rn/0.30.md
- "0.29": rn/0.29.md
Expand Down

0 comments on commit 2818a4a

Please sign in to comment.