mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
Fixed issue: Overlay was not returning error
This commit is contained in:
parent
139e83c307
commit
f57cce907a
1 changed files with 9 additions and 4 deletions
|
@ -15,10 +15,12 @@ import (
|
|||
|
||||
// ProcessOverlay handles validating admission request
|
||||
// Checks the target resourse for rules defined in the policy
|
||||
func ProcessOverlay(policy kubepolicy.Policy, rawResource []byte, gvk metav1.GroupVersionKind) ([]PatchBytes, []byte) {
|
||||
func ProcessOverlay(policy kubepolicy.Policy, rawResource []byte, gvk metav1.GroupVersionKind) ([]PatchBytes, error) {
|
||||
var resource interface{}
|
||||
json.Unmarshal(rawResource, &resource)
|
||||
|
||||
var appliedPatches []PatchBytes
|
||||
|
||||
for _, rule := range policy.Spec.Rules {
|
||||
if rule.Mutation == nil || rule.Mutation.Overlay == nil {
|
||||
continue
|
||||
|
@ -31,12 +33,15 @@ func ProcessOverlay(policy kubepolicy.Policy, rawResource []byte, gvk metav1.Gro
|
|||
}
|
||||
|
||||
overlay := *rule.Mutation.Overlay
|
||||
if err, _ := applyOverlay(resource, overlay, "/"); err != nil {
|
||||
//return fmt.Errorf("%s: %s", *rule.Validation.Message, err.Error())
|
||||
patch, err := applyOverlay(resource, overlay, "/")
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("Overlay application failed: %v", err.Error())
|
||||
}
|
||||
|
||||
appliedPatches = append(appliedPatches, patch...)
|
||||
}
|
||||
|
||||
return nil, nil
|
||||
return appliedPatches, nil
|
||||
}
|
||||
|
||||
func applyOverlay(resource, overlay interface{}, path string) ([]PatchBytes, error) {
|
||||
|
|
Loading…
Add table
Reference in a new issue