Skip to content

Commit

Permalink
T6358: Add config option for host process namespace
Browse files Browse the repository at this point in the history
(cherry picked from commit f5051de)
  • Loading branch information
nvollmar authored and mergify[bot] committed May 17, 2024
1 parent 2324694 commit 3f83be2
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 2 deletions.
8 changes: 7 additions & 1 deletion interface-definitions/container.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,15 @@
<constraintErrorMessage>Container name must be alphanumeric and can contain hyphens</constraintErrorMessage>
</properties>
<children>
<leafNode name="allow-host-pid">
<properties>
<help>Allow sharing host process namespace with container</help>
<valueless/>
</properties>
</leafNode>
<leafNode name="allow-host-networks">
<properties>
<help>Allow host networks in container</help>
<help>Allow sharing host networking with container</help>
<valueless/>
</properties>
</leafNode>
Expand Down
1 change: 1 addition & 0 deletions smoketest/config-tests/container-simple
Original file line number Diff line number Diff line change
Expand Up @@ -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'
1 change: 1 addition & 0 deletions smoketest/configs/container-simple
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ container {
}
name c02 {
allow-host-networks
allow-host-pid
cap-add sys-time
image busybox:stable
}
Expand Down
6 changes: 5 additions & 1 deletion src/conf_mode/container.py
Original file line number Diff line number Diff line change
Expand Up @@ -329,9 +329,13 @@ def generate_run_arguments(name, container_config):
prop = vol_config['propagation']
volume += f' --volume {svol}:{dvol}:{mode},{prop}'

host_pid = ''
if 'allow_host_pid' in container_config:
host_pid = '--pid host'

container_base_cmd = f'--detach --interactive --tty --replace {capabilities} ' \
f'--memory {memory}m --shm-size {shared_memory}m --memory-swap 0 --restart {restart} ' \
f'--name {name} {hostname} {device} {port} {volume} {env_opt} {label} {uid}'
f'--name {name} {hostname} {device} {port} {volume} {env_opt} {label} {uid} {host_pid}'

entrypoint = ''
if 'entrypoint' in container_config:
Expand Down

0 comments on commit 3f83be2

Please sign in to comment.