mirror of
https://github.com/kubesphere/kubekey.git
synced 2025-12-25 17:12:50 +00:00
* feat: enhance precheck tasks for image registry and network validation - Added a task to ensure successful authentication to the image registry. - Updated existing tasks to provide clearer failure messages for required configurations. - Improved validation for network interfaces and CIDR configurations, ensuring dual-stack support. - Enhanced error handling in the resource handler for playbook creation. Signed-off-by: joyceliu <joyceliu@yunify.com> * feat: enhance configuration and query handling - Added `-trimpath` flag to Go build configuration for improved binary paths. - Updated REST configuration to set QPS and Burst limits for better performance. - Refactored query handling to use string types for field and value, improving type consistency. - Enhanced error handling in resource configuration updates and improved parsing of request bodies. Signed-off-by: joyceliu <joyceliu@yunify.com> * feat: check inventory when it's changed Signed-off-by: joyceliu <joyceliu@yunify.com> * feat: enhance playbook execution and query handling - Added a new optional query parameter `promise` to the playbook and inventory endpoints, allowing for asynchronous execution control. - Introduced a new result state `ResultPending` to indicate ongoing operations. - Refactored the executor function to handle the `promise` parameter, enabling conditional execution of playbooks. - Improved error handling and logging during playbook execution. Signed-off-by: joyceliu <joyceliu@yunify.com> --------- Signed-off-by: joyceliu <joyceliu@yunify.com>
123 lines
4.1 KiB
Go
123 lines
4.1 KiB
Go
/*
|
|
Copyright 2023 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 _const
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"os"
|
|
"strings"
|
|
|
|
kkcorev1 "github.com/kubesphere/kubekey/api/core/v1"
|
|
kkcorev1alpha1 "github.com/kubesphere/kubekey/api/core/v1alpha1"
|
|
corev1 "k8s.io/api/core/v1"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
"k8s.io/klog/v2"
|
|
"k8s.io/utils/ptr"
|
|
ctrlclient "sigs.k8s.io/controller-runtime/pkg/client"
|
|
"sigs.k8s.io/controller-runtime/pkg/client/fake"
|
|
)
|
|
|
|
// GetWorkdirFromConfig retrieves the working directory from the provided configuration.
|
|
// If the 'workdir' value is set in the configuration and is a string, it returns that value.
|
|
// If the 'workdir' value is not set or is not a string, it logs an informational message
|
|
// and attempts to get the current working directory of the process.
|
|
// If it fails to get the current working directory, it logs another informational message
|
|
// and returns a default directory path "/opt/kubekey".
|
|
func GetWorkdirFromConfig(config kkcorev1.Config) string {
|
|
if wd, _, err := unstructured.NestedString(config.Value(), Workdir); err == nil {
|
|
return wd
|
|
}
|
|
klog.Info("work_dir is not set use current dir.")
|
|
wd, err := os.Getwd()
|
|
if err != nil {
|
|
klog.Info("failed to get current dir. use default: /root/kubekey")
|
|
|
|
return "/opt/kubekey"
|
|
}
|
|
|
|
return wd
|
|
}
|
|
|
|
// Host2ProviderID converts a cluster name and host into a provider ID string.
|
|
// It returns a pointer to a string in the format "kk://<cluster_name>/<host>".
|
|
func Host2ProviderID(clusterName, host string) *string {
|
|
return ptr.To(fmt.Sprintf("kk://%s/%s", clusterName, host))
|
|
}
|
|
|
|
// ProviderID2Host extracts the host name from a provider ID string.
|
|
// It takes a cluster name and provider ID pointer, and returns the host portion
|
|
// by trimming off the "kk://<cluster_name>/" prefix. If providerID is nil,
|
|
// returns an empty string.
|
|
func ProviderID2Host(clusterName string, providerID *string) string {
|
|
return strings.TrimPrefix(ptr.Deref(providerID, ""), fmt.Sprintf("kk://%s/", clusterName))
|
|
}
|
|
|
|
// NewTestPlaybook creates a fake controller-runtime client, an Inventory resource with the given hosts,
|
|
// and returns the client and a Playbook resource referencing the created Inventory.
|
|
// This is intended for use in unit tests.
|
|
func NewTestPlaybook(hosts []string) (ctrlclient.Client, *kkcorev1.Playbook, error) {
|
|
// Create a fake client with the required scheme and status subresources.
|
|
client := fake.NewClientBuilder().
|
|
WithScheme(Scheme).
|
|
WithStatusSubresource(&kkcorev1.Playbook{}, &kkcorev1alpha1.Task{}).
|
|
Build()
|
|
|
|
// Convert the slice of hostnames to an InventoryHost map.
|
|
inventoryHost := make(kkcorev1.InventoryHost)
|
|
for _, h := range hosts {
|
|
inventoryHost[h] = runtime.RawExtension{}
|
|
}
|
|
|
|
// Create an Inventory resource with the generated hosts.
|
|
inventory := &kkcorev1.Inventory{
|
|
TypeMeta: metav1.TypeMeta{},
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
GenerateName: "test-",
|
|
Namespace: corev1.NamespaceDefault,
|
|
},
|
|
Spec: kkcorev1.InventorySpec{
|
|
Hosts: inventoryHost,
|
|
},
|
|
}
|
|
|
|
// Persist the Inventory resource using the fake client.
|
|
if err := client.Create(context.TODO(), inventory); err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
// Create a Playbook resource that references the created Inventory.
|
|
playbook := &kkcorev1.Playbook{
|
|
TypeMeta: metav1.TypeMeta{},
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
GenerateName: "test-",
|
|
Namespace: corev1.NamespaceDefault,
|
|
},
|
|
Spec: kkcorev1.PlaybookSpec{
|
|
InventoryRef: &corev1.ObjectReference{
|
|
Name: inventory.Name,
|
|
Namespace: inventory.Namespace,
|
|
},
|
|
},
|
|
Status: kkcorev1.PlaybookStatus{},
|
|
}
|
|
|
|
return client, playbook, nil
|
|
}
|