Files
Olares/cli/pkg/kubesphere/plugins/token.go

80 lines
2.3 KiB
Go

package plugins
import (
"fmt"
"path"
"strings"
"github.com/beclab/Olares/cli/pkg/common"
"github.com/beclab/Olares/cli/pkg/core/connector"
"github.com/beclab/Olares/cli/pkg/core/logger"
"github.com/beclab/Olares/cli/pkg/core/prepare"
"github.com/beclab/Olares/cli/pkg/core/task"
"github.com/beclab/Olares/cli/pkg/core/util"
"github.com/beclab/Olares/cli/pkg/utils"
"github.com/pkg/errors"
)
type GenerateKubeSphereToken struct {
common.KubeAction
}
func (t *GenerateKubeSphereToken) Execute(runtime connector.Runtime) error {
var kubectlpath, _ = t.PipelineCache.GetMustString(common.CacheCommandKubectlPath)
if kubectlpath == "" {
kubectlpath = path.Join(common.BinDir, common.CommandKubectl)
}
var random, err = utils.GeneratePassword(32)
if err != nil {
logger.Errorf("failed to generate password: %v", err)
return err
}
token, err := util.EncryptToken(random)
if err != nil {
return errors.Wrap(errors.WithStack(err), "create kubesphere token failed")
}
var cmd = fmt.Sprintf("%s get secrets -n %s --no-headers", kubectlpath, common.NamespaceKubesphereSystem)
stdout, _ := runtime.GetRunner().SudoCmd(cmd, false, false)
if strings.Contains(stdout, "kubesphere-secret") {
cmd = fmt.Sprintf("%s delete secrets -n %s kubesphere-secret", kubectlpath, common.NamespaceKubesphereSystem)
runtime.GetRunner().SudoCmd(cmd, false, true)
}
cmd = fmt.Sprintf("%s create secret generic kubesphere-secret --from-literal=token=%s --from-literal=secret=%s -n %s", kubectlpath,
token, random, common.NamespaceKubesphereSystem)
if _, err := runtime.GetRunner().SudoCmd(cmd, false, true); err != nil {
return errors.Wrap(errors.WithStack(err), "create kubesphere token failed")
}
t.PipelineCache.Set(common.CacheJwtSecret, random)
return nil
}
// +++++
type CreateKubeSphereSecretModule struct {
common.KubeModule
}
func (m *CreateKubeSphereSecretModule) Init() {
m.Name = "CreateKubeSphereSecret"
generateKubeSphereToken := &task.RemoteTask{
Name: "GenerateKubeSphereToken",
Hosts: m.Runtime.GetHostsByRole(common.Master),
Prepare: &prepare.PrepareCollection{
new(common.OnlyFirstMaster),
new(NotEqualDesiredVersion),
},
Action: new(GenerateKubeSphereToken),
Parallel: false,
Retry: 0,
}
m.Tasks = []task.Interface{generateKubeSphereToken}
}