Skip to content

Releases: harvester/network-controller-harvester

v0.3.2-rc2

09 Mar 14:02
Compare
Choose a tag to compare
v0.3.2-rc2 Pre-release
Pre-release
simply long check expressions

v0.3.2-rc1

14 Feb 11:40
Compare
Choose a tag to compare
v0.3.2-rc1 Pre-release
Pre-release

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

Full Changelog: v0.3.1...v0.3.2-rc1

v0.3.1

22 Nov 06:52
Compare
Choose a tag to compare

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

24 Oct 03:45
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.2.8...v0.3.0

v0.3.0-rc3

13 Oct 23:37
Compare
Choose a tag to compare
v0.3.0-rc3 Pre-release
Pre-release

What's Changed

Full Changelog: v0.3.0-rc2...v0.3.0-rc3

v0.3.0-rc2

30 Sep 10:06
Compare
Choose a tag to compare
v0.3.0-rc2 Pre-release
Pre-release
Reserve nodenetwork CRD and tag it deprecated

v0.3.0-rc1

21 Sep 11:56
Compare
Choose a tag to compare
v0.3.0-rc1 Pre-release
Pre-release
Fix review issues

v0.2.8

04 Aug 07:13
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.2.7...v0.2.8

v0.2.7

11 Mar 11:18
Compare
Choose a tag to compare
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

16 Dec 07:47
Compare
Choose a tag to compare
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.