Add header to play kube output

Signed-off-by: Peter Hunt <pehunt@redhat.com>
This commit is contained in:
Peter Hunt
2019-04-18 09:02:04 -04:00
parent 47c1017cf8
commit 8c478f94f9

View File

@ -238,7 +238,13 @@ func playKubeYAMLCmd(c *cliconfig.KubePlayValues, ctx context.Context, runtime *
// We've now successfully converted this YAML into a pod
// print our pod and containers, signifying we succeeded
fmt.Println(pod.ID())
fmt.Printf("Pod:\n%s\n", pod.ID())
if len(containers) == 1 {
fmt.Printf("Container:\n")
}
if len(containers) > 1 {
fmt.Printf("Containers:\n")
}
for _, ctr := range containers {
fmt.Println(ctr.ID())
}