fix(kube): output internal object table

fixes #3937
pull/3946/head
Adam Reese 7 years ago
parent 2a8a59d33e
commit cefee4b749
No known key found for this signature in database
GPG Key ID: 06F35E60A7A18DD6

@ -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)

Loading…
Cancel
Save