mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-02-14 09:59:57 +00:00
* feat: functional appsets * feat(api): add resourcepools api Signed-off-by: Oliver Bähler <oliverbaehler@hotmail.com> * chore: fix gomod Signed-off-by: Oliver Bähler <oliverbaehler@hotmail.com> * chore: correct webhooks Signed-off-by: Oliver Bähler <oliverbaehler@hotmail.com> * chore: fix harpoon image Signed-off-by: Oliver Bähler <oliverbaehler@hotmail.com> * chore: improve e2e Signed-off-by: Oliver Bähler <oliverbaehler@hotmail.com> * chore: add labels to e2e test Signed-off-by: Oliver Bähler <oliverbaehler@hotmail.com> * chore: fix status handling Signed-off-by: Oliver Bähler <oliverbaehler@hotmail.com> * chore: fix racing conditions Signed-off-by: Oliver Bähler <oliverbaehler@hotmail.com> * chore: make values compatible Signed-off-by: Oliver Bähler <oliverbaehler@hotmail.com> * chore: fix custom resources test Signed-off-by: Oliver Bähler <oliverbaehler@hotmail.com> * chore: correct metrics Signed-off-by: Oliver Bähler <oliverbaehler@hotmail.com> --------- Signed-off-by: Oliver Bähler <oliverbaehler@hotmail.com>
50 lines
1.5 KiB
Go
50 lines
1.5 KiB
Go
// Copyright 2020-2023 Project Capsule Authors.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package api
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
corev1 "k8s.io/api/core/v1"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/labels"
|
|
"sigs.k8s.io/controller-runtime/pkg/client"
|
|
)
|
|
|
|
// Selector for resources and their labels or selecting origin namespaces
|
|
// +kubebuilder:object:generate=true
|
|
type NamespaceSelector struct {
|
|
// Select Items based on their labels. If the namespaceSelector is also set, the selector is applied
|
|
// to items within the selected namespaces. Otherwise for all the items.
|
|
*metav1.LabelSelector `json:",inline"`
|
|
}
|
|
|
|
// GetMatchingNamespaces retrieves the list of namespaces that match the NamespaceSelector.
|
|
func (s *NamespaceSelector) GetMatchingNamespaces(ctx context.Context, client client.Client) ([]corev1.Namespace, error) {
|
|
if s.LabelSelector == nil {
|
|
return nil, nil // No namespace selector means all namespaces
|
|
}
|
|
|
|
nsSelector, err := metav1.LabelSelectorAsSelector(s.LabelSelector)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("invalid namespace selector: %w", err)
|
|
}
|
|
|
|
namespaceList := &corev1.NamespaceList{}
|
|
if err := client.List(ctx, namespaceList); err != nil {
|
|
return nil, fmt.Errorf("failed to list namespaces: %w", err)
|
|
}
|
|
|
|
var matchingNamespaces []corev1.Namespace
|
|
|
|
for _, ns := range namespaceList.Items {
|
|
if nsSelector.Matches(labels.Set(ns.Labels)) {
|
|
matchingNamespaces = append(matchingNamespaces, ns)
|
|
}
|
|
}
|
|
|
|
return matchingNamespaces, nil
|
|
}
|