Skip to content

Commit 815b589

Browse files
authored
Merge pull request #279 from hhyasdf/chore/update-chart-to-0.3.1
update hybridnet chart to 0.3.1
2 parents 2cd7a7e + 01cdfce commit 815b589

File tree

4 files changed

+14
-7
lines changed

4 files changed

+14
-7
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -141,3 +141,7 @@ All notable changes to this project will be documented in this file.
141141

142142
### Improvements
143143
- 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

charts/hybridnet/Chart.yaml

+4-5
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.0
6-
appVersion: 0.5.0
5+
version: 0.3.1
6+
appVersion: 0.5.1
77
home: https://github.com/alibaba/hybridnet
88
description: A container networking solution aiming at hybrid clouds.
99
keywords:
@@ -22,6 +22,5 @@ annotations:
2222
artifacthub.io/prerelease: "false"
2323
# List of changes for the release in artifacthub.io
2424
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"

charts/hybridnet/templates/networkinitialization.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{ if .Release.IsInstall }}
1+
{{ if and (eq .Release.IsInstall true) (eq .Values.init.withoutNetwork false) }}
22
apiVersion: networking.alibaba.com/v1
33
kind: Network
44
metadata:

charts/hybridnet/values.yaml

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

88
# -- It's always encouraged to use an overlay network to finish some general jobs in hybridnet. This
99
# chart will always create an "init" overlay Network/Subnet to initialize the K8s cluster. "init" Network/Subnet
1010
# will only be created once.
1111
init:
12+
13+
# Whether create "init" overlay Network/Subnet
14+
withoutNetwork: false
15+
1216
# -- CIDR of "init" Subnet.
1317
cidr: 100.64.0.0/16
1418

0 commit comments

Comments
 (0)