mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-03-02 17:50:17 +00:00
* chore: add nwa Signed-off-by: Oliver Bähler <oliverbaehler@hotmail.com> * chore: update helm-schema version Signed-off-by: Oliver Bähler <oliverbaehler@hotmail.com> * chore: update helm-schema version Signed-off-by: Oliver Bähler <oliverbaehler@hotmail.com> --------- Signed-off-by: Oliver Bähler <oliverbaehler@hotmail.com>
30 lines
772 B
Go
30 lines
772 B
Go
// Copyright 2020-2025 Project Capsule Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package pod
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/projectcapsule/capsule/pkg/api"
|
|
"github.com/projectcapsule/capsule/pkg/webhook/utils"
|
|
)
|
|
|
|
type podRuntimeClassForbiddenError struct {
|
|
runtimeClassName string
|
|
spec api.DefaultAllowedListSpec
|
|
}
|
|
|
|
func NewPodRuntimeClassForbidden(runtimeClassName string, spec api.DefaultAllowedListSpec) error {
|
|
return &podRuntimeClassForbiddenError{
|
|
runtimeClassName: runtimeClassName,
|
|
spec: spec,
|
|
}
|
|
}
|
|
|
|
func (f podRuntimeClassForbiddenError) Error() (err string) {
|
|
err = fmt.Sprintf("Pod Runtime Class %s is forbidden for the current Tenant: ", f.runtimeClassName)
|
|
|
|
return utils.DefaultAllowedValuesErrorMessage(f.spec, err)
|
|
}
|