-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathcontrol_binaries.yaml
More file actions
84 lines (83 loc) · 2.21 KB
/
Copy pathcontrol_binaries.yaml
File metadata and controls
84 lines (83 loc) · 2.21 KB
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
---
"$schema": "http://json-schema.org/draft-07/schema"
version: "1.0"
type: object
additionalProperties: false
properties:
control_binaries:
type: object
description: URLs and checksums for required binaries.
properties:
openshift_client:
type: object
properties:
url:
type: string
description: URL to download OpenShift client binary.
checksum:
type: string
description: SHA256 checksum for the binary.
pattern: "^sha256:[0-9a-f]{64}$"
required:
- url
- checksum
additionalProperties: false
helm:
type: object
properties:
url:
type: string
description: URL to download Helm binary.
checksum:
type: string
description: SHA256 checksum for the binary.
pattern: "^sha256:[0-9a-f]{64}$"
required:
- url
- checksum
additionalProperties: false
mirror_registry:
type: object
properties:
url:
type: string
description: URL to download mirror-registry binary.
checksum:
type: string
description: SHA256 checksum for the binary.
pattern: "^sha256:[0-9a-f]{64}$"
required:
- url
- checksum
additionalProperties: false
oc_mirror:
type: object
properties:
url:
type: string
description: URL to download oc-mirror binary.
checksum:
type: string
description: SHA256 checksum for the binary.
pattern: "^sha256:[0-9a-f]{64}$"
required:
- url
- checksum
additionalProperties: false
clairctl:
type: object
properties:
url:
type: string
description: URL to download clairctl binary.
checksum:
type: string
description: SHA256 checksum for the binary.
pattern: "^sha256:[0-9a-f]{64}$"
required:
- url
- checksum
additionalProperties: false
additionalProperties: false
required:
- control_binaries