-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathfake0.toml
87 lines (72 loc) · 2.18 KB
/
fake0.toml
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
# This is an artifact manifest that generates fake entries for all components.
# This is completely non-functional and is only useful for testing archive
# extraction in other parts of the repository.
system_version = "0.0.0"
[[artifact.gimlet_sp]]
name = "fake-gimlet-sp"
version = "0.0.0"
source = { kind = "fake", size = "1MiB" }
[[artifact.gimlet_rot]]
name = "fake-gimlet-rot"
version = "0.0.0"
[artifact.gimlet_rot.source]
kind = "composite-rot"
archive_a = { kind = "fake", size = "512KiB" }
archive_b = { kind = "fake", size = "512KiB" }
[[artifact.host]]
name = "fake-host"
version = "0.0.0"
[artifact.host.source]
kind = "composite-host"
phase_1 = { kind = "fake", size = "512KiB" }
phase_2 = { kind = "fake", size = "1MiB" }
[[artifact.trampoline]]
name = "fake-trampoline"
version = "0.0.0"
[artifact.trampoline.source]
kind = "composite-host"
phase_1 = { kind = "fake", size = "512KiB" }
phase_2 = { kind = "fake", size = "1MiB" }
[[artifact.control_plane]]
name = "fake-control-plane"
version = "0.0.0"
[artifact.control_plane.source]
kind = "composite-control-plane"
zones = [
{ kind = "fake", name = "zone1", size = "1MiB" },
{ kind = "fake", name = "zone2", size = "1MiB" },
]
[[artifact.psc_sp]]
name = "fake-psc-sp"
version = "0.0.0"
source = { kind = "fake", size = "1MiB" }
[[artifact.psc_rot]]
name = "fake-psc-rot"
version = "0.0.0"
[artifact.psc_rot.source]
kind = "composite-rot"
archive_a = { kind = "fake", size = "512KiB" }
archive_b = { kind = "fake", size = "512KiB" }
[[artifact.switch_sp]]
name = "fake-switch-sp"
version = "0.0.0"
source = { kind = "fake", size = "1MiB" }
[[artifact.switch_rot]]
name = "fake-switch-rot"
version = "0.0.0"
[artifact.switch_rot.source]
kind = "composite-rot"
archive_a = { kind = "fake", size = "512KiB" }
archive_b = { kind = "fake", size = "512KiB" }
[[artifact.gimlet_rot_bootloader]]
name = "fake-gimlet-rot-bootloader"
version = "0.0.0"
source = { kind = "fake", size = "1MiB" }
[[artifact.psc_rot_bootloader]]
name = "fake-psc-rot-bootloader"
version = "0.0.0"
source = { kind = "fake", size = "1MiB" }
[[artifact.switch_rot_bootloader]]
name = "fake-switch-rot-bootloader"
version = "0.0.0"
source = { kind = "fake", size = "1MiB" }