mirror of
https://github.com/kubesphere/kubekey.git
synced 2025-12-28 12:12:51 +00:00
187 lines
5.1 KiB
Go
Executable File
187 lines
5.1 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 precheck
|
|
|
|
import (
|
|
"github.com/kubesphere/kubekey/cmd/kk/pkg/bootstrap/precheck"
|
|
"github.com/kubesphere/kubekey/cmd/kk/pkg/common"
|
|
"github.com/kubesphere/kubekey/cmd/kk/pkg/core/prepare"
|
|
"github.com/kubesphere/kubekey/cmd/kk/pkg/core/task"
|
|
)
|
|
|
|
type UpgradePreCheckModule struct {
|
|
common.KubeModule
|
|
}
|
|
|
|
func (c *UpgradePreCheckModule) Init() {
|
|
c.Name = "UpgradePreCheckModule"
|
|
c.Desc = "Do pre-check on for upgrade phase"
|
|
|
|
nodePreCheck := &task.RemoteTask{
|
|
Name: "NodePreCheck",
|
|
Desc: "A pre-check on nodes",
|
|
Hosts: c.Runtime.GetAllHosts(),
|
|
Action: new(precheck.NodePreCheck),
|
|
Parallel: true,
|
|
}
|
|
|
|
getKubeConfig := &task.RemoteTask{
|
|
Name: "GetKubeConfig",
|
|
Desc: "Get KubeConfig file",
|
|
Hosts: c.Runtime.GetHostsByRole(common.Master),
|
|
Prepare: new(common.OnlyFirstMaster),
|
|
Action: new(precheck.GetKubeConfig),
|
|
Parallel: true,
|
|
}
|
|
|
|
getAllNodesK8sVersion := &task.RemoteTask{
|
|
Name: "GetAllNodesK8sVersion",
|
|
Desc: "Get all nodes Kubernetes version",
|
|
Hosts: c.Runtime.GetHostsByRole(common.K8s),
|
|
Action: new(GetAllNodesK8sVersion),
|
|
Parallel: true,
|
|
}
|
|
|
|
calculateMinK8sVersion := &task.LocalTask{
|
|
Name: "CalculateMinK8sVersion",
|
|
Desc: "Calculate min Kubernetes version",
|
|
Action: new(precheck.CalculateMinK8sVersion),
|
|
}
|
|
|
|
calculateMaxK8sVersion := &task.LocalTask{
|
|
Name: "CalculateMaxK8sVersion",
|
|
Desc: "Calculate max Kubernetes version",
|
|
Action: new(CalculateMaxK8sVersion),
|
|
}
|
|
|
|
checkDesiredK8sVersion := &task.LocalTask{
|
|
Name: "CheckDesiredK8sVersion",
|
|
Desc: "Check desired Kubernetes version",
|
|
Action: new(precheck.CheckDesiredK8sVersion),
|
|
}
|
|
|
|
checkUpgradeK8sVersion := &task.LocalTask{
|
|
Name: "checkUpgradeK8sVersion",
|
|
Desc: "Check the Kubernetes version can correctly upgrade",
|
|
Action: new(CheckUpgradeK8sVersion),
|
|
}
|
|
|
|
ksVersionCheck := &task.RemoteTask{
|
|
Name: "KsVersionCheck",
|
|
Desc: "Check KubeSphere version",
|
|
Hosts: c.Runtime.GetHostsByRole(common.Master),
|
|
Prepare: new(common.OnlyFirstMaster),
|
|
Action: new(precheck.KsVersionCheck),
|
|
Parallel: true,
|
|
}
|
|
|
|
getKubernetesNodesStatus := &task.RemoteTask{
|
|
Name: "GetKubernetesNodesStatus",
|
|
Desc: "Get kubernetes nodes status",
|
|
Hosts: c.Runtime.GetHostsByRole(common.Master),
|
|
Prepare: new(common.OnlyFirstMaster),
|
|
Action: new(precheck.GetKubernetesNodesStatus),
|
|
Parallel: true,
|
|
}
|
|
|
|
c.Tasks = []task.Interface{
|
|
nodePreCheck,
|
|
getKubeConfig,
|
|
getAllNodesK8sVersion,
|
|
calculateMinK8sVersion,
|
|
calculateMaxK8sVersion,
|
|
checkDesiredK8sVersion,
|
|
checkUpgradeK8sVersion,
|
|
ksVersionCheck,
|
|
getKubernetesNodesStatus,
|
|
}
|
|
}
|
|
|
|
type UpgradeKubeSpherePreCheckModule struct {
|
|
common.KubeModule
|
|
}
|
|
|
|
func (c *UpgradeKubeSpherePreCheckModule) Init() {
|
|
c.Name = "UpgradeKubeSpherePreCheckModule"
|
|
c.Desc = "Do pre-check on for upgrade kubesphere phase"
|
|
|
|
nodePreCheck := &task.RemoteTask{
|
|
Name: "NodePreCheck",
|
|
Desc: "A pre-check on nodes",
|
|
Hosts: c.Runtime.GetAllHosts(),
|
|
Action: new(precheck.NodePreCheck),
|
|
Parallel: true,
|
|
}
|
|
|
|
getKubeConfig := &task.RemoteTask{
|
|
Name: "GetKubeConfig",
|
|
Desc: "Get KubeConfig file",
|
|
Hosts: c.Runtime.GetHostsByRole(common.Master),
|
|
Prepare: new(common.OnlyFirstMaster),
|
|
Action: new(precheck.GetKubeConfig),
|
|
Parallel: true,
|
|
}
|
|
|
|
getMasterK8sVersion := &task.RemoteTask{
|
|
Name: "GetMasterK8sVersion",
|
|
Desc: "get the master Kubernetes version",
|
|
Hosts: c.Runtime.GetHostsByRole(common.Master),
|
|
Prepare: new(common.OnlyFirstMaster),
|
|
Action: new(GetMasterK8sVersion),
|
|
}
|
|
|
|
ksVersionCheck := &task.RemoteTask{
|
|
Name: "KsVersionCheck",
|
|
Desc: "Check KubeSphere version",
|
|
Hosts: c.Runtime.GetHostsByRole(common.Master),
|
|
Prepare: new(common.OnlyFirstMaster),
|
|
Action: new(precheck.KsVersionCheck),
|
|
Parallel: true,
|
|
}
|
|
|
|
c.Tasks = []task.Interface{
|
|
nodePreCheck,
|
|
getKubeConfig,
|
|
getMasterK8sVersion,
|
|
ksVersionCheck,
|
|
}
|
|
}
|
|
|
|
type UpgradeksPhaseDependencyCheckModule struct {
|
|
common.KubeModule
|
|
}
|
|
|
|
func (c *UpgradeksPhaseDependencyCheckModule) Init() {
|
|
c.Name = "UpgradeksPhaseDependencyCheckModule"
|
|
c.Desc = "Check dependency matrix for KubeSphere and Kubernetes in ks phase"
|
|
|
|
ksPhaseDependencyCheck := &task.RemoteTask{
|
|
Name: "ksPhaseDependencyCheck",
|
|
Desc: "Check dependency matrix for KubeSphere and Kubernetes in ks phase",
|
|
Hosts: c.Runtime.GetHostsByRole(common.Master),
|
|
Prepare: &prepare.PrepareCollection{
|
|
new(common.OnlyFirstMaster),
|
|
new(precheck.KubeSphereExist),
|
|
},
|
|
Action: new(KsPhaseDependencyCheck),
|
|
}
|
|
|
|
c.Tasks = []task.Interface{
|
|
ksPhaseDependencyCheck,
|
|
}
|
|
}
|