-
Notifications
You must be signed in to change notification settings - Fork 3
/
questions-ui.yml
63 lines (63 loc) · 1.54 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
58
59
60
61
62
63
questions:
- default: null
description: >-
This policy allows you to restrict what repositories, tags, and images pods
in your cluster can refer to. The configuration allows you to mix and match
several filters: registries, tags, and images. When both an allow list and a
reject list is supported, only one can be provided at the same time for that
specific filter.
group: Settings
label: Description
required: false
hide_input: true
type: string
variable: description
- default: {}
description: Allow or reject images coming from a specified registry.
group: Settings
label: Registries
hide_input: true
type: map[
variable: registries
subquestions:
- default: []
group: Settings
label: Allow
type: array[
variable: registries.allow
- default: []
group: Settings
label: Reject
type: array[
variable: registries.reject
- default: {}
description: Reject a specified tag for all images
group: Settings
label: Tags
hide_input: true
type: map[
variable: tags
subquestions:
- default: []
group: Settings
label: Reject
type: array[
variable: tags.reject
- default: {}
description: Accept or reject a specified image
group: Settings
label: Images
hide_input: true
type: map[
variable: images
subquestions:
- default: []
group: Settings
label: Allow
type: array[
variable: images.allow
- default: []
group: Settings
label: Reject
type: array[
variable: images.reject