Releases: harvester/network-controller-harvester
Releases · harvester/network-controller-harvester
v0.3.2-rc2
simply long check expressions
v0.3.2-rc1
What's Changed
- GetLocalArea function is not available for untagged network by @yaocw2020 in #68
- Add codeql and trivy CI scanning by @guangbochen in #69
- Bump SLE BCI image to 15.4 by @masteryyh in #70
- Support updating VM networks and changing cluster network migration of vlanconfigs by @yaocw2020 in #67
New Contributors
- @masteryyh made their first contribution in #70
Full Changelog: v0.3.1...v0.3.2-rc1
v0.3.1
What's Changed
- Fix two issues related with the vlanconfig by @yaocw2020 in #66
Full Changelog: v0.3.0...v0.3.1
v0.3.0
What's Changed
- Vlan enhancement by @yaocw2020 in #59
- Reject vlanconfigs overlap with others and add clusternetwork status and webhook by @yaocw2020 in #60
- Remove vlan.localAreas by @yaocw2020 in #62
- Add link monitor by @yaocw2020 in #61
- Add untagged network by @yaocw2020 in #63
- Get link state from Link.Attrs().OperState by @yaocw2020 in #64
- Bump harvester/webhhok to v0.1.2 by @chrisho in #65
New Contributors
Full Changelog: v0.2.8...v0.3.0
v0.3.0-rc3
What's Changed
- Remove vlan.localAreas by @yaocw2020 in #62
- Add link monitor by @yaocw2020 in #61
Full Changelog: v0.3.0-rc2...v0.3.0-rc3
v0.3.0-rc2
Reserve nodenetwork CRD and tag it deprecated
v0.3.0-rc1
Fix review issues
v0.2.8
What's Changed
- Bump golang to 1.18 by @weihanglo in #58
New Contributors
- @weihanglo made their first contribution in #58
Full Changelog: v0.2.7...v0.2.8
v0.2.7
Migrate base image to BCI image We won't install ebtables in the new image. The harvester-br0 only inherits the IP address and routes of the harvester-mgmt network interface. Meanwhile, the IP address of the harvester-mgmt could not be changed. Therefore, it's not necessary to allow the DHCP package passing to the VLAN interface anymore.
v0.2.6
Ignore default PVID Related issue: https://github.com/harvester/harvester/issues/1669 The command to configure PVID is different from other VIDs. Assume we want to configure PVID as 1 and add VID 10 for harvester-mgmt, the commands are as followings. - Configure PVID 1 `bridge vlan add vid 1 dev harvester-mgmt pvid untagged master` - Add VID 10 `bridge vlan add vid 10 dev harvester-mgmt master` The default PVID is 1, so we ignore it.