kubekey/pkg/certs/module.go
24sama f4b7fd4605 dev-v2.0.0: add copyright
Signed-off-by: 24sama <leo@kubesphere.io>
2021-11-15 11:31:28 +08:00

202 lines
5.1 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 certs
import (
"github.com/kubesphere/kubekey/pkg/certs/templates"
"github.com/kubesphere/kubekey/pkg/common"
"github.com/kubesphere/kubekey/pkg/core/action"
"github.com/kubesphere/kubekey/pkg/core/prepare"
"github.com/kubesphere/kubekey/pkg/core/task"
"github.com/kubesphere/kubekey/pkg/kubernetes"
"path/filepath"
)
type CheckCertsModule struct {
common.KubeModule
}
func (c *CheckCertsModule) Init() {
c.Name = "CheckCertsModule"
c.Desc = "Check cluster certs"
check := &task.RemoteTask{
Name: "CheckClusterCerts",
Desc: "Check cluster certs",
Hosts: c.Runtime.GetHostsByRole(common.Master),
Action: new(ListClusterCerts),
Parallel: true,
}
c.Tasks = []task.Interface{
check,
}
}
type PrintClusterCertsModule struct {
common.KubeModule
}
func (p *PrintClusterCertsModule) Init() {
p.Name = "PrintClusterCertsModule"
p.Desc = "Display cluster certs form"
display := &task.LocalTask{
Name: "DisplayCertsForm",
Desc: "Display cluster certs form",
Action: new(DisplayForm),
}
p.Tasks = []task.Interface{
display,
}
}
type RenewCertsModule struct {
common.KubeModule
}
func (r *RenewCertsModule) Init() {
r.Name = "RenewCertsModule"
r.Desc = "Renew control-plane certs"
renew := &task.RemoteTask{
Name: "RenewCerts",
Desc: "Renew control-plane certs",
Hosts: r.Runtime.GetHostsByRole(common.Master),
Action: new(RenewCerts),
Parallel: false,
Retry: 5,
}
copyKubeConfig := &task.RemoteTask{
Name: "CopyKubeConfig",
Desc: "Copy admin.conf to ~/.kube/config",
Hosts: r.Runtime.GetHostsByRole(common.Master),
Action: new(kubernetes.CopyKubeConfigForControlPlane),
Parallel: true,
Retry: 2,
}
fetchKubeConfig := &task.RemoteTask{
Name: "FetchKubeConfig",
Desc: "Fetch kube config file from control-plane",
Hosts: r.Runtime.GetHostsByRole(common.Master),
Prepare: new(common.OnlyFirstMaster),
Action: new(FetchKubeConfig),
Parallel: true,
}
syncKubeConfig := &task.RemoteTask{
Name: "SyncKubeConfig",
Desc: "Synchronize kube config to worker",
Hosts: r.Runtime.GetHostsByRole(common.Worker),
Prepare: &prepare.PrepareCollection{
new(common.OnlyWorker),
},
Action: new(SyneKubeConfigToWorker),
Parallel: true,
Retry: 3,
}
r.Tasks = []task.Interface{
renew,
copyKubeConfig,
fetchKubeConfig,
syncKubeConfig,
}
}
type AutoRenewCertsModule struct {
common.KubeModule
}
func (a *AutoRenewCertsModule) Init() {
a.Name = "AutoRenewCertsModule"
a.Desc = "Install auto renew control-plane certs"
generateK8sCertsRenewScript := &task.RemoteTask{
Name: "GenerateK8sCertsRenewScript",
Desc: "Generate k8s certs renew script",
Hosts: a.Runtime.GetHostsByRole(common.Master),
Action: &action.Template{
Template: templates.K8sCertsRenewScript,
Dst: filepath.Join("/usr/local/bin/kube-scripts/", templates.K8sCertsRenewScript.Name()),
},
Parallel: true,
}
generateK8sCertsRenewService := &task.RemoteTask{
Name: "GenerateK8sCertsRenewService",
Desc: "Generate k8s certs renew service",
Hosts: a.Runtime.GetHostsByRole(common.Master),
Action: &action.Template{
Template: templates.K8sCertsRenewService,
Dst: filepath.Join("/etc/systemd/system/", templates.K8sCertsRenewService.Name()),
},
Parallel: true,
}
generateK8sCertsRenewTimer := &task.RemoteTask{
Name: "GenerateK8sCertsRenewTimer",
Desc: "Generate k8s certs renew timer",
Hosts: a.Runtime.GetHostsByRole(common.Master),
Action: &action.Template{
Template: templates.K8sCertsRenewTimer,
Dst: filepath.Join("/etc/systemd/system/", templates.K8sCertsRenewTimer.Name()),
},
Parallel: true,
}
enable := &task.RemoteTask{
Name: "EnableK8sCertsRenewService",
Desc: "Enable k8s certs renew service",
Hosts: a.Runtime.GetHostsByRole(common.Master),
Action: new(EnableRenewService),
Parallel: true,
}
a.Tasks = []task.Interface{
generateK8sCertsRenewScript,
generateK8sCertsRenewService,
generateK8sCertsRenewTimer,
enable,
}
}
type UninstallAutoRenewCertsModule struct {
common.KubeModule
}
func (u *UninstallAutoRenewCertsModule) Init() {
u.Name = "UninstallAutoRenewCertsModule"
u.Desc = "UnInstall auto renew control-plane certs"
uninstall := &task.RemoteTask{
Name: "UnInstallAutoRenewCerts",
Desc: "UnInstall auto renew control-plane certs",
Hosts: u.Runtime.GetHostsByRole(common.Master),
Prepare: new(AutoRenewCertsEnabled),
Action: new(UninstallAutoRenewCerts),
Parallel: true,
}
u.Tasks = []task.Interface{
uninstall,
}
}