mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-02-14 09:59:57 +00:00
* feat(config): add combined users property as successor for usergroups and usernames configuration Signed-off-by: Oliver Bähler <oliverbaehler@hotmail.com> * fix(crds): add proper deprecation notices on properties and via admission warnings Signed-off-by: Oliver Bähler <oliverbaehler@hotmail.com> * chore: add local monitoring environment Signed-off-by: Oliver Bähler <oliverbaehler@hotmail.com> --------- Signed-off-by: Oliver Bähler <oliverbaehler@hotmail.com>
117 lines
4.0 KiB
Go
117 lines
4.0 KiB
Go
// Copyright 2020-2025 Project Capsule Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package validation
|
|
|
|
import (
|
|
"context"
|
|
|
|
admissionv1 "k8s.io/api/admission/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"
|
|
"github.com/projectcapsule/capsule/pkg/configuration"
|
|
)
|
|
|
|
type warningHandler struct {
|
|
cfg configuration.Configuration
|
|
}
|
|
|
|
func WarningHandler(cfg configuration.Configuration) capsulewebhook.Handler {
|
|
return &warningHandler{
|
|
cfg: cfg,
|
|
}
|
|
}
|
|
|
|
func (h *warningHandler) OnCreate(c client.Client, decoder admission.Decoder, _ record.EventRecorder) capsulewebhook.Func {
|
|
return func(ctx context.Context, req admission.Request) *admission.Response {
|
|
tnt := &capsulev1beta2.Tenant{}
|
|
if err := decoder.Decode(req, tnt); err != nil {
|
|
return utils.ErroredResponse(err)
|
|
}
|
|
|
|
return h.handle(tnt, decoder, req)
|
|
}
|
|
}
|
|
|
|
func (h *warningHandler) OnDelete(client.Client, admission.Decoder, record.EventRecorder) capsulewebhook.Func {
|
|
return func(context.Context, admission.Request) *admission.Response {
|
|
return nil
|
|
}
|
|
}
|
|
|
|
func (h *warningHandler) OnUpdate(_ client.Client, decoder admission.Decoder, _ record.EventRecorder) capsulewebhook.Func {
|
|
return func(_ context.Context, req admission.Request) *admission.Response {
|
|
tnt := &capsulev1beta2.Tenant{}
|
|
if err := decoder.Decode(req, tnt); err != nil {
|
|
return utils.ErroredResponse(err)
|
|
}
|
|
|
|
return h.handle(tnt, decoder, req)
|
|
}
|
|
}
|
|
|
|
func (h *warningHandler) handle(tnt *capsulev1beta2.Tenant, decoder admission.Decoder, req admission.Request) *admission.Response {
|
|
response := &admission.Response{
|
|
AdmissionResponse: admissionv1.AdmissionResponse{
|
|
UID: req.UID,
|
|
Allowed: true,
|
|
},
|
|
}
|
|
|
|
//nolint:staticcheck
|
|
if len(tnt.Spec.LimitRanges.Items) > 0 {
|
|
response.Warnings = append(response.Warnings,
|
|
"The field `limitRanges` is deprecated and will be removed in a future release. Please migrate to TenantReplications. See: https://projectcapsule.dev/docs/tenants/enforcement/#limitrange-distribution-with-tenantreplications.",
|
|
)
|
|
}
|
|
|
|
//nolint:staticcheck
|
|
if len(tnt.Spec.NetworkPolicies.Items) > 0 {
|
|
response.Warnings = append(response.Warnings,
|
|
"The field `networkPolicies` is deprecated and will be removed in a future release. Please migrate to TenantReplications. See: https://projectcapsule.dev/docs/tenants/enforcement/#networkpolicy-distribution-with-tenantreplications.",
|
|
)
|
|
}
|
|
|
|
//nolint:staticcheck
|
|
if tnt.Spec.NamespaceOptions != nil && tnt.Spec.NamespaceOptions.AdditionalMetadata != nil {
|
|
response.Warnings = append(response.Warnings,
|
|
"The field `additionalMetadata` is deprecated and will be removed in a future release. Please migrate to `additionalMetadataList`. See: https://projectcapsule.dev/docs/tenants/metadata/#additionalmetadatalist.",
|
|
)
|
|
}
|
|
|
|
//nolint:staticcheck
|
|
if tnt.Spec.StorageClasses != nil && tnt.Spec.StorageClasses.Regex != "" {
|
|
response.Warnings = append(response.Warnings,
|
|
"The `regex` selector for StorageClasses is deprecated and will be removed in a future release.",
|
|
)
|
|
}
|
|
|
|
//nolint:staticcheck
|
|
if tnt.Spec.GatewayOptions.AllowedClasses != nil && tnt.Spec.GatewayOptions.AllowedClasses.Regex != "" {
|
|
response.Warnings = append(response.Warnings,
|
|
"The `regex` selector for GatewayClasses is deprecated and will be removed in a future release.",
|
|
)
|
|
}
|
|
|
|
//nolint:staticcheck
|
|
if tnt.Spec.PriorityClasses != nil && tnt.Spec.PriorityClasses.Regex != "" {
|
|
response.Warnings = append(response.Warnings,
|
|
"The `regex` selector for PriorityClasses is deprecated and will be removed in a future release.",
|
|
)
|
|
}
|
|
|
|
//nolint:staticcheck
|
|
if tnt.Spec.RuntimeClasses != nil && tnt.Spec.RuntimeClasses.Regex != "" {
|
|
response.Warnings = append(response.Warnings,
|
|
"The `regex` selector for RuntimeClasses is deprecated and will be removed in a future release.",
|
|
)
|
|
}
|
|
|
|
return response
|
|
}
|