mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 16:06:56 +00:00
45 lines
1.2 KiB
Go
45 lines
1.2 KiB
Go
package webhooks
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
|
|
"github.com/golang/glog"
|
|
policyv1 "github.com/nirmata/kyverno/pkg/apis/policy/v1alpha1"
|
|
"github.com/nirmata/kyverno/pkg/utils"
|
|
v1beta1 "k8s.io/api/admission/v1beta1"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
)
|
|
|
|
//HandlePolicyValidation performs the validation check on policy resource
|
|
func (ws *WebhookServer) HandlePolicyValidation(request *v1beta1.AdmissionRequest) *v1beta1.AdmissionResponse {
|
|
return ws.validateUniqueRuleName(request.Object.Raw)
|
|
}
|
|
|
|
// Verify if the Rule names are unique within a policy
|
|
func (ws *WebhookServer) validateUniqueRuleName(rawPolicy []byte) *v1beta1.AdmissionResponse {
|
|
var policy *policyv1.Policy
|
|
var ruleNames []string
|
|
|
|
json.Unmarshal(rawPolicy, &policy)
|
|
|
|
for _, rule := range policy.Spec.Rules {
|
|
if utils.Contains(ruleNames, rule.Name) {
|
|
msg := fmt.Sprintf(`The policy "%s" is invalid: duplicate rule name: "%s"`, policy.Name, rule.Name)
|
|
glog.Errorln(msg)
|
|
|
|
return &v1beta1.AdmissionResponse{
|
|
Allowed: false,
|
|
Result: &metav1.Status{
|
|
Message: msg,
|
|
},
|
|
}
|
|
}
|
|
ruleNames = append(ruleNames, rule.Name)
|
|
}
|
|
|
|
glog.V(3).Infof("Policy validation passed")
|
|
return &v1beta1.AdmissionResponse{
|
|
Allowed: true,
|
|
}
|
|
}
|