diff options
author | Brent Baude <bbaude@redhat.com> | 2021-08-12 12:55:07 -0500 |
---|---|---|
committer | Brent Baude <bbaude@redhat.com> | 2021-08-12 12:57:15 -0500 |
commit | bef26f2582733c23957a863bc0769a618ab773a8 (patch) | |
tree | 8c912ac25388be644b04082d09ac73f75768c67e /test/e2e/pod_initcontainers_test.go | |
parent | 94886d4abad7787cb920614ed26955ca36b13846 (diff) | |
download | podman-bef26f2582733c23957a863bc0769a618ab773a8.tar.gz podman-bef26f2582733c23957a863bc0769a618ab773a8.tar.bz2 podman-bef26f2582733c23957a863bc0769a618ab773a8.zip |
rename oneshot initcontainers to once
after the init containers pr merged, it was suggested to use `once`
instead of `oneshot` containers as it is more aligned with other
terminiology used similarily.
[NO TESTS NEEDED]
Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'test/e2e/pod_initcontainers_test.go')
-rw-r--r-- | test/e2e/pod_initcontainers_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/e2e/pod_initcontainers_test.go b/test/e2e/pod_initcontainers_test.go index 606294f51..11e7ca400 100644 --- a/test/e2e/pod_initcontainers_test.go +++ b/test/e2e/pod_initcontainers_test.go @@ -98,10 +98,10 @@ var _ = Describe("Podman init containers", func() { Expect(checkLog.OutputToString()).To(Equal(content)) }) - It("podman make sure oneshot container is removed", func() { + It("podman make sure once container is removed", func() { filename := filepath.Join("/dev/shm", RandomString(12)) content := RandomString(16) - session := podmanTest.Podman([]string{"create", "--init-ctr", "oneshot", "--pod", "new:foobar", ALPINE, "bin/sh", "-c", fmt.Sprintf("echo %s > %s", content, filename)}) + session := podmanTest.Podman([]string{"create", "--init-ctr", "once", "--pod", "new:foobar", ALPINE, "bin/sh", "-c", fmt.Sprintf("echo %s > %s", content, filename)}) session.WaitWithDefaultTimeout() initContainerID := session.OutputToString() Expect(session).Should(Exit(0)) |