From 6d52ebdd13ad052bbf8bfa9efa4e45cafbce1fc2 Mon Sep 17 00:00:00 2001 From: Matthew Heon Date: Sun, 3 Jun 2018 14:05:54 -0400 Subject: Add flag to add annotations to a container Also add annotations from the image the container was created from. Signed-off-by: Matthew Heon Closes: #886 Approved by: rhatdan --- test/e2e/create_test.go | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'test/e2e') diff --git a/test/e2e/create_test.go b/test/e2e/create_test.go index ebe4ed924..b6bc9b70d 100644 --- a/test/e2e/create_test.go +++ b/test/e2e/create_test.go @@ -54,4 +54,18 @@ var _ = Describe("Podman create", func() { Expect(session.ExitCode()).To(Equal(0)) Expect(podmanTest.NumberOfContainers()).To(Equal(1)) }) + + It("podman create adds annotation", func() { + session := podmanTest.Podman([]string{"create", "--annotation", "HELLO=WORLD", ALPINE, "ls"}) + session.WaitWithDefaultTimeout() + Expect(session.ExitCode()).To(Equal(0)) + Expect(podmanTest.NumberOfContainers()).To(Equal(1)) + + check := podmanTest.Podman([]string{"inspect", "-l"}) + check.WaitWithDefaultTimeout() + data := check.InspectContainerToJSON() + value, ok := data[0].Config.Annotations["HELLO"] + Expect(ok).To(BeTrue()) + Expect(value).To(Equal("WORLD")) + }) }) -- cgit v1.2.3-54-g00ecf