diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2022-04-27 17:06:30 -0400 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2022-04-28 10:27:21 -0400 |
commit | 7f28fd938607df64e8844f3125838fc659753843 (patch) | |
tree | 16dba97f21bb623852762196ece971f71f67026e /test | |
parent | 87454cf87a36f3cab0a8a613d20011fc896b1ce4 (diff) | |
download | podman-7f28fd938607df64e8844f3125838fc659753843.tar.gz podman-7f28fd938607df64e8844f3125838fc659753843.tar.bz2 podman-7f28fd938607df64e8844f3125838fc659753843.zip |
Report properly whether pod shares host network
Fixes: https://github.com/containers/podman/issues/14028
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/system/200-pod.bats | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/test/system/200-pod.bats b/test/system/200-pod.bats index ef4bf1a6c..64f95f723 100644 --- a/test/system/200-pod.bats +++ b/test/system/200-pod.bats @@ -381,4 +381,32 @@ EOF is "$output" ".*$container_3_ID.*" } +@test "podman pod create share net" { + run_podman pod create --name test + run_podman pod inspect test --format {{.InfraConfig.HostNetwork}} + is "$output" "false" "Default network sharing should be false" + run_podman pod rm test + + run_podman pod create --name test --share ipc --network private + run_podman pod inspect test --format {{.InfraConfig.HostNetwork}} + is "$output" "false" "Private network sharing with only ipc should be false" + run_podman pod rm test + + run_podman pod create --name test --share net --network private + run_podman pod inspect test --format {{.InfraConfig.HostNetwork}} + is "$output" "false" "Private network sharing with only net should be false" + run_podman pod rm test + + run_podman pod create --name test --share net --network host + run_podman pod inspect test --format {{.InfraConfig.HostNetwork}} + is "$output" "true" "Host network sharing with only net should be true" + run_podman pod rm test + + run_podman pod create --name test --share ipc --network host + run_podman pod inspect test --format {{.InfraConfig.HostNetwork}} + is "$output" "true" "Host network sharing with only ipc should be true" + run_podman pod rm test + +} + # vim: filetype=sh |