From 11065bb21d4e72b47fd5879f696451592539aaa8 Mon Sep 17 00:00:00 2001 From: Aylei Date: Thu, 18 May 2023 19:16:57 +0800 Subject: [PATCH] bump chart to 0.8.0-alpha.4 (#361) Signed-off-by: Aylei --- charts/matrixone-operator/Chart.yaml | 2 +- charts/matrixone-operator/values.yaml | 2 +- pkg/controllers/logset/controller.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/matrixone-operator/Chart.yaml b/charts/matrixone-operator/Chart.yaml index 2194391c..90f6d57e 100644 --- a/charts/matrixone-operator/Chart.yaml +++ b/charts/matrixone-operator/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: matrixone-operator description: Matrixone Kubernetes Operator type: application -version: 0.8.0-alpha.3 +version: 0.8.0-alpha.4 appVersion: 0.1.0 kubeVersion: ">=1.19.0-0" icon: https://raw.githubusercontent.com/matrixorigin/artwork/main/docs/overview/logo.png diff --git a/charts/matrixone-operator/values.yaml b/charts/matrixone-operator/values.yaml index cb0fc225..f25a8faf 100644 --- a/charts/matrixone-operator/values.yaml +++ b/charts/matrixone-operator/values.yaml @@ -9,7 +9,7 @@ replicaCount: 1 image: repository: matrixorigin/matrixone-operator - tag: "0.8.0-alpha.3" + tag: "0.8.0-alpha.4" pullPolicy: IfNotPresent imagePullSecrets: [] diff --git a/pkg/controllers/logset/controller.go b/pkg/controllers/logset/controller.go index 2ec3c3de..17d87ab8 100644 --- a/pkg/controllers/logset/controller.go +++ b/pkg/controllers/logset/controller.go @@ -207,7 +207,7 @@ func (r *WithResources) Repair(ctx *recon.Context[*v1alpha1.LogSet]) error { return nil } if len(r.sts.Spec.ReserveOrdinals) >= minorityLimit { - ctx.Log.Info("failover limit %d has reached, only minority failover can be safely automated", minorityLimit) + ctx.Log.Info("failover limit has reached, only minority failover can be safely automated", "limit", minorityLimit) return nil } toRepair := ctx.Obj.Status.StoresFailedFor(ctx.Obj.Spec.GetStoreFailureTimeout().Duration)