mirror of
https://github.com/kubesphere/kubekey.git
synced 2026-01-01 00:59:24 +00:00
72 lines
1.7 KiB
Go
Executable File
72 lines
1.7 KiB
Go
Executable File
/*
|
|
Copyright 2022 The KubeSphere Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package nodes
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/kubesphere/kubekey/cmd/kk/pkg/common"
|
|
"github.com/kubesphere/kubekey/cmd/kk/pkg/core/module"
|
|
"github.com/kubesphere/kubekey/cmd/kk/pkg/core/pipeline"
|
|
"github.com/kubesphere/kubekey/cmd/kk/pkg/phase/confirm"
|
|
"github.com/kubesphere/kubekey/cmd/kk/pkg/phase/precheck"
|
|
)
|
|
|
|
func NewUpgradeNodesPipeline(runtime *common.KubeRuntime) error {
|
|
|
|
m := []module.Module{
|
|
&precheck.UpgradePreCheckModule{},
|
|
&confirm.UpgradeK8sConfirmModule{},
|
|
&UpgradeNodesModule{},
|
|
}
|
|
|
|
p := pipeline.Pipeline{
|
|
Name: "UpgradeNodesPipeline",
|
|
Modules: m,
|
|
Runtime: runtime,
|
|
}
|
|
if err := p.Start(); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func UpgradeNodes(args common.Argument) error {
|
|
var loaderType string
|
|
|
|
if args.FilePath != "" {
|
|
loaderType = common.File
|
|
} else {
|
|
loaderType = common.AllInOne
|
|
}
|
|
|
|
runtime, err := common.NewKubeRuntime(loaderType, args)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
switch runtime.Cluster.Kubernetes.Type {
|
|
case common.Kubernetes:
|
|
if err := NewUpgradeNodesPipeline(runtime); err != nil {
|
|
return err
|
|
}
|
|
default:
|
|
return errors.New("unsupported cluster kubernetes type")
|
|
}
|
|
|
|
return nil
|
|
}
|