diff options
author | Christian Breunig <christian@breunig.cc> | 2024-05-17 15:36:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-17 15:36:03 +0200 |
commit | e53dd75a149e891043a875bb6269fe22da99f586 (patch) | |
tree | 44389aff2dea12d77765a233fc30a340746147b2 /interface-definitions | |
parent | 17e460792b17de2e6f358daa86abcd6b76d5ba40 (diff) | |
parent | f5051de4fc034bd95677ef142423e59eae47cd2f (diff) | |
download | vyos-1x-e53dd75a149e891043a875bb6269fe22da99f586.tar.gz vyos-1x-e53dd75a149e891043a875bb6269fe22da99f586.zip |
Merge pull request #3472 from nvollmar/T6358
T6358: Container config option to enable host pid
Diffstat (limited to 'interface-definitions')
-rw-r--r-- | interface-definitions/container.xml.in | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/interface-definitions/container.xml.in b/interface-definitions/container.xml.in index e7dacea36..2296a3e9e 100644 --- a/interface-definitions/container.xml.in +++ b/interface-definitions/container.xml.in @@ -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> |