diff --git a/cmd/fluxctl/list_images_cmd.go b/cmd/fluxctl/list_images_cmd.go index 416bab759..3ac8f8d58 100644 --- a/cmd/fluxctl/list_images_cmd.go +++ b/cmd/fluxctl/list_images_cmd.go @@ -136,6 +136,14 @@ func (opts *imageListOpts) RunE(cmd *cobra.Command, args []string) error { fmt.Fprintf(out, "\t\t%s %s\t%s\n", running, tag, createdAt) } } + if !foundRunning { + running := "'->" + if currentTag == "" { + currentTag = "(untagged)" + } + fmt.Fprintf(out, "\t\t%s %s\t%s\n", running, currentTag, "?") + + } workloadName = "" } }