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>
110 lines
2.7 KiB
Go
110 lines
2.7 KiB
Go
package tmpl
|
|
|
|
import (
|
|
"math"
|
|
"net"
|
|
"strings"
|
|
"text/template"
|
|
|
|
"github.com/Masterminds/sprig/v3"
|
|
"github.com/cockroachdb/errors"
|
|
"gopkg.in/yaml.v3"
|
|
|
|
"github.com/kubesphere/kubekey/v4/pkg/utils"
|
|
)
|
|
|
|
// default function docs: http://masterminds.github.io/sprig
|
|
|
|
func funcMap() template.FuncMap {
|
|
var f = sprig.TxtFuncMap()
|
|
delete(f, "env")
|
|
delete(f, "expandenv")
|
|
// add custom function
|
|
f["toYaml"] = toYAML
|
|
f["fromYaml"] = fromYAML
|
|
f["ipInCIDR"] = ipInCIDR
|
|
f["ipFamily"] = ipFamily
|
|
f["pow"] = pow
|
|
f["subtractList"] = subtractList
|
|
|
|
return f
|
|
}
|
|
|
|
// toYAML takes an interface, marshals it to yaml, and returns a string. It will
|
|
// always return a string, even on marshal error (empty string).
|
|
//
|
|
// This is designed to be called from a template.
|
|
func toYAML(v any) string {
|
|
data, err := yaml.Marshal(v)
|
|
if err != nil {
|
|
// Swallow errors inside of a template.
|
|
return ""
|
|
}
|
|
|
|
return strings.TrimSpace(string(data))
|
|
}
|
|
|
|
// fromYAML takes a YAML string, unmarshals it into an interface{}, and returns the result.
|
|
// If there is an error during unmarshaling, it will be returned along with nil for the value.
|
|
func fromYAML(v string) (any, error) {
|
|
var output any
|
|
err := yaml.Unmarshal([]byte(v), &output)
|
|
|
|
return output, err
|
|
}
|
|
|
|
// ipInCIDR takes a comma-separated list of CIDR strings, parses each one to extract IPs using parseIP,
|
|
// and returns a combined slice of all IPs found. Returns an error only if parseIP fails (not shown here).
|
|
func ipInCIDR(cidr string) ([]string, error) {
|
|
var ips = make([]string, 0)
|
|
for _, s := range strings.Split(cidr, ",") {
|
|
ips = append(ips, utils.ParseIP(s)...)
|
|
}
|
|
|
|
return ips, nil
|
|
}
|
|
|
|
// ipFamily returns the IP family (IPv4 or IPv6) of the given IP address or IP cidr.
|
|
func ipFamily(addrOrCIDR string) (string, error) {
|
|
// from IP address
|
|
var ip = net.ParseIP(addrOrCIDR)
|
|
if ip == nil {
|
|
// from IP cidr
|
|
ipFromCIDR, _, err := net.ParseCIDR(addrOrCIDR)
|
|
if err != nil {
|
|
return "Invalid", errors.Errorf("%s is not ip or cidr", addrOrCIDR)
|
|
}
|
|
ip = ipFromCIDR
|
|
}
|
|
|
|
if ip.To4() != nil {
|
|
return "IPv4", nil
|
|
}
|
|
|
|
return "IPv6", nil
|
|
}
|
|
|
|
// pow Get the "pow" power of "base". (base ** pow)
|
|
func pow(base, pow float64) (float64, error) {
|
|
return math.Pow(base, pow), nil
|
|
}
|
|
|
|
// subtractList returns a new list containing elements from list a that are not in list b.
|
|
// It first creates a set from list b for O(1) lookups, then builds a result list by
|
|
// including only elements from a that don't exist in the set.
|
|
func subtractList(a, b []any) ([]any, error) {
|
|
set := make(map[any]struct{}, len(b))
|
|
for _, v := range b {
|
|
set[v] = struct{}{}
|
|
}
|
|
|
|
result := make([]any, 0, len(a))
|
|
for _, v := range a {
|
|
if _, exists := set[v]; !exists {
|
|
result = append(result, v)
|
|
}
|
|
}
|
|
|
|
return result, nil
|
|
}
|