mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-05-16 06:16:34 +00:00
* chore(deps): update dependency golangci/golangci-lint to v2.8.0 * chore(deps): update dependency golangci/golangci-lint to v2.8.0 Signed-off-by: Hristo Hristov <me@hhristov.info> * chore(deps): update dependency golangci/golangci-lint to v2.8.0 Signed-off-by: Hristo Hristov <me@hhristov.info> * chore(deps): update dependency golangci/golangci-lint to v2.8.0 Signed-off-by: Hristo Hristov <me@hhristov.info> --------- Signed-off-by: Hristo Hristov <me@hhristov.info> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Hristo Hristov <me@hhristov.info>
104 lines
2.7 KiB
Go
104 lines
2.7 KiB
Go
// Copyright 2020-2026 Project Capsule Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package pod
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
|
|
corev1 "k8s.io/api/core/v1"
|
|
"k8s.io/client-go/tools/record"
|
|
"sigs.k8s.io/controller-runtime/pkg/client"
|
|
"sigs.k8s.io/controller-runtime/pkg/webhook/admission"
|
|
|
|
capsulev1beta2 "github.com/projectcapsule/capsule/api/v1beta2"
|
|
capsulewebhook "github.com/projectcapsule/capsule/internal/webhook"
|
|
"github.com/projectcapsule/capsule/internal/webhook/utils"
|
|
)
|
|
|
|
type priorityClass struct{}
|
|
|
|
func PriorityClass() capsulewebhook.TypedHandlerWithTenant[*corev1.Pod] {
|
|
return &priorityClass{}
|
|
}
|
|
|
|
func (h *priorityClass) OnCreate(
|
|
c client.Client,
|
|
pod *corev1.Pod,
|
|
decoder admission.Decoder,
|
|
recorder record.EventRecorder,
|
|
tnt *capsulev1beta2.Tenant,
|
|
) capsulewebhook.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, c, 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.Eventf(tnt, corev1.EventTypeWarning, "ForbiddenPriorityClass", "Pod %s/%s is using Priority Class %s is forbidden for the current Tenant", pod.Namespace, pod.Name, priorityClassName)
|
|
|
|
response := admission.Denied(NewPodPriorityClassForbidden(priorityClassName, *allowed).Error())
|
|
|
|
return &response
|
|
}
|
|
}
|
|
}
|
|
|
|
func (h *priorityClass) OnUpdate(
|
|
client.Client,
|
|
*corev1.Pod,
|
|
*corev1.Pod,
|
|
admission.Decoder,
|
|
record.EventRecorder,
|
|
*capsulev1beta2.Tenant,
|
|
) capsulewebhook.Func {
|
|
return func(context.Context, admission.Request) *admission.Response {
|
|
return nil
|
|
}
|
|
}
|
|
|
|
func (h *priorityClass) OnDelete(
|
|
client.Client,
|
|
*corev1.Pod,
|
|
admission.Decoder,
|
|
record.EventRecorder,
|
|
*capsulev1beta2.Tenant,
|
|
) capsulewebhook.Func {
|
|
return func(context.Context, admission.Request) *admission.Response {
|
|
return nil
|
|
}
|
|
}
|