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

193 lines
4.0 KiB
Go

/*
Copyright 2021 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 binaries
import (
"github.com/kubesphere/kubekey/cmd/kk/pkg/common"
"github.com/kubesphere/kubekey/cmd/kk/pkg/core/logger"
"github.com/kubesphere/kubekey/cmd/kk/pkg/core/task"
"github.com/pkg/errors"
)
type NodeBinariesModule struct {
common.KubeModule
}
func (n *NodeBinariesModule) Init() {
n.Name = "NodeBinariesModule"
n.Desc = "Download installation binaries"
download := &task.LocalTask{
Name: "DownloadBinaries",
Desc: "Download installation binaries",
Action: new(Download),
}
n.Tasks = []task.Interface{
download,
}
}
type K3sNodeBinariesModule struct {
common.KubeModule
}
func (k *K3sNodeBinariesModule) Init() {
k.Name = "K3sNodeBinariesModule"
k.Desc = "Download installation binaries"
download := &task.LocalTask{
Name: "DownloadBinaries",
Desc: "Download installation binaries",
Action: new(K3sDownload),
}
k.Tasks = []task.Interface{
download,
}
}
type K8eNodeBinariesModule struct {
common.KubeModule
}
func (k *K8eNodeBinariesModule) Init() {
k.Name = "K8eNodeBinariesModule"
k.Desc = "Download installation binaries"
download := &task.LocalTask{
Name: "DownloadBinaries",
Desc: "Download installation binaries",
Action: new(K8eDownload),
}
k.Tasks = []task.Interface{
download,
}
}
type ArtifactBinariesModule struct {
common.ArtifactModule
}
func (a *ArtifactBinariesModule) Init() {
a.Name = "ArtifactBinariesModule"
a.Desc = "Download artifact binaries"
download := &task.LocalTask{
Name: "DownloadBinaries",
Desc: "Download manifest expect binaries",
Action: new(ArtifactDownload),
}
a.Tasks = []task.Interface{
download,
}
}
type K3sArtifactBinariesModule struct {
common.ArtifactModule
}
func (a *K3sArtifactBinariesModule) Init() {
a.Name = "K3sArtifactBinariesModule"
a.Desc = "Download artifact binaries"
download := &task.LocalTask{
Name: "K3sDownloadBinaries",
Desc: "Download k3s manifest expect binaries",
Action: new(K3sArtifactDownload),
}
a.Tasks = []task.Interface{
download,
}
}
type K8eArtifactBinariesModule struct {
common.ArtifactModule
}
func (a *K8eArtifactBinariesModule) Init() {
a.Name = "K8eArtifactBinariesModule"
a.Desc = "Download artifact binaries"
download := &task.LocalTask{
Name: "K8eDownloadBinaries",
Desc: "Download k8e manifest expect binaries",
Action: new(K8eArtifactDownload),
}
a.Tasks = []task.Interface{
download,
}
}
type RegistryPackageModule struct {
common.KubeModule
}
func (n *RegistryPackageModule) Init() {
n.Name = "RegistryPackageModule"
n.Desc = "Download registry package"
if len(n.Runtime.GetHostsByRole(common.Registry)) == 0 {
logger.Log.Fatal(errors.New("[registry] node not found in the roleGroups of the configuration file"))
}
download := &task.LocalTask{
Name: "DownloadRegistryPackage",
Desc: "Download registry package",
Action: new(RegistryPackageDownload),
}
n.Tasks = []task.Interface{
download,
}
}
type CriBinariesModule struct {
common.KubeModule
}
func (i *CriBinariesModule) Init() {
i.Name = "CriBinariesModule"
i.Desc = "Download Cri package"
switch i.KubeConf.Arg.Type {
case common.Docker:
i.Tasks = CriBinaries(i)
case common.Conatinerd:
i.Tasks = CriBinaries(i)
default:
}
}
func CriBinaries(p *CriBinariesModule) []task.Interface {
download := &task.LocalTask{
Name: "DownloadCriPackage",
Desc: "Download Cri package",
Action: new(CriDownload),
}
p.Tasks = []task.Interface{
download,
}
return p.Tasks
}