Skip to content

Commit 8c82249

Browse files
committed
feat(2.6): release 2.6
release 2.6 Signed-off-by: ysicing <[email protected]>
1 parent 55689bb commit 8c82249

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.3.8
1+
1.3.9

common/const.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ const (
6060
)
6161

6262
const (
63-
DefaultQuchengVersion = "stable-2.5"
63+
DefaultQuchengVersion = "stable-2.6"
6464
K3sBinName = "k3s"
6565
K3sBinPath = "/usr/local/bin/k3s"
6666
HelmBinName = "helm"

internal/pkg/cluster/qucheng.go

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,13 @@ func (p *Cluster) InstallQuCheng() error {
150150
cfg.DataDir = p.DataDir
151151
cfg.SaveConfig()
152152
chartversion := common.GetVersion(p.QuchengVersion)
153+
p.Log.Info("start deploy cne custom tools")
154+
toolargs := []string{"experimental", "helm", "upgrade", "--name", "selfcert", "--repo", common.DefaultHelmRepoName, "--chart", "selfcert", "--namespace", common.DefaultSystem}
155+
if helmstd, err := qcexec.Command(os.Args[0], toolargs...).CombinedOutput(); err != nil {
156+
p.Log.Warnf("deploy cne custom tools err: %v, std: %s", err, string(helmstd))
157+
} else {
158+
p.Log.Done("deployed cne custom tools success")
159+
}
153160
p.Log.Info("start deploy cne operator")
154161
operatorargs := []string{"experimental", "helm", "upgrade", "--name", common.DefaultCneOperatorName, "--repo", common.DefaultHelmRepoName, "--chart", common.DefaultCneOperatorName, "--namespace", common.DefaultSystem,
155162
"--set", "minio.ingress.enabled=true",

0 commit comments

Comments
 (0)