File tree 5 files changed +28
-11
lines changed
5 files changed +28
-11
lines changed Original file line number Diff line number Diff line change @@ -145,3 +145,14 @@ All notable changes to this project will be documented in this file.
145
145
## v0.5.1
146
146
### Fixed Issues
147
147
- Fix address duplication error while active-standby switch of manager pods happens
148
+
149
+ ## v0.6.0
150
+ ### New features
151
+ - Remove DualStack feature gate and make it built in
152
+ - Support to retain ip for kubevirt VMs
153
+
154
+ ### Improvements
155
+ - Bump golang from v1.16 to v1.17
156
+ - Add limitations for creating overlapped subnets
157
+ - Disable the automatic iptables mode detection of felix
158
+ - Print statistics for Network CR
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.1
6
- appVersion : 0.5.1
5
+ version : 0.4.0
6
+ appVersion : 0.6.0
7
7
home : https://github.com/alibaba/hybridnet
8
8
description : A container networking solution aiming at hybrid clouds.
9
9
keywords :
@@ -22,5 +22,11 @@ annotations:
22
22
artifacthub.io/prerelease : " false"
23
23
# List of changes for the release in artifacthub.io
24
24
artifacthub.io/changes : |
25
- - "Update hybridnet image to v0.5.1"
26
- - "Make network initialization optional"
25
+ - "Remove DualStack feature gate and make it built in"
26
+ - "Support to retain ip for kubevirt VMs"
27
+ - "Bump golang from v1.16 to v1.17"
28
+ - "Add limitations for creating overlapped subnets"
29
+ - "Disable the automatic iptables mode detection of felix"
30
+ - "Print statistics for Network CR"
31
+ - "Remove dualStack flag of charts"
32
+ - "Add vmIPRetain flag for charts"
Original file line number Diff line number Diff line change 54
54
- --vtep-address-cidrs={{ .Values.daemon.vtepAddressCIDRs }}
55
55
{{ end }}
56
56
- --enable-vlan-arp-enhancement={{ .Values.daemon.enableVlanARPEnhancement }}
57
- - --feature-gates=MultiCluster={{ .Values.multiCluster }},DualStack={{ .Values.dualStack }}
57
+ - --feature-gates=MultiCluster={{ .Values.multiCluster }}
58
58
securityContext :
59
59
runAsUser : 0
60
60
privileged : true
Original file line number Diff line number Diff line change 35
35
command :
36
36
- /hybridnet/hybridnet-manager
37
37
- --default-ip-retain={{ .Values.defaultIPRetain }}
38
- - --feature-gates=MultiCluster={{ .Values.multiCluster }},DualStack ={{ .Values.dualStack }}
38
+ - --feature-gates=MultiCluster={{ .Values.multiCluster }},VMIPRetain ={{ .Values.vmIPRetain }}
39
39
env :
40
40
- name : DEFAULT_NETWORK_TYPE
41
41
value : {{ .Values.defaultNetworkType }}
82
82
command :
83
83
- /hybridnet/hybridnet-webhook
84
84
- --default-ip-retain={{ .Values.defaultIPRetain }}
85
- - --feature-gates=MultiCluster={{ .Values.multiCluster }},DualStack={{ .Values.dualStack }}
85
+ - --feature-gates=MultiCluster={{ .Values.multiCluster }}
86
86
args :
87
87
- --port=9898
88
88
env :
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.1
4
+ tag : v0.6.0
5
5
imagePullPolicy : IfNotPresent
6
6
registryURL : " docker.io"
7
7
@@ -72,8 +72,8 @@ defaultNetworkType: Overlay
72
72
# -- Enable the MultiCluster feature. true or false
73
73
multiCluster : false
74
74
75
- # -- Enable the DualStack feature. IPv6 is disabled when is dualStack is not enable. true or false
76
- dualStack : false
77
-
78
75
# -- The default value when pod's ip family is unspecified. IPv4 or IPv6 or DualStack
79
76
defaultIPFamily : IPv4
77
+
78
+ # -- Enable the support of retaining IP for kubevirt VM. true or false
79
+ vmIPRetain : false
You can’t perform that action at this time.
0 commit comments