From 635bbca15389ad26af22087a81e728a5f3f5eefd Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Thu, 1 Dec 2022 13:49:13 +0100 Subject: [PATCH] imagetools inspect: missing annotations key Signed-off-by: CrazyMax --- util/imagetools/printers.go | 1 + 1 file changed, 1 insertion(+) diff --git a/util/imagetools/printers.go b/util/imagetools/printers.go index 1d362819efb8..371607010f8a 100644 --- a/util/imagetools/printers.go +++ b/util/imagetools/printers.go @@ -252,6 +252,7 @@ func (p *Printer) printManifestList(out io.Writer) error { _, _ = fmt.Fprintf(w, "%sURLs:\t%s\n", defaultPfx, strings.Join(m.URLs, ", ")) } if len(m.Annotations) > 0 { + _, _ = fmt.Fprintf(w, "%sAnnotations:\t\n", defaultPfx) _ = w.Flush() w2 := tabwriter.NewWriter(os.Stdout, 0, 0, 1, ' ', 0) for k, v := range m.Annotations {