// Copyright 2020-2026 Project Capsule Authors // SPDX-License-Identifier: Apache-2.0 package tenant import ( "context" "fmt" corev1 "k8s.io/api/core/v1" "k8s.io/apiserver/pkg/authentication/serviceaccount" "sigs.k8s.io/controller-runtime/pkg/client" capsulev1beta2 "github.com/projectcapsule/capsule/api/v1beta2" "github.com/projectcapsule/capsule/pkg/api/meta" "github.com/projectcapsule/capsule/pkg/api/rbac" "github.com/projectcapsule/capsule/pkg/runtime/configuration" ) func CollectOwners( ctx context.Context, c client.Reader, tnt *capsulev1beta2.Tenant, cfg configuration.Configuration, ) (rbac.OwnerStatusListSpec, error) { owners := tnt.Spec.Owners.ToStatusOwners() if cfg.AllowServiceAccountPromotion() && tnt.Spec.Permissions.AllowOwnerPromotion && len(tnt.Status.Namespaces) > 0 { nsSet := make(map[string]struct{}, len(tnt.Status.Namespaces)) for _, ns := range tnt.Status.Namespaces { nsSet[ns] = struct{}{} } for ns := range nsSet { saList := &corev1.ServiceAccountList{} if err := c.List(ctx, saList, client.InNamespace(ns), client.MatchingLabels{ meta.OwnerPromotionLabel: meta.ValueTrue, }, ); err != nil { return owners, err } for _, sa := range saList.Items { owners.Upsert(rbac.CoreOwnerSpec{ UserSpec: rbac.UserSpec{ Kind: rbac.ServiceAccountOwner, Name: serviceaccount.ServiceAccountUsernamePrefix + sa.Namespace + ":" + sa.Name, }, ClusterRoles: cfg.RBAC().PromotionClusterRoles, }) } } } for _, a := range cfg.Administrators() { owners.Upsert(rbac.CoreOwnerSpec{ UserSpec: a, ClusterRoles: cfg.RBAC().AdministrationClusterRoles, }) } listed, err := tnt.Spec.Permissions.ListMatchingOwners(ctx, c, tnt.GetName()) if err != nil { return owners, err } for _, o := range listed { owners.Upsert(o.Spec.CoreOwnerSpec) } return owners, nil } func GetOwnersWithKinds(tenant *capsulev1beta2.Tenant) (owners []string) { for _, owner := range tenant.Status.Owners { owners = append(owners, OwnerKindIndexKey(owner.Kind.String(), owner.Name)) } return owners } func OwnerKindIndexKey(kind, name string) string { return fmt.Sprintf("%s:%s", kind, name) } func ValidateTenantOwner(owner rbac.UserSpec) error { if owner.Kind == rbac.ServiceAccountOwner { _, _, err := serviceaccount.SplitUsername(owner.Name) if err != nil { return err } } return nil }