summaryrefslogtreecommitdiff
path: root/interface-definitions/container.xml.in
blob: 3dd1b3249dd7d3f0047b43f2960cd279e494babd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
<?xml version="1.0"?>
<interfaceDefinition>
  <node name="container" owner="${vyos_conf_scripts_dir}/container.py">
    <properties>
      <help>Container applications</help>
      <priority>450</priority>
    </properties>
    <children>
      <tagNode name="name">
        <properties>
          <help>Container name</help>
          <constraint>
            <regex>[-a-zA-Z0-9]+</regex>
          </constraint>
          <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 sharing host networking with container</help>
              <valueless/>
            </properties>
          </leafNode>
          <leafNode name="capability">
            <properties>
              <help>Grant individual Linux capability to container instance</help>
              <completionHelp>
                <list>net-admin net-bind-service net-raw setpcap sys-admin sys-module sys-nice sys-time</list>
              </completionHelp>
              <valueHelp>
                <format>net-admin</format>
                <description>Network operations (interface, firewall, routing tables)</description>
              </valueHelp>
              <valueHelp>
                <format>net-bind-service</format>
                <description>Bind a socket to privileged ports (port numbers less than 1024)</description>
              </valueHelp>
              <valueHelp>
                <format>net-raw</format>
                <description>Permission to create raw network sockets</description>
              </valueHelp>
              <valueHelp>
                <format>setpcap</format>
                <description>Capability sets (from bounded or inherited set)</description>
              </valueHelp>
              <valueHelp>
                <format>sys-admin</format>
                <description>Administation operations (quotactl, mount, sethostname, setdomainame)</description>
              </valueHelp>
              <valueHelp>
                <format>sys-module</format>
                <description>Load, unload and delete kernel modules</description>
              </valueHelp>
              <valueHelp>
                <format>sys-nice</format>
                <description>Permission to set process nice value</description>
              </valueHelp>
              <valueHelp>
                <format>sys-time</format>
                <description>Permission to set system clock</description>
              </valueHelp>
              <constraint>
                <regex>(net-admin|net-bind-service|net-raw|setpcap|sys-admin|sys-module|sys-nice|sys-time)</regex>
              </constraint>
              <multi/>
            </properties>
          </leafNode>
          <node name="sysctl">
            <properties>
              <help>Configure namespaced kernel parameters of the container</help>
            </properties>
            <children>
              <tagNode name="parameter">
                <properties>
                  <help>Sysctl key name</help>
                  <completionHelp>
                    <script>${vyos_completion_dir}/list_container_sysctl_parameters.sh</script>
                  </completionHelp>
                  <valueHelp>
                    <format>txt</format>
                    <description>Sysctl key name</description>
                  </valueHelp>
                  <constraint>
                    <validator name="sysctl"/>
                  </constraint>
                </properties>
                <children>
                  <leafNode name="value">
                    <properties>
                      <help>Sysctl configuration value</help>
                    </properties>
                  </leafNode>
                </children>
              </tagNode>
            </children>
          </node>
          #include <include/generic-description.xml.i>
          <tagNode name="device">
            <properties>
              <help>Add a host device to the container</help>
            </properties>
            <children>
              <leafNode name="source">
                <properties>
                  <help>Source device (Example: "/dev/x")</help>
                  <valueHelp>
                    <format>txt</format>
                    <description>Source device</description>
                  </valueHelp>
                </properties>
              </leafNode>
              <leafNode name="destination">
                <properties>
                  <help>Destination container device (Example: "/dev/x")</help>
                  <valueHelp>
                    <format>txt</format>
                    <description>Destination container device</description>
                  </valueHelp>
                </properties>
              </leafNode>
            </children>
          </tagNode>
          #include <include/generic-disable-node.xml.i>
          <tagNode name="environment">
            <properties>
              <help>Add custom environment variables</help>
              <constraint>
                <regex>[-_a-zA-Z0-9]+</regex>
              </constraint>
              <constraintErrorMessage>Environment variable name must be alphanumeric and can contain hyphen and underscores</constraintErrorMessage>
            </properties>
            <children>
              <leafNode name="value">
                <properties>
                  <help>Set environment option value</help>
                  <valueHelp>
                    <format>txt</format>
                    <description>Set environment option value</description>
                  </valueHelp>
                </properties>
              </leafNode>
            </children>
          </tagNode>
          <leafNode name="entrypoint">
            <properties>
              <help>Override the default ENTRYPOINT from the image</help>
              <constraint>
                <regex>[ !#-%&amp;(-~]+</regex>
              </constraint>
              <constraintErrorMessage>Entrypoint must be ASCII characters, use &amp;quot; and &amp;apos for double and single quotes respectively</constraintErrorMessage>
            </properties>
          </leafNode>
          <leafNode name="host-name">
            <properties>
              <help>Container host name</help>
              <constraint>
                #include <include/constraint/host-name.xml.i>
              </constraint>
              <constraintErrorMessage>Host-name must be alphanumeric and can contain hyphens</constraintErrorMessage>
            </properties>
          </leafNode>
          <leafNode name="image">
            <properties>
              <help>Container image to use</help>
              <completionHelp>
                <script>sudo podman image list --format "{{.Repository}}:{{.Tag}}"</script>
              </completionHelp>
              <valueHelp>
                <format>txt</format>
                <description>Image name in the hub-registry</description>
              </valueHelp>
              <constraint>
                <regex>[[:ascii:]]{1,255}</regex>
              </constraint>
            </properties>
          </leafNode>
          <leafNode name="command">
            <properties>
              <help>Override the default CMD from the image</help>
              <constraint>
                <regex>[ !#-%&amp;(-~]+</regex>
              </constraint>
              <constraintErrorMessage>Command must be ASCII characters, use &amp;quot; and &amp;apos for double and single quotes respectively</constraintErrorMessage>
            </properties>
          </leafNode>
          <leafNode name="arguments">
            <properties>
              <help>The command's arguments for this container</help>
              <constraint>
                <regex>[ !#-%&amp;(-~]+</regex>
              </constraint>
              <constraintErrorMessage>The command's arguments must be ASCII characters, use &amp;quot; and &amp;apos for double and single quotes respectively</constraintErrorMessage>
            </properties>
          </leafNode>
          <tagNode name="label">
            <properties>
              <help>Add label variables</help>
              <constraint>
                <regex>[a-z0-9](?:[a-z0-9.-]*[a-z0-9])?</regex>
              </constraint>
              <constraintErrorMessage>Label variable name must be alphanumeric and can contain hyphen, dots and underscores</constraintErrorMessage>
            </properties>
            <children>
              <leafNode name="value">
                <properties>
                  <help>Set label option value</help>
                  <valueHelp>
                    <format>txt</format>
                    <description>Set label option value</description>
                  </valueHelp>
                  <constraint>
                    <regex>[[:ascii:]]{1,255}</regex>
                  </constraint>
                </properties>
              </leafNode>
            </children>
          </tagNode>
          <leafNode name="cpu-quota">
            <properties>
              <help>This limits the number of CPU resources the container can use</help>
              <valueHelp>
                <format>u32:0</format>
                <description>Unlimited</description>
              </valueHelp>
              <valueHelp>
                <format>txt</format>
                <description>Amount of CPU time the container can use in amount of cores (up to three decimals)</description>
              </valueHelp>
              <constraint>
                <regex>(0|[1-9]\d*)(\.\d{1,3})?</regex>
              </constraint>
              <constraintErrorMessage>Container CPU limit must be a (decimal) number in range 0 to number of threads</constraintErrorMessage>
            </properties>
            <defaultValue>0</defaultValue>
          </leafNode>
          <leafNode name="memory">
            <properties>
              <help>Memory (RAM) available to this container</help>
              <valueHelp>
                <format>u32:0</format>
                <description>Unlimited</description>
              </valueHelp>
              <valueHelp>
                <format>u32:1-16384</format>
                <description>Container memory in megabytes (MB)</description>
              </valueHelp>
              <constraint>
                <validator name="numeric" argument="--range 0-16384"/>
              </constraint>
              <constraintErrorMessage>Container memory must be in range 0 to 16384 MB</constraintErrorMessage>
            </properties>
            <defaultValue>512</defaultValue>
          </leafNode>
          <leafNode name="shared-memory">
            <properties>
              <help>Shared memory available to this container</help>
              <valueHelp>
                <format>u32:0</format>
                <description>Unlimited</description>
              </valueHelp>
              <valueHelp>
                <format>u32:1-8192</format>
                <description>Container memory in megabytes (MB)</description>
              </valueHelp>
              <constraint>
                <validator name="numeric" argument="--range 0-8192"/>
              </constraint>
              <constraintErrorMessage>Container memory must be in range 0 to 8192 MB</constraintErrorMessage>
            </properties>
            <defaultValue>64</defaultValue>
          </leafNode>
          <tagNode name="network">
            <properties>
              <help>Attach user defined network to container</help>
              <completionHelp>
                <path>container network</path>
              </completionHelp>
              #include <include/constraint/container-network.xml.i>
            </properties>
            <children>
              <leafNode name="address">
                <properties>
                  <help>Assign static IP address to container</help>
                  <valueHelp>
                    <format>ipv4</format>
                    <description>IPv4 address</description>
                  </valueHelp>
                  <valueHelp>
                    <format>ipv6</format>
                    <description>IPv6 address</description>
                  </valueHelp>
                  <constraint>
                    <validator name="ip-address"/>
                  </constraint>
                  <multi/>
                </properties>
              </leafNode>
            </children>
          </tagNode>
          <tagNode name="port">
            <properties>
              <help>Publish port to the container</help>
            </properties>
            <children>
              #include <include/listen-address.xml.i>
              <leafNode name="source">
                <properties>
                  <help>Source host port</help>
                  <valueHelp>
                    <format>u32:1-65535</format>
                    <description>Source host port</description>
                  </valueHelp>
                  <valueHelp>
                    <format>start-end</format>
                    <description>Source host port range (e.g. 10025-10030)</description>
                  </valueHelp>
                  <constraint>
                    <validator name="port-range"/>
                  </constraint>
                </properties>
              </leafNode>
              <leafNode name="destination">
                <properties>
                  <help>Destination container port</help>
                  <valueHelp>
                    <format>u32:1-65535</format>
                    <description>Destination container port</description>
                  </valueHelp>
                  <valueHelp>
                    <format>start-end</format>
                    <description>Destination container port range (e.g. 10025-10030)</description>
                  </valueHelp>
                  <constraint>
                    <validator name="port-range"/>
                  </constraint>
                </properties>
              </leafNode>
              <leafNode name="protocol">
                <properties>
                  <help>Transport protocol used for port mapping</help>
                  <completionHelp>
                    <list>tcp udp</list>
                  </completionHelp>
                  <valueHelp>
                    <format>tcp</format>
                    <description>Use Transmission Control Protocol for given port</description>
                  </valueHelp>
                  <valueHelp>
                    <format>udp</format>
                    <description>Use User Datagram Protocol for given port</description>
                  </valueHelp>
                  <constraint>
                    <regex>(tcp|udp)</regex>
                  </constraint>
                </properties>
                <defaultValue>tcp</defaultValue>
              </leafNode>
            </children>
          </tagNode>
          <leafNode name="restart">
            <properties>
              <help>Restart options for container</help>
              <completionHelp>
                <list>no on-failure always</list>
              </completionHelp>
              <valueHelp>
                <format>no</format>
                <description>Do not restart containers on exit</description>
              </valueHelp>
              <valueHelp>
                <format>on-failure</format>
                <description>Restart containers when they exit with a non-zero exit code, retrying indefinitely</description>
              </valueHelp>
              <valueHelp>
                <format>always</format>
                <description>Restart containers when they exit, regardless of status, retrying indefinitely</description>
              </valueHelp>
              <constraint>
                <regex>(no|on-failure|always)</regex>
              </constraint>
            </properties>
            <defaultValue>on-failure</defaultValue>
          </leafNode>
          <leafNode name="uid">
            <properties>
              <help>User ID this container will run as</help>
              <valueHelp>
                <format>u32:0-65535</format>
                <description>User ID this container will run as</description>
              </valueHelp>
              <constraint>
                <validator name="numeric" argument="--range 0-65535"/>
              </constraint>
            </properties>
          </leafNode>
          <leafNode name="gid">
            <properties>
              <help>Group ID this container will run as</help>
              <valueHelp>
                <format>u32:0-65535</format>
                <description>Group ID this container will run as</description>
              </valueHelp>
              <constraint>
                <validator name="numeric" argument="--range 0-65535"/>
              </constraint>
            </properties>
          </leafNode>
          <tagNode name="volume">
            <properties>
              <help>Mount a volume into the container</help>
            </properties>
            <children>
              <leafNode name="source">
                <properties>
                  <help>Source host directory</help>
                  <valueHelp>
                    <format>txt</format>
                    <description>Source host directory</description>
                  </valueHelp>
                </properties>
              </leafNode>
              <leafNode name="destination">
                <properties>
                  <help>Destination container directory</help>
                  <valueHelp>
                    <format>txt</format>
                    <description>Destination container directory</description>
                  </valueHelp>
                </properties>
              </leafNode>
              <leafNode name="mode">
                <properties>
                  <help>Volume access mode ro/rw</help>
                  <completionHelp>
                    <list>ro rw</list>
                  </completionHelp>
                  <valueHelp>
                    <format>ro</format>
                    <description>Volume mounted into the container as read-only</description>
                  </valueHelp>
                  <valueHelp>
                    <format>rw</format>
                    <description>Volume mounted into the container as read-write</description>
                  </valueHelp>
                  <constraint>
                    <regex>(ro|rw)</regex>
                  </constraint>
                </properties>
                <defaultValue>rw</defaultValue>
              </leafNode>
              <leafNode name="propagation">
                <properties>
                  <help>Volume bind propagation</help>
                  <completionHelp>
                    <list>shared slave private rshared rslave rprivate</list>
                  </completionHelp>
                  <valueHelp>
                    <format>shared</format>
                    <description>Sub-mounts of the original mount are exposed to replica mounts</description>
                  </valueHelp>
                  <valueHelp>
                    <format>slave</format>
                    <description>Allow replica mount to see sub-mount from the original mount but not vice versa</description>
                  </valueHelp>
                  <valueHelp>
                    <format>private</format>
                    <description>Sub-mounts within a mount are not visible to replica mounts or the original mount</description>
                  </valueHelp>
                  <valueHelp>
                    <format>rshared</format>
                    <description>Allows sharing of mount points and their nested mount points between both the original and replica mounts</description>
                  </valueHelp>
                  <valueHelp>
                    <format>rslave</format>
                    <description>Allows mount point and their nested mount points between original an replica mounts</description>
                  </valueHelp>
                  <valueHelp>
                    <format>rprivate</format>
                    <description>No mount points within original or replica mounts in any direction</description>
                  </valueHelp>
                  <constraint>
                    <regex>(shared|slave|private|rshared|rslave|rprivate)</regex>
                  </constraint>
                </properties>
                <defaultValue>rprivate</defaultValue>
              </leafNode>
            </children>
          </tagNode>
        </children>
      </tagNode>
      <tagNode name="network">
        <properties>
          <help>Network name</help>
          #include <include/constraint/container-network.xml.i>
        </properties>
        <children>
          #include <include/generic-description.xml.i>
          <leafNode name="prefix">
            <properties>
              <help>Prefix which allocated to that network</help>
              <valueHelp>
                <format>ipv4net</format>
                <description>IPv4 network prefix</description>
              </valueHelp>
              <valueHelp>
                <format>ipv6net</format>
                <description>IPv6 network prefix</description>
              </valueHelp>
              <constraint>
                <validator name="ipv4-prefix"/>
                <validator name="ipv6-prefix"/>
              </constraint>
              <multi/>
            </properties>
          </leafNode>
          <leafNode name="no-name-server">
            <properties>
              <help>Disable Domain Name System (DNS) plugin for this network</help>
              <valueless/>
            </properties>
          </leafNode>
          #include <include/interface/vrf.xml.i>
        </children>
      </tagNode>
      <tagNode name="registry">
        <properties>
          <help>Registry Name</help>
        </properties>
        <defaultValue>docker.io quay.io</defaultValue>
        <children>
          #include <include/interface/authentication.xml.i>
          #include <include/generic-disable-node.xml.i>
        </children>
      </tagNode>
    </children>
  </node>
</interfaceDefinition>