mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
fix "failed to patch resource: json: cannot unmarshal array into Go value of type jsonpatch.Operation"
This commit is contained in:
parent
08e8b5bd4c
commit
b39ec75dbd
1 changed files with 2 additions and 4 deletions
|
@ -89,11 +89,9 @@ func ApplyPatches(resource []byte, patches [][]byte) ([]byte, error) {
|
|||
return patchedDocument, err
|
||||
}
|
||||
|
||||
//ApplyPatchNew ...
|
||||
//ApplyPatchNew patches given resource with given joined patches
|
||||
func ApplyPatchNew(resource, patch []byte) ([]byte, error) {
|
||||
patchesList := [][]byte{patch}
|
||||
joinedPatches := JoinPatches(patchesList)
|
||||
jsonpatch, err := jsonpatch.DecodePatch(joinedPatches)
|
||||
jsonpatch, err := jsonpatch.DecodePatch(patch)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue