mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-04-13 06:08:03 +00:00
126 lines
4.2 KiB
Go
126 lines
4.2 KiB
Go
// Copyright 2020-2026 Project Capsule Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package validation
|
|
|
|
import (
|
|
"context"
|
|
|
|
admissionv1 "k8s.io/api/admission/v1"
|
|
"k8s.io/client-go/tools/events"
|
|
"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/pkg/runtime/configuration"
|
|
"github.com/projectcapsule/capsule/pkg/runtime/handlers"
|
|
)
|
|
|
|
type warningHandler struct {
|
|
cfg configuration.Configuration
|
|
}
|
|
|
|
func WarningHandler(cfg configuration.Configuration) handlers.TypedHandler[*capsulev1beta2.Tenant] {
|
|
return &warningHandler{
|
|
cfg: cfg,
|
|
}
|
|
}
|
|
|
|
func (h *warningHandler) OnCreate(
|
|
_ client.Client,
|
|
tnt *capsulev1beta2.Tenant,
|
|
_ admission.Decoder,
|
|
_ events.EventRecorder,
|
|
) handlers.Func {
|
|
return func(ctx context.Context, req admission.Request) *admission.Response {
|
|
return h.handle(tnt, req)
|
|
}
|
|
}
|
|
|
|
func (h *warningHandler) OnDelete(client.Client, *capsulev1beta2.Tenant, admission.Decoder, events.EventRecorder) handlers.Func {
|
|
return func(context.Context, admission.Request) *admission.Response {
|
|
return nil
|
|
}
|
|
}
|
|
|
|
func (h *warningHandler) OnUpdate(
|
|
_ client.Client,
|
|
tnt *capsulev1beta2.Tenant,
|
|
old *capsulev1beta2.Tenant,
|
|
_ admission.Decoder,
|
|
_ events.EventRecorder,
|
|
) handlers.Func {
|
|
return func(_ context.Context, req admission.Request) *admission.Response {
|
|
return h.handle(tnt, req)
|
|
}
|
|
}
|
|
|
|
func (h *warningHandler) handle(tnt *capsulev1beta2.Tenant, req admission.Request) *admission.Response {
|
|
response := &admission.Response{
|
|
AdmissionResponse: admissionv1.AdmissionResponse{
|
|
UID: req.UID,
|
|
Allowed: true,
|
|
},
|
|
}
|
|
|
|
//nolint:staticcheck
|
|
if tnt.Spec.ContainerRegistries != nil {
|
|
if len(tnt.Spec.ContainerRegistries.Exact) > 0 || len(tnt.Spec.ContainerRegistries.Regex) > 0 {
|
|
response.Warnings = append(response.Warnings,
|
|
"The field `containerRegistries` is deprecated and will be removed in a future release. Please migrate to rules. See: https://projectcapsule.dev/docs/tenants/rules.",
|
|
)
|
|
}
|
|
}
|
|
|
|
//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
|
|
}
|