mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-08-19 04:26:45 +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> * feat: abstract ruling Signed-off-by: Oliver Baehler <oliver@sudo-i.net> * feat: migrate events api * feat: migrate events api * feat: migrate events api * feat: migrate events api * feat: migrate events api * feat: migrate events api * feat: migrate events api * feat: migrate events api * feat: migrate events api * feat: migrate events api --------- Signed-off-by: Oliver Bähler <oliverbaehler@hotmail.com> Signed-off-by: Oliver Baehler <oliver@sudo-i.net>
122 lines
3.1 KiB
Go
122 lines
3.1 KiB
Go
// Copyright 2020-2026 Project Capsule Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package pod
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"net/http"
|
|
|
|
corev1 "k8s.io/api/core/v1"
|
|
"sigs.k8s.io/controller-runtime/pkg/client"
|
|
"sigs.k8s.io/controller-runtime/pkg/webhook/admission"
|
|
|
|
capsulev1beta2 "github.com/projectcapsule/capsule/api/v1beta2"
|
|
"github.com/projectcapsule/capsule/internal/webhook/utils"
|
|
caperrors "github.com/projectcapsule/capsule/pkg/api/errors"
|
|
"github.com/projectcapsule/capsule/pkg/api/rules"
|
|
ad "github.com/projectcapsule/capsule/pkg/runtime/admission"
|
|
"github.com/projectcapsule/capsule/pkg/runtime/events"
|
|
"github.com/projectcapsule/capsule/pkg/runtime/handlers"
|
|
)
|
|
|
|
type priorityClass struct{}
|
|
|
|
func PriorityClass() handlers.TypedHandlerWithTenantWithRuleset[*corev1.Pod] {
|
|
return &priorityClass{}
|
|
}
|
|
|
|
func (h *priorityClass) OnCreate(
|
|
_ client.Client,
|
|
reader client.Reader,
|
|
pod *corev1.Pod,
|
|
decoder admission.Decoder,
|
|
recorder events.EventRecorder,
|
|
tnt *capsulev1beta2.Tenant,
|
|
_ []*rules.NamespaceRuleBodyNamespace,
|
|
) handlers.Func {
|
|
return func(ctx context.Context, req admission.Request) *admission.Response {
|
|
allowed := tnt.Spec.PriorityClasses
|
|
|
|
if allowed == nil {
|
|
return nil
|
|
}
|
|
|
|
priorityClassName := pod.Spec.PriorityClassName
|
|
|
|
if len(priorityClassName) == 0 {
|
|
// We don't have to force Pod to specify a Priority Class
|
|
return nil
|
|
}
|
|
|
|
selector := false
|
|
|
|
// Verify if the StorageClass exists and matches the label selector/expression
|
|
if len(allowed.MatchExpressions) > 0 || len(allowed.MatchLabels) > 0 {
|
|
priorityClassObj, err := utils.GetPriorityClassByName(ctx, reader, priorityClassName)
|
|
if err != nil {
|
|
response := admission.Errored(http.StatusInternalServerError, err)
|
|
|
|
return &response
|
|
}
|
|
|
|
// Storage Class is present, check if it matches the selector
|
|
if priorityClassObj != nil {
|
|
selector = allowed.SelectorMatch(priorityClassObj)
|
|
}
|
|
}
|
|
|
|
switch {
|
|
case allowed.MatchDefault(priorityClassName):
|
|
// Allow if given Priority Class is equal tenant default (eventough it's not allowed by selector)
|
|
return nil
|
|
case allowed.Match(priorityClassName) || selector:
|
|
return nil
|
|
default:
|
|
recorder.LabeledEvent(
|
|
pod,
|
|
corev1.EventTypeWarning,
|
|
events.ReasonForbiddenPriorityClass,
|
|
events.ActionValidationDenied,
|
|
fmt.Sprintf("using priorityclass %s is forbidden for the tenant", priorityClassName),
|
|
).
|
|
WithRelated(tnt).
|
|
WithTenantLabel(tnt).
|
|
WithRequestAnnotations(req).
|
|
Emit(ctx)
|
|
|
|
return ad.Deny(caperrors.NewPodPriorityClassForbidden(priorityClassName, *allowed).Error())
|
|
}
|
|
}
|
|
}
|
|
|
|
func (h *priorityClass) OnUpdate(
|
|
client.Client,
|
|
client.Reader,
|
|
*corev1.Pod,
|
|
*corev1.Pod,
|
|
admission.Decoder,
|
|
events.EventRecorder,
|
|
*capsulev1beta2.Tenant,
|
|
[]*rules.NamespaceRuleBodyNamespace,
|
|
) handlers.Func {
|
|
return func(context.Context, admission.Request) *admission.Response {
|
|
return nil
|
|
}
|
|
}
|
|
|
|
func (h *priorityClass) OnDelete(
|
|
client.Client,
|
|
client.Reader,
|
|
*corev1.Pod,
|
|
admission.Decoder,
|
|
events.EventRecorder,
|
|
*capsulev1beta2.Tenant,
|
|
[]*rules.NamespaceRuleBodyNamespace,
|
|
) handlers.Func {
|
|
return func(context.Context, admission.Request) *admission.Response {
|
|
return nil
|
|
}
|
|
}
|