Skip to content

Commit 0ca2227

Browse files
committed
Run just update-generated
We were starting to accumulate this in other PRs. Signed-off-by: Colin Walters <walters@verbum.org>
1 parent 5e5a341 commit 0ca2227

5 files changed

Lines changed: 68 additions & 4 deletions

docs/src/host-v1.schema.json

Lines changed: 61 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@
3030
"rollback": null,
3131
"rollbackQueued": false,
3232
"staged": null,
33-
"type": null
33+
"type": null,
34+
"usrOverlay": null
3435
}
3536
}
3637
},
@@ -220,6 +221,54 @@
220221
}
221222
]
222223
},
224+
"FilesystemOverlay": {
225+
"description": "Details of an overlay filesystem: read-only or read/write, persistent or transient.",
226+
"type": "object",
227+
"properties": {
228+
"accessMode": {
229+
"description": "Whether the overlay is read-only or read/write",
230+
"$ref": "#/$defs/FilesystemOverlayAccessMode"
231+
},
232+
"persistence": {
233+
"description": "Whether the overlay will persist across reboots",
234+
"$ref": "#/$defs/FilesystemOverlayPersistence"
235+
}
236+
},
237+
"required": [
238+
"accessMode",
239+
"persistence"
240+
]
241+
},
242+
"FilesystemOverlayAccessMode": {
243+
"description": "The permissions mode of a /usr overlay",
244+
"oneOf": [
245+
{
246+
"description": "The overlay is mounted read-only",
247+
"type": "string",
248+
"const": "readOnly"
249+
},
250+
{
251+
"description": "The overlay is mounted read/write",
252+
"type": "string",
253+
"const": "readWrite"
254+
}
255+
]
256+
},
257+
"FilesystemOverlayPersistence": {
258+
"description": "The persistence mode of a /usr overlay",
259+
"oneOf": [
260+
{
261+
"description": "Changes are temporary and will be lost on reboot",
262+
"type": "string",
263+
"const": "transient"
264+
},
265+
{
266+
"description": "Changes persist across reboots",
267+
"type": "string",
268+
"const": "persistent"
269+
}
270+
]
271+
},
223272
"HostSpec": {
224273
"description": "The host specification",
225274
"type": "object",
@@ -301,6 +350,17 @@
301350
"type": "null"
302351
}
303352
]
353+
},
354+
"usrOverlay": {
355+
"description": "The state of the overlay mounted on /usr",
356+
"anyOf": [
357+
{
358+
"$ref": "#/$defs/FilesystemOverlay"
359+
},
360+
{
361+
"type": "null"
362+
}
363+
]
304364
}
305365
}
306366
},

docs/src/man/bootc-container-ukify.8.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ Any additional arguments after `--` are passed through to ukify unchanged.
2727

2828
Default: /
2929

30+
**--allow-missing-verity**
31+
32+
Make fs-verity validation optional in case the filesystem doesn't support it
33+
3034
<!-- END GENERATED OPTIONS -->
3135

3236
# EXAMPLES

docs/src/man/bootc-install-to-disk.8.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ its DPS type GUID, without requiring an explicit `root=` kernel argument.
165165

166166
Default: false
167167

168-
**--insecure**
168+
**--allow-missing-verity**
169169

170170
Make fs-verity validation optional in case the filesystem doesn't support it
171171

docs/src/man/bootc-install-to-existing-root.8.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ of migrating the fstab entries. See the "Injecting kernel arguments" section abo
225225

226226
Default: false
227227

228-
**--insecure**
228+
**--allow-missing-verity**
229229

230230
Make fs-verity validation optional in case the filesystem doesn't support it
231231

docs/src/man/bootc-install-to-filesystem.8.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ is currently expected to be empty by default.
125125

126126
Default: false
127127

128-
**--insecure**
128+
**--allow-missing-verity**
129129

130130
Make fs-verity validation optional in case the filesystem doesn't support it
131131

0 commit comments

Comments
 (0)