1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-31 03:45:17 +00:00

Replace ToUnstructured() with Marshal/Unmarshal (#3150)

Signed-off-by: Abhinav Sinha <abhinav@nirmata.com>

Co-authored-by: shuting <shuting@nirmata.com>
This commit is contained in:
Abhinav Sinha 2022-03-17 19:50:24 +05:30 committed by GitHub
parent 860253d6aa
commit 17caa561ec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,6 +2,7 @@ package client
import (
"context"
"encoding/json"
"fmt"
"strings"
"time"
@ -10,7 +11,6 @@ import (
openapiv2 "github.com/googleapis/gnostic/openapiv2"
meta "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/runtime/schema"
patchTypes "k8s.io/apimachinery/pkg/types"
"k8s.io/apimachinery/pkg/version"
@ -186,11 +186,19 @@ func (c *Client) UpdateStatusResource(apiVersion string, kind string, namespace
}
func convertToUnstructured(obj interface{}) *unstructured.Unstructured {
unstructuredObj, err := runtime.DefaultUnstructuredConverter.ToUnstructured(&obj)
unstrObj := map[string]interface{}{}
raw, err := json.Marshal(obj)
if err != nil {
return nil
}
return &unstructured.Unstructured{Object: unstructuredObj}
err = json.Unmarshal(raw, &unstrObj)
if err != nil {
return nil
}
return &unstructured.Unstructured{Object: unstrObj}
}
//IDiscovery provides interface to mange Kind and GVR mapping