mirror of
https://github.com/kubesphere/kubekey.git
synced 2025-12-25 17:12:50 +00:00
160 lines
4.8 KiB
Go
160 lines
4.8 KiB
Go
//go:build builtin
|
|
// +build builtin
|
|
|
|
/*
|
|
Copyright 2024 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 builtin
|
|
|
|
import (
|
|
"fmt"
|
|
"path/filepath"
|
|
|
|
"github.com/cockroachdb/errors"
|
|
kkcorev1 "github.com/kubesphere/kubekey/api/core/v1"
|
|
"github.com/spf13/cobra"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
|
|
cliflag "k8s.io/component-base/cli/flag"
|
|
|
|
"github.com/kubesphere/kubekey/v4/cmd/kk/app/options"
|
|
_const "github.com/kubesphere/kubekey/v4/pkg/const"
|
|
)
|
|
|
|
// ======================================================================================
|
|
// init os
|
|
// ======================================================================================
|
|
|
|
// InitOSOptions for NewInitOSOptions
|
|
type InitOSOptions struct {
|
|
options.CommonOptions
|
|
}
|
|
|
|
// NewInitOSOptions for newInitOSCommand
|
|
func NewInitOSOptions() *InitOSOptions {
|
|
// set default value
|
|
o := &InitOSOptions{CommonOptions: options.NewCommonOptions()}
|
|
o.CommonOptions.GetInventoryFunc = getInventory
|
|
|
|
return o
|
|
}
|
|
|
|
// Flags add to newInitOSCommand
|
|
func (o *InitOSOptions) Flags() cliflag.NamedFlagSets {
|
|
return o.CommonOptions.Flags()
|
|
}
|
|
|
|
// Complete options. create Playbook, Config and Inventory
|
|
func (o *InitOSOptions) Complete(cmd *cobra.Command, args []string) (*kkcorev1.Playbook, error) {
|
|
playbook := &kkcorev1.Playbook{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
GenerateName: "init-os-",
|
|
Namespace: o.Namespace,
|
|
Annotations: map[string]string{
|
|
kkcorev1.BuiltinsProjectAnnotation: "",
|
|
},
|
|
},
|
|
}
|
|
|
|
// complete playbook. now only support one playbook
|
|
if len(args) != 1 {
|
|
return nil, errors.Errorf("%s\nSee '%s -h' for help and examples", cmd.Use, cmd.CommandPath())
|
|
}
|
|
o.Playbook = args[0]
|
|
|
|
playbook.Spec = kkcorev1.PlaybookSpec{
|
|
Playbook: o.Playbook,
|
|
}
|
|
|
|
if err := o.CommonOptions.Complete(playbook); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return playbook, o.completeConfig()
|
|
}
|
|
|
|
func (o *InitOSOptions) completeConfig() error {
|
|
if wd, _, err := unstructured.NestedString(o.CommonOptions.Config.Value(), _const.Workdir); err != nil {
|
|
// workdir should set by CommonOptions
|
|
return errors.Wrapf(err, "failed to get %q in config", _const.Workdir)
|
|
} else {
|
|
// set binary dir if not set
|
|
if _, _, err := unstructured.NestedString(o.CommonOptions.Config.Value(), _const.BinaryDir); err != nil {
|
|
// binary should set by CommonOptions
|
|
if err := unstructured.SetNestedField(o.CommonOptions.Config.Value(), filepath.Join(wd, "kubekey"), _const.BinaryDir); err != nil {
|
|
return errors.Wrapf(err, "failed to set %q in config", _const.BinaryDir)
|
|
}
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// ======================================================================================
|
|
// init registry
|
|
// ======================================================================================
|
|
|
|
// InitRegistryOptions for NewInitRegistryOptions
|
|
type InitRegistryOptions struct {
|
|
options.CommonOptions
|
|
// kubernetes version which the config will install.
|
|
Kubernetes string
|
|
}
|
|
|
|
// NewInitRegistryOptions for newInitRegistryCommand
|
|
func NewInitRegistryOptions() *InitRegistryOptions {
|
|
// set default value
|
|
o := &InitRegistryOptions{CommonOptions: options.NewCommonOptions()}
|
|
o.CommonOptions.GetInventoryFunc = getInventory
|
|
|
|
return o
|
|
}
|
|
|
|
// Flags add to newInitRegistryCommand
|
|
func (o *InitRegistryOptions) Flags() cliflag.NamedFlagSets {
|
|
fss := o.CommonOptions.Flags()
|
|
kfs := fss.FlagSet("config")
|
|
kfs.StringVar(&o.Kubernetes, "with-kubernetes", o.Kubernetes, fmt.Sprintf("Specify a supported version of kubernetes. default is %s", o.Kubernetes))
|
|
|
|
return fss
|
|
}
|
|
|
|
// Complete options. create Playbook, Config and Inventory
|
|
func (o *InitRegistryOptions) Complete(cmd *cobra.Command, args []string) (*kkcorev1.Playbook, error) {
|
|
playbook := &kkcorev1.Playbook{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
GenerateName: "init-registry-",
|
|
Namespace: o.Namespace,
|
|
Annotations: map[string]string{
|
|
kkcorev1.BuiltinsProjectAnnotation: "",
|
|
},
|
|
},
|
|
}
|
|
|
|
// complete playbook. now only support one playbook
|
|
if len(args) != 1 {
|
|
return nil, errors.Errorf("%s\nSee '%s -h' for help and examples", cmd.Use, cmd.CommandPath())
|
|
}
|
|
o.Playbook = args[0]
|
|
|
|
playbook.Spec = kkcorev1.PlaybookSpec{
|
|
Playbook: o.Playbook,
|
|
Tags: []string{"image_registry"},
|
|
}
|
|
|
|
return playbook, o.CommonOptions.Complete(playbook)
|
|
}
|