A KubeObject is an alias for Kubernetes objects.
| 16 | |
| 17 | // A KubeObject is an alias for Kubernetes objects. |
| 18 | type KubeObject interface { |
| 19 | meta.ObjectMetaAccessor |
| 20 | runtime.Object |
| 21 | } |
| 22 | |
| 23 | // ObjectPath returns the full path of an object. |
| 24 | // This uses the format "<apiVersion>/namespaces/<namespace>/<kind>/<name>" |
nothing calls this directly
no outgoing calls
no test coverage detected