diff options
author | Paul Holzinger <paul.holzinger@web.de> | 2020-12-03 22:26:29 +0100 |
---|---|---|
committer | Paul Holzinger <paul.holzinger@web.de> | 2021-01-28 11:33:29 +0100 |
commit | e42f9ee69766758968f11e5a6a5a189f5142ba78 (patch) | |
tree | 8b9d0ff7efd5d995c5621a2ef7862582ae977d99 /test/e2e/network_test.go | |
parent | 2b97c1d733b1fc310ecc6b4babbd7c6725718d46 (diff) | |
download | podman-e42f9ee69766758968f11e5a6a5a189f5142ba78.tar.gz podman-e42f9ee69766758968f11e5a6a5a189f5142ba78.tar.bz2 podman-e42f9ee69766758968f11e5a6a5a189f5142ba78.zip |
Add support for rootless network-aliases
Make sure we pass the network aliases as capability args to the
cnitool in the rootless-cni-infra container. Also update the
dnsname plugin in the cni-infra container.
Fixes #8567
Signed-off-by: Paul Holzinger <paul.holzinger@web.de>
Diffstat (limited to 'test/e2e/network_test.go')
-rw-r--r-- | test/e2e/network_test.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/e2e/network_test.go b/test/e2e/network_test.go index fb18e2317..a7e83220b 100644 --- a/test/e2e/network_test.go +++ b/test/e2e/network_test.go @@ -408,7 +408,6 @@ var _ = Describe("Podman network", func() { Expect(lines[1]).To(Equal(netName2)) }) It("podman network with multiple aliases", func() { - Skip("Until DNSName is updated on our CI images") var worked bool netName := "aliasTest" + stringid.GenerateNonCryptoID() session := podmanTest.Podman([]string{"network", "create", netName}) |