summaryrefslogtreecommitdiff
path: root/test/e2e/run_networking_test.go
diff options
context:
space:
mode:
authorGiuseppe Scrivano <gscrivan@redhat.com>2018-08-15 17:27:26 +0200
committerAtomic Bot <atomic-devel@projectatomic.io>2018-08-17 08:17:43 +0000
commit50afe5b031a6b63f9eca3937a2dd104bf23d4828 (patch)
tree3daaaf1fdd54ff2881d0a8b30470def954ae95db /test/e2e/run_networking_test.go
parentbf741b3ea30f9431775f03cca081758efcb780b1 (diff)
downloadpodman-50afe5b031a6b63f9eca3937a2dd104bf23d4828.tar.gz
podman-50afe5b031a6b63f9eca3937a2dd104bf23d4828.tar.bz2
podman-50afe5b031a6b63f9eca3937a2dd104bf23d4828.zip
podman: fix --uts=host
Do not set any hostname value in the OCI configuration when --uts=host is used and the user didn't specify any value. This prevents an error from the OCI runtime as it cannot set the hostname without a new UTS namespace. Differently, the HOSTNAME environment variable is always set. When --uts=host is used, HOSTNAME gets the value from the host. Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com> Closes: #1280 Approved by: baude
Diffstat (limited to 'test/e2e/run_networking_test.go')
-rw-r--r--test/e2e/run_networking_test.go14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/e2e/run_networking_test.go b/test/e2e/run_networking_test.go
index a4bdcdf89..021825d4b 100644
--- a/test/e2e/run_networking_test.go
+++ b/test/e2e/run_networking_test.go
@@ -114,6 +114,20 @@ var _ = Describe("Podman rmi", func() {
match, _ := session.GrepString(hostname)
Expect(match).Should(BeTrue())
})
+ It("podman run --net host --uts host hostname test", func() {
+ session := podmanTest.Podman([]string{"run", "--rm", "--net", "host", "--uts", "host", ALPINE, "printenv", "HOSTNAME"})
+ session.WaitWithDefaultTimeout()
+ Expect(session.ExitCode()).To(Equal(0))
+ match, _ := session.GrepString(hostname)
+ Expect(match).Should(BeTrue())
+ })
+ It("podman run --uts host hostname test", func() {
+ session := podmanTest.Podman([]string{"run", "--rm", "--uts", "host", ALPINE, "printenv", "HOSTNAME"})
+ session.WaitWithDefaultTimeout()
+ Expect(session.ExitCode()).To(Equal(0))
+ match, _ := session.GrepString(hostname)
+ Expect(match).Should(BeTrue())
+ })
It("podman run --net host --hostname ... hostname test", func() {
session := podmanTest.Podman([]string{"run", "--rm", "--net", "host", "--hostname", "foobar", ALPINE, "printenv", "HOSTNAME"})