forked from osbuild/osbuild
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorg.osbuild.bootc.install.config.meta.json
78 lines (78 loc) · 2.39 KB
/
org.osbuild.bootc.install.config.meta.json
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
{
"summary": "Write bootc-install-config(5) file",
"description": [
"The bootc install process supports some basic customization. This",
"configuration file is in TOML format, and will be discovered by the",
"installation process via drop-in files in `/usr/lib/bootc/install` that",
"are processed in alphanumerical order.",
"The individual files are merged into a single final installation config, so",
"it is supported for e.g. a container base image to provide a default root",
"filesystem type, that can be overridden in a derived container image."
],
"schema": {
"additionalProperties": false,
"required": [
"filename",
"config"
],
"properties": {
"filename": {
"type": "string",
"description": "name of the configuration file."
},
"config": {
"additionalProperties": false,
"type": "object",
"minProperties": 1,
"properties": {
"install": {
"type": "object",
"additionalProperties": false,
"minProperties": 1,
"properties": {
"filesystem": {
"type": "object",
"required": [
"root"
],
"additionalProperties": false,
"properties": {
"root": {
"type": "object",
"required": [
"type"
],
"additionalProperties": false,
"properties": {
"type": {
"type": "string"
}
}
}
}
},
"kargs": {
"type": "array",
"description": "Append extra kernel arguments",
"items": {
"type": "string"
}
},
"block": {
"type": "array",
"description": "An array of supported to-disk backends enabled by this base container image; if not specified, this will just be direct.",
"items": {
"type": "string",
"enum": [
"direct",
"tmp2-luks"
]
}
}
}
}
}
}
}
}
}