kubekey/cmd/kk/pkg/bootstrap/os/prepares.go
24sama 3dd48dc8df refactor KubeKey project structure
Signed-off-by: 24sama <jacksama@foxmail.com>
2022-10-06 11:58:06 +08:00

67 lines
1.7 KiB
Go

/*
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 os
import (
kubekeyv1alpha2 "github.com/kubesphere/kubekey/cmd/kk/apis/kubekey/v1alpha2"
"github.com/kubesphere/kubekey/cmd/kk/pkg/common"
"github.com/kubesphere/kubekey/cmd/kk/pkg/core/connector"
)
type NodeConfigureNtpCheck struct {
common.KubePrepare
}
func (n *NodeConfigureNtpCheck) PreCheck(_ connector.Runtime) (bool, error) {
// skip when both NtpServers and Timezone was not set in cluster config
if len(n.KubeConf.Cluster.System.NtpServers) == 0 && len(n.KubeConf.Cluster.System.Timezone) == 0 {
return false, nil
}
return true, nil
}
type EtcdTypeIsKubeKey struct {
common.KubePrepare
}
func (e *EtcdTypeIsKubeKey) PreCheck(_ connector.Runtime) (bool, error) {
if len(e.KubeConf.Cluster.Etcd.Type) == 0 || e.KubeConf.Cluster.Etcd.Type == kubekeyv1alpha2.KubeKey {
return true, nil
}
return false, nil
}
type DeleteNode struct {
common.KubePrepare
}
func (d *DeleteNode) PreCheck(runtime connector.Runtime) (bool, error) {
nodeName, ok := d.PipelineCache.Get("dstNode")
if !ok {
return true, nil
}
host := runtime.RemoteHost()
if host.GetName() == nodeName {
return true, nil
}
return false, nil
}