diff options
author | Nicolas Vollmar <nvo@scaling.ch> | 2024-05-17 08:59:55 +0200 |
---|---|---|
committer | Mergify <37929162+mergify[bot]@users.noreply.github.com> | 2024-05-17 13:36:48 +0000 |
commit | 3f83be294b4a47f09658ac43314421ee6223a9aa (patch) | |
tree | 7a0fa847478bd59a7e2b33e1d12aefabad81bbc4 /smoketest | |
parent | 2324694623026a7a8a2aed6345b669b8996d7801 (diff) | |
download | vyos-1x-3f83be294b4a47f09658ac43314421ee6223a9aa.tar.gz vyos-1x-3f83be294b4a47f09658ac43314421ee6223a9aa.zip |
T6358: Add config option for host process namespace
(cherry picked from commit f5051de4fc034bd95677ef142423e59eae47cd2f)
Diffstat (limited to 'smoketest')
-rw-r--r-- | smoketest/config-tests/container-simple | 1 | ||||
-rw-r--r-- | smoketest/configs/container-simple | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/smoketest/config-tests/container-simple b/smoketest/config-tests/container-simple index 299af64cb..cc80ef4cf 100644 --- a/smoketest/config-tests/container-simple +++ b/smoketest/config-tests/container-simple @@ -8,5 +8,6 @@ set container name c01 capability 'net-bind-service' set container name c01 capability 'net-raw' set container name c01 image 'busybox:stable' set container name c02 allow-host-networks +set container name c02 allow-host-pid set container name c02 capability 'sys-time' set container name c02 image 'busybox:stable' diff --git a/smoketest/configs/container-simple b/smoketest/configs/container-simple index 05efe05e9..82983afb7 100644 --- a/smoketest/configs/container-simple +++ b/smoketest/configs/container-simple @@ -7,6 +7,7 @@ container { } name c02 { allow-host-networks + allow-host-pid cap-add sys-time image busybox:stable } |