mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-03-03 10:10:18 +00:00
30 lines
760 B
Go
30 lines
760 B
Go
// Copyright 2020-2021 Clastix Labs
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package pod
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/clastix/capsule/pkg/api"
|
|
"github.com/clastix/capsule/pkg/webhook/utils"
|
|
)
|
|
|
|
type podPriorityClassForbiddenError struct {
|
|
priorityClassName string
|
|
spec api.DefaultAllowedListSpec
|
|
}
|
|
|
|
func NewPodPriorityClassForbidden(priorityClassName string, spec api.DefaultAllowedListSpec) error {
|
|
return &podPriorityClassForbiddenError{
|
|
priorityClassName: priorityClassName,
|
|
spec: spec,
|
|
}
|
|
}
|
|
|
|
func (f podPriorityClassForbiddenError) Error() (err string) {
|
|
msg := fmt.Sprintf("Pod Priority Class %s is forbidden for the current Tenant: ", f.priorityClassName)
|
|
|
|
return utils.DefaultAllowedValuesErrorMessage(f.spec, msg)
|
|
}
|