diff options
author | cdoern <cdoern@redhat.com> | 2022-06-16 15:32:32 -0400 |
---|---|---|
committer | Charlie Doern <cdoern@redhat.com> | 2022-06-20 10:25:00 -0400 |
commit | f451b68dfa71d3690d49bc0cf3536b77cd6572d0 (patch) | |
tree | 8f16252090eed226bb74dd4dcfddfe39fb10696d /test/e2e/pod_create_test.go | |
parent | ff06c791ad7fb32b6a055e0d005f7354df43a5d1 (diff) | |
download | podman-f451b68dfa71d3690d49bc0cf3536b77cd6572d0.tar.gz podman-f451b68dfa71d3690d49bc0cf3536b77cd6572d0.tar.bz2 podman-f451b68dfa71d3690d49bc0cf3536b77cd6572d0.zip |
podman pod create --shm-size
expose the --shm-size flag to podman pod create and add proper handling and inheritance
for the option.
resolves #14609
Signed-off-by: Charlie Doern <cdoern@redhat.com>
Diffstat (limited to 'test/e2e/pod_create_test.go')
-rw-r--r-- | test/e2e/pod_create_test.go | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/test/e2e/pod_create_test.go b/test/e2e/pod_create_test.go index 4919cc670..a48193e90 100644 --- a/test/e2e/pod_create_test.go +++ b/test/e2e/pod_create_test.go @@ -1134,4 +1134,27 @@ ENTRYPOINT ["sleep","99999"] Expect(session.OutputToString()).Should(ContainSubstring("/vol2")) }) + It("podman pod create --shm-size", func() { + podCreate := podmanTest.Podman([]string{"pod", "create", "--shm-size", "10mb"}) + podCreate.WaitWithDefaultTimeout() + Expect(podCreate).Should(Exit(0)) + + run := podmanTest.Podman([]string{"run", "-it", "--pod", podCreate.OutputToString(), ALPINE, "mount"}) + run.WaitWithDefaultTimeout() + Expect(run).Should(Exit(0)) + t, strings := run.GrepString("shm on /dev/shm type tmpfs") + Expect(t).To(BeTrue()) + Expect(strings[0]).Should(ContainSubstring("size=10240k")) + }) + + It("podman pod create --shm-size and --ipc=host conflict", func() { + podCreate := podmanTest.Podman([]string{"pod", "create", "--shm-size", "10mb"}) + podCreate.WaitWithDefaultTimeout() + Expect(podCreate).Should(Exit(0)) + + run := podmanTest.Podman([]string{"run", "-dt", "--pod", podCreate.OutputToString(), "--ipc", "host", ALPINE}) + run.WaitWithDefaultTimeout() + Expect(run).ShouldNot(Exit(0)) + }) + }) |