代码拉取完成,页面将自动刷新
package globaldns
import (
"fmt"
"strings"
v3 "github.com/rancher/types/apis/management.cattle.io/v3"
v1 "k8s.io/api/core/v1"
)
func gatherIngressEndpoints(ingressEps []v1.LoadBalancerIngress) []string {
var endpoints []string
for _, ep := range ingressEps {
if ep.IP != "" {
endpoints = append(endpoints, ep.IP)
} else if ep.Hostname != "" {
endpoints = append(endpoints, ep.Hostname)
}
}
return endpoints
}
func getMultiClusterAppName(multiClusterAppName string) (string, error) {
split := strings.SplitN(multiClusterAppName, ":", 2)
if len(split) != 2 {
return "", fmt.Errorf("error in splitting multiclusterapp ID %v", multiClusterAppName)
}
mcappName := split[1]
return mcappName, nil
}
func ifEndpointsDiffer(endpointsOne []string, endpointsTwo []string) bool {
if len(endpointsOne) != len(endpointsTwo) {
return true
}
mapEndpointsOne := make(map[string]bool)
for _, ep := range endpointsOne {
mapEndpointsOne[ep] = true
}
for _, ep := range endpointsTwo {
if !mapEndpointsOne[ep] {
return true
}
}
return false
}
func dedupEndpoints(endpoints []string) []string {
mapEndpoints := make(map[string]bool)
res := []string{}
for _, ep := range endpoints {
if !mapEndpoints[ep] {
mapEndpoints[ep] = true
res = append(res, ep)
}
}
return res
}
func reconcileGlobalDNSEndpoints(globalDNS *v3.GlobalDNS) {
//aggregate all clusterEndpoints and form the final DNS endpoints[]
var reconciledEps []string
originalEps := globalDNS.Status.Endpoints
for _, clusterEndpoints := range globalDNS.Status.ClusterEndpoints {
reconciledEps = append(reconciledEps, clusterEndpoints...)
}
//update the DNS endpoints if different
if ifEndpointsDiffer(originalEps, reconciledEps) {
globalDNS.Status.Endpoints = reconciledEps
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。