-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathquestions-ui.yml
57 lines (57 loc) · 1.51 KB
/
questions-ui.yml
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
questions:
- default: null
description: >-
This policy works by defining what host namespaces can be used by a Pod.
`allow_host_ipc`, `allow_host_network` and `allow_host_pid` are `false` by
default. `allow_host_ports` is an empty list by default. This means that by
default host IPC, network, pid and all host ports are disabled when this
policy is loaded with no configuration.
group: Settings
label: Description
required: false
hide_input: true
type: string
variable: description
- default: false
tooltip: Allows the pod to set .spec.HostIPC to true.
group: Settings
label: Allow host IPC
required: false
type: boolean
variable: allow_host_ipc
- default: false
tooltip: Allows the pod to set .spec.HostNetwork to true.
group: Settings
label: Allow host network
required: false
type: boolean
variable: allow_host_network
- default: false
tooltip: Allows the pod to set .spec.HostPID to true.
group: Settings
label: Allow host PID
required: false
type: boolean
variable: allow_host_pid
- default: []
description: >-
A range of ports to allow, an example would allow host ports `80`, `443` and
the range `8000-9000`.
group: Settings
label: Allow host ports
hide_input: true
type: sequence[
variable: allow_host_ports
sequence_questions:
- default: 0
tooltip: ''
group: Settings
label: min
type: int
variable: min
- default: 0
tooltip: ''
group: Settings
label: max
type: int
variable: max