mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
49 lines
1001 B
Go
49 lines
1001 B
Go
package gvk
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/pkg/errors"
|
|
"github.com/rancher/wrangler/pkg/schemes"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
"k8s.io/apimachinery/pkg/runtime/schema"
|
|
)
|
|
|
|
func Get(obj runtime.Object) (schema.GroupVersionKind, error) {
|
|
gvk := obj.GetObjectKind().GroupVersionKind()
|
|
if gvk.Kind != "" {
|
|
return gvk, nil
|
|
}
|
|
|
|
gvks, _, err := schemes.All.ObjectKinds(obj)
|
|
if err != nil {
|
|
return schema.GroupVersionKind{}, errors.Wrapf(err, "failed to find gvk for %T, you may need to import the wrangler generated controller package", obj)
|
|
}
|
|
|
|
if len(gvks) == 0 {
|
|
return schema.GroupVersionKind{}, fmt.Errorf("failed to find gvk for %T", obj)
|
|
}
|
|
|
|
return gvks[0], nil
|
|
}
|
|
|
|
func Set(obj runtime.Object) error {
|
|
gvk := obj.GetObjectKind().GroupVersionKind()
|
|
if gvk.Kind != "" {
|
|
return nil
|
|
}
|
|
|
|
gvks, _, err := schemes.All.ObjectKinds(obj)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if len(gvks) == 0 {
|
|
return nil
|
|
}
|
|
|
|
kind := obj.GetObjectKind()
|
|
kind.SetGroupVersionKind(gvks[0])
|
|
return nil
|
|
}
|