/* 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 binary import ( "errors" "fmt" "github.com/kubesphere/kubekey/cmd/kk/pkg/binaries" "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/module" "github.com/kubesphere/kubekey/cmd/kk/pkg/core/pipeline" ) func NewCreateBinaryPipeline(runtime *common.KubeRuntime) error { m := []module.Module{ &precheck.NodePreCheckModule{}, &binaries.NodeBinariesModule{}, &SyncBinaryModule{}, } p := pipeline.Pipeline{ Name: "CreateBinaryPipeline", Modules: m, Runtime: runtime, } if err := p.Start(); err != nil { return err } return nil } func CreateBinary(args common.Argument, downloadCmd string) error { args.DownloadCommand = func(path, url string) string { // this is an extension point for downloading tools, for example users can set the timeout, proxy or retry under // some poor network environment. Or users even can choose another cli, it might be wget. // perhaps we should have a build-in download function instead of totally rely on the external one return fmt.Sprintf(downloadCmd, path, url) } 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 := NewCreateBinaryPipeline(runtime); err != nil { return err } default: return errors.New("unsupported cluster kubernetes type") } return nil }