Skip to content

Commit 98a66b8

Browse files
authored
Merge pull request #289 from hhyasdf/chore/update-chart-to-0.4.0
update chart to 0.4.0
2 parents 3196738 + 52b09e5 commit 98a66b8

File tree

5 files changed

+28
-11
lines changed

5 files changed

+28
-11
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -145,3 +145,14 @@ All notable changes to this project will be documented in this file.
145145
## v0.5.1
146146
### Fixed Issues
147147
- 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

charts/hybridnet/Chart.yaml

+10-4
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: hybridnet
33
# When the version is modified, make sure the artifacthub.io/changes list is updated
44
# Also update CHANGELOG.md
5-
version: 0.3.1
6-
appVersion: 0.5.1
5+
version: 0.4.0
6+
appVersion: 0.6.0
77
home: https://github.com/alibaba/hybridnet
88
description: A container networking solution aiming at hybrid clouds.
99
keywords:
@@ -22,5 +22,11 @@ annotations:
2222
artifacthub.io/prerelease: "false"
2323
# List of changes for the release in artifacthub.io
2424
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"

charts/hybridnet/templates/daemonsets.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ spec:
5454
- --vtep-address-cidrs={{ .Values.daemon.vtepAddressCIDRs }}
5555
{{ end }}
5656
- --enable-vlan-arp-enhancement={{ .Values.daemon.enableVlanARPEnhancement }}
57-
- --feature-gates=MultiCluster={{ .Values.multiCluster }},DualStack={{ .Values.dualStack }}
57+
- --feature-gates=MultiCluster={{ .Values.multiCluster }}
5858
securityContext:
5959
runAsUser: 0
6060
privileged: true

charts/hybridnet/templates/deployments.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ spec:
3535
command:
3636
- /hybridnet/hybridnet-manager
3737
- --default-ip-retain={{ .Values.defaultIPRetain }}
38-
- --feature-gates=MultiCluster={{ .Values.multiCluster }},DualStack={{ .Values.dualStack }}
38+
- --feature-gates=MultiCluster={{ .Values.multiCluster }},VMIPRetain={{ .Values.vmIPRetain }}
3939
env:
4040
- name: DEFAULT_NETWORK_TYPE
4141
value: {{ .Values.defaultNetworkType }}
@@ -82,7 +82,7 @@ spec:
8282
command:
8383
- /hybridnet/hybridnet-webhook
8484
- --default-ip-retain={{ .Values.defaultIPRetain }}
85-
- --feature-gates=MultiCluster={{ .Values.multiCluster }},DualStack={{ .Values.dualStack }}
85+
- --feature-gates=MultiCluster={{ .Values.multiCluster }}
8686
args:
8787
- --port=9898
8888
env:

charts/hybridnet/values.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
images:
22
hybridnet:
33
image: hybridnetdev/hybridnet
4-
tag: v0.5.1
4+
tag: v0.6.0
55
imagePullPolicy: IfNotPresent
66
registryURL: "docker.io"
77

@@ -72,8 +72,8 @@ defaultNetworkType: Overlay
7272
# -- Enable the MultiCluster feature. true or false
7373
multiCluster: false
7474

75-
# -- Enable the DualStack feature. IPv6 is disabled when is dualStack is not enable. true or false
76-
dualStack: false
77-
7875
# -- The default value when pod's ip family is unspecified. IPv4 or IPv6 or DualStack
7976
defaultIPFamily: IPv4
77+
78+
# -- Enable the support of retaining IP for kubevirt VM. true or false
79+
vmIPRetain: false

0 commit comments

Comments
 (0)