mirror of
https://github.com/open-cluster-management-io/ocm.git
synced 2026-05-09 10:47:35 +00:00
140 lines
4.0 KiB
Go
140 lines
4.0 KiB
Go
package helpers
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"k8s.io/apimachinery/pkg/api/meta"
|
|
"k8s.io/apimachinery/pkg/labels"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
|
|
"github.com/openshift/library-go/pkg/controller/factory"
|
|
|
|
operatorlister "github.com/open-cluster-management/api/client/operator/listers/operator/v1"
|
|
operatorapiv1 "github.com/open-cluster-management/api/operator/v1"
|
|
)
|
|
|
|
const (
|
|
// KlusterletDefaultNamespace is the default namespace of klusterlet
|
|
KlusterletDefaultNamespace = "open-cluster-management-agent"
|
|
// BootstrapHubKubeConfig is the secret name of bootstrap kubeconfig secret to connect to hub
|
|
BootstrapHubKubeConfig = "bootstrap-hub-kubeconfig"
|
|
// HubKubeConfig is the secret name of kubeconfig secret to connect to hub with mtls
|
|
HubKubeConfig = "hub-kubeconfig-secret"
|
|
// ClusterManagerNamespace is the namespace to deploy cluster manager components
|
|
ClusterManagerNamespace = "open-cluster-management-hub"
|
|
|
|
RegistrationWebhookSecret = "registration-webhook-serving-cert"
|
|
RegistrationWebhookService = "cluster-manager-registration-webhook"
|
|
WorkWebhookSecret = "work-webhook-serving-cert"
|
|
WorkWebhookService = "cluster-manager-work-webhook"
|
|
)
|
|
|
|
func KlusterletSecretQueueKeyFunc(klusterletLister operatorlister.KlusterletLister) factory.ObjectQueueKeyFunc {
|
|
return func(obj runtime.Object) string {
|
|
accessor, _ := meta.Accessor(obj)
|
|
namespace := accessor.GetNamespace()
|
|
name := accessor.GetName()
|
|
interestedObjectFound := false
|
|
if name == HubKubeConfig || name == BootstrapHubKubeConfig {
|
|
interestedObjectFound = true
|
|
}
|
|
if !interestedObjectFound {
|
|
return ""
|
|
}
|
|
|
|
klusterlets, err := klusterletLister.List(labels.Everything())
|
|
if err != nil {
|
|
return ""
|
|
}
|
|
|
|
if klusterlet := FindKlusterletByNamespace(klusterlets, namespace); klusterlet != nil {
|
|
return klusterlet.Name
|
|
}
|
|
|
|
return ""
|
|
}
|
|
}
|
|
|
|
func KlusterletDeploymentQueueKeyFunc(klusterletLister operatorlister.KlusterletLister) factory.ObjectQueueKeyFunc {
|
|
return func(obj runtime.Object) string {
|
|
accessor, _ := meta.Accessor(obj)
|
|
namespace := accessor.GetNamespace()
|
|
name := accessor.GetName()
|
|
interestedObjectFound := false
|
|
if strings.HasSuffix(name, "registration-agent") || strings.HasSuffix(name, "work-agent") {
|
|
interestedObjectFound = true
|
|
}
|
|
if !interestedObjectFound {
|
|
return ""
|
|
}
|
|
|
|
klusterlets, err := klusterletLister.List(labels.Everything())
|
|
if err != nil {
|
|
return ""
|
|
}
|
|
|
|
if klusterlet := FindKlusterletByNamespace(klusterlets, namespace); klusterlet != nil {
|
|
return klusterlet.Name
|
|
}
|
|
|
|
return ""
|
|
}
|
|
}
|
|
|
|
func ClusterManagerDeploymentQueueKeyFunc(clusterManagerLister operatorlister.ClusterManagerLister) factory.ObjectQueueKeyFunc {
|
|
return func(obj runtime.Object) string {
|
|
accessor, _ := meta.Accessor(obj)
|
|
namespace := accessor.GetNamespace()
|
|
name := accessor.GetName()
|
|
interestedObjectFound := false
|
|
if namespace != ClusterManagerNamespace {
|
|
return ""
|
|
}
|
|
if strings.HasSuffix(name, "registration-controller") || strings.HasSuffix(name, "work-controller") || strings.HasSuffix(name, "placement-controller") {
|
|
interestedObjectFound = true
|
|
}
|
|
if !interestedObjectFound {
|
|
return ""
|
|
}
|
|
|
|
clustermanagers, err := clusterManagerLister.List(labels.Everything())
|
|
if err != nil {
|
|
return ""
|
|
}
|
|
|
|
for _, clustermanager := range clustermanagers {
|
|
return clustermanager.Name
|
|
}
|
|
|
|
return ""
|
|
}
|
|
}
|
|
|
|
func ClusterManagerConfigmapQueueKeyFunc(clusterManagerLister operatorlister.ClusterManagerLister) factory.ObjectQueueKeyFunc {
|
|
return func(obj runtime.Object) string {
|
|
clustermanagers, err := clusterManagerLister.List(labels.Everything())
|
|
if err != nil {
|
|
return ""
|
|
}
|
|
|
|
for _, clustermanager := range clustermanagers {
|
|
return clustermanager.Name
|
|
}
|
|
|
|
return ""
|
|
}
|
|
}
|
|
|
|
func FindKlusterletByNamespace(klusterlets []*operatorapiv1.Klusterlet, namespace string) *operatorapiv1.Klusterlet {
|
|
for _, klusterlet := range klusterlets {
|
|
klusterletNS := klusterlet.Spec.Namespace
|
|
if klusterletNS == "" {
|
|
klusterletNS = KlusterletDefaultNamespace
|
|
}
|
|
if namespace == klusterletNS {
|
|
return klusterlet
|
|
}
|
|
}
|
|
return nil
|
|
}
|