From 45376292b885604fb4e74fbb995bf13b8f4c8856 Mon Sep 17 00:00:00 2001 From: hhyasdf <552483776@qq.com> Date: Tue, 3 Jan 2023 17:29:09 +0800 Subject: [PATCH] chore: update changelog and chart to v0.5.10 --- CHANGELOG.md | 10 ++++++++++ charts/hybridnet/Chart.yaml | 6 +++--- charts/hybridnet/templates/daemonsets.yaml | 3 +++ charts/hybridnet/templates/deployments.yaml | 6 ++++++ charts/hybridnet/values.yaml | 2 +- 5 files changed, 23 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a9c354fe..60f3b1a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -205,3 +205,13 @@ All notable changes to this project will be documented in this file. ### Improvements - Handle possible cache sync failure for manager (#338) + +## v0.7.7 +### Fixed Issues +- Fix capacity calculation error of `0.X.X.X` subnets (#348 ) +- Fix invalid validation of vlan id in daemon (#352 ) +- Fix retained ip pods' suddenlly getting stuck in `Terminating` if their owner referrence is removed (#353 ) +- Skip unscheduled pods in pod reconciliation in manager (#354 ) + +### Improvements +- Switch package `ioutil` to `os` because of deprecation (#349 ) diff --git a/charts/hybridnet/Chart.yaml b/charts/hybridnet/Chart.yaml index 1bb583f7..de6fc608 100644 --- a/charts/hybridnet/Chart.yaml +++ b/charts/hybridnet/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: hybridnet # When the version is modified, make sure the artifacthub.io/changes list is updated # Also update CHANGELOG.md -version: 0.5.9 -appVersion: 0.7.6 +version: 0.5.10 +appVersion: 0.7.7 home: https://github.com/alibaba/hybridnet description: A container networking solution aiming at hybrid clouds. keywords: @@ -22,4 +22,4 @@ annotations: artifacthub.io/prerelease: "false" # List of changes for the release in artifacthub.io artifacthub.io/changes: | - - "Update image to v0.7.6" + - "Update image to v0.7.7" diff --git a/charts/hybridnet/templates/daemonsets.yaml b/charts/hybridnet/templates/daemonsets.yaml index a65ad422..6765d27a 100644 --- a/charts/hybridnet/templates/daemonsets.yaml +++ b/charts/hybridnet/templates/daemonsets.yaml @@ -3,6 +3,9 @@ kind: DaemonSet metadata: name: hybridnet-daemon namespace: kube-system + labels: + app: hybridnet + component: daemon spec: selector: matchLabels: diff --git a/charts/hybridnet/templates/deployments.yaml b/charts/hybridnet/templates/deployments.yaml index 626f4be6..67687456 100644 --- a/charts/hybridnet/templates/deployments.yaml +++ b/charts/hybridnet/templates/deployments.yaml @@ -3,6 +3,9 @@ kind: Deployment metadata: name: hybridnet-manager namespace: kube-system + labels: + app: hybridnet + component: manager spec: replicas: {{ .Values.manager.replicas }} selector: @@ -81,6 +84,9 @@ kind: Deployment metadata: name: hybridnet-webhook namespace: kube-system + labels: + app: hybridnet + component: webhook spec: replicas: {{ .Values.webhook.replicas }} selector: diff --git a/charts/hybridnet/values.yaml b/charts/hybridnet/values.yaml index 7e876519..bb354773 100644 --- a/charts/hybridnet/values.yaml +++ b/charts/hybridnet/values.yaml @@ -1,7 +1,7 @@ images: hybridnet: image: hybridnetdev/hybridnet - tag: v0.7.6 + tag: v0.7.7 imagePullPolicy: IfNotPresent registryURL: "docker.io"