Unverified Commit 4c14bc4f authored by Adam Reese's avatar Adam Reese Committed by Matthew Fisher
Browse files

fix(kube): output internal object table

fixes #3937

(cherry picked from commit cefee4b7)
No related merge requests found
Showing with 1 addition and 1 deletion
+1 -1
......@@ -178,7 +178,7 @@ func (c *Client) Get(namespace string, reader io.Reader) (string, error) {
// versions per cluster, but this certainly won't hurt anything, so let's be safe.
gvk := info.ResourceMapping().GroupVersionKind
vk := gvk.Version + "/" + gvk.Kind
objs[vk] = append(objs[vk], info.Object)
objs[vk] = append(objs[vk], info.AsInternal())
//Get the relation pods
objPods, err = c.getSelectRelationPod(info, objPods)
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment