File tree 4 files changed +14
-7
lines changed
4 files changed +14
-7
lines changed Original file line number Diff line number Diff line change @@ -141,3 +141,7 @@ All notable changes to this project will be documented in this file.
141
141
142
142
### Improvements
143
143
- Bump controller-runtime from v0.8.3 to v0.9.7
144
+
145
+ ## v0.5.1
146
+ ### Fixed Issues
147
+ - Fix address duplication error while active-standby switch of manager pods happens
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ apiVersion: v2
2
2
name : hybridnet
3
3
# When the version is modified, make sure the artifacthub.io/changes list is updated
4
4
# Also update CHANGELOG.md
5
- version : 0.3.0
6
- appVersion : 0.5.0
5
+ version : 0.3.1
6
+ appVersion : 0.5.1
7
7
home : https://github.com/alibaba/hybridnet
8
8
description : A container networking solution aiming at hybrid clouds.
9
9
keywords :
@@ -22,6 +22,5 @@ annotations:
22
22
artifacthub.io/prerelease : " false"
23
23
# List of changes for the release in artifacthub.io
24
24
artifacthub.io/changes : |
25
- - "Change IPInstance APIs and optimize IP allocation performance of manager"
26
- - "Introduce GlobalBGP type Network"
27
- - "Bump controller runtime from v0.8.3 to v0.9.7"
25
+ - "Update hybridnet image to v0.5.1"
26
+ - "Make network initialization optional"
Original file line number Diff line number Diff line change 1
- {{ if .Release.IsInstall }}
1
+ {{ if and (eq .Release.IsInstall true) (eq .Values.init.withoutNetwork false) }}
2
2
apiVersion : networking.alibaba.com/v1
3
3
kind : Network
4
4
metadata :
Original file line number Diff line number Diff line change 1
1
images :
2
2
hybridnet :
3
3
image : hybridnetdev/hybridnet
4
- tag : v0.5.0
4
+ tag : v0.5.1
5
5
imagePullPolicy : IfNotPresent
6
6
registryURL : " docker.io"
7
7
8
8
# -- It's always encouraged to use an overlay network to finish some general jobs in hybridnet. This
9
9
# chart will always create an "init" overlay Network/Subnet to initialize the K8s cluster. "init" Network/Subnet
10
10
# will only be created once.
11
11
init :
12
+
13
+ # Whether create "init" overlay Network/Subnet
14
+ withoutNetwork : false
15
+
12
16
# -- CIDR of "init" Subnet.
13
17
cidr : 100.64.0.0/16
14
18
You can’t perform that action at this time.
0 commit comments