forked from operator-framework/operator-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
object.go
40 lines (36 loc) · 916 Bytes
/
object.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package k8sutil
import (
yaml "github.com/ghodss/yaml"
"k8s.io/apimachinery/pkg/runtime"
)
// GetObjectBytes marshalls an object and removes runtime-managed fields:
// 'status', 'creationTimestamp'
func GetObjectBytes(obj interface{}) ([]byte, error) {
u, err := runtime.DefaultUnstructuredConverter.ToUnstructured(obj)
if err != nil {
return nil, err
}
deleteKeys := []string{"status", "creationTimestamp"}
for _, dk := range deleteKeys {
deleteKeyFromUnstructured(u, dk)
}
return yaml.Marshal(u)
}
func deleteKeyFromUnstructured(u map[string]interface{}, key string) {
if _, ok := u[key]; ok {
delete(u, key)
return
}
for _, v := range u {
switch t := v.(type) {
case map[string]interface{}:
deleteKeyFromUnstructured(t, key)
case []interface{}:
for _, ti := range t {
if m, ok := ti.(map[string]interface{}); ok {
deleteKeyFromUnstructured(m, key)
}
}
}
}
}