Skip to content

Commit

Permalink
fix(kube): output internal object table
Browse files Browse the repository at this point in the history
fixes helm#3937
  • Loading branch information
adamreese committed Apr 23, 2018
1 parent 2a8a59d commit cefee4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/kube/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit cefee4b

Please sign in to comment.