diff options
author | Viacheslav Hletenko <v.gletenko@vyos.io> | 2023-02-28 14:25:39 +0000 |
---|---|---|
committer | Viacheslav Hletenko <v.gletenko@vyos.io> | 2023-02-28 19:41:38 +0000 |
commit | c68d73e6720a7df2b48df17ac7b9b4c906e0294c (patch) | |
tree | dbe3e10a4770f2e400ea51594c6bd1fdaed01541 /interface-definitions | |
parent | 9b88a68001b79583cc2be59b4d6e1af3bed4aecf (diff) | |
download | vyos-1x-c68d73e6720a7df2b48df17ac7b9b4c906e0294c.tar.gz vyos-1x-c68d73e6720a7df2b48df17ac7b9b4c906e0294c.zip |
T4967: Allow setting container hostname
Ability setting container hostname
This host name is used as /etc/hostname
set container name <tag> host-name 'mybox'
Diffstat (limited to 'interface-definitions')
-rw-r--r-- | interface-definitions/container.xml.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/interface-definitions/container.xml.in b/interface-definitions/container.xml.in index 2ea1e6ab2..0e5fdea78 100644 --- a/interface-definitions/container.xml.in +++ b/interface-definitions/container.xml.in @@ -113,6 +113,15 @@ <constraintErrorMessage>Entrypoint must be ascii characters, use &quot; and &apos for double and single quotes respectively</constraintErrorMessage> </properties> </leafNode> + <leafNode name="host-name"> + <properties> + <help>Container host name</help> + <constraint> + <regex>[A-Za-z0-9][-.A-Za-z0-9]*[A-Za-z0-9]</regex> + </constraint> + <constraintErrorMessage>Host-name must be alphanumeric and can contain hyphens</constraintErrorMessage> + </properties> + </leafNode> <leafNode name="image"> <properties> <help>Image name in the hub-registry</help> |