mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-08-21 21:47:16 +00:00
* fix(controller): decode old object for delete requests Signed-off-by: Oliver Bähler <oliverbaehler@hotmail.com> * chore: modernize golang Signed-off-by: Oliver Bähler <oliverbaehler@hotmail.com> * chore: modernize golang Signed-off-by: Oliver Bähler <oliverbaehler@hotmail.com> * chore: modernize golang Signed-off-by: Oliver Bähler <oliverbaehler@hotmail.com> * fix: preserve ca-bundles injected from external providers Signed-off-by: Oliver Baehler <oliver@sudo-i.net> * fix: add serviceaccount validation for tenantowners and tenants Signed-off-by: Oliver Baehler <oliver@sudo-i.net> * fix: add serviceaccount validation for tenantowners and tenants Signed-off-by: Oliver Baehler <oliver@sudo-i.net> * fix(sec): add namespace termination interception Signed-off-by: Oliver Baehler <oliver@sudo-i.net> * fix(sec): add namespace termination interception Signed-off-by: Oliver Baehler <oliver@sudo-i.net> * feat: correct sa check Signed-off-by: Oliver Baehler <oliver@sudo-i.net> * fix(sec): add namespace termination interception Signed-off-by: Oliver Baehler <oliver@sudo-i.net> --------- Signed-off-by: Oliver Bähler <oliverbaehler@hotmail.com> Signed-off-by: Oliver Baehler <oliver@sudo-i.net>
100 lines
2.4 KiB
Go
100 lines
2.4 KiB
Go
// 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
|
|
}
|