Skip to main content

org.osbuild.experimental.ostree.config

Change OSTree configuration experimental options

NOTE: This stage is experimental and subject to changes Change the configuration for an OSTree repository. Currently only the following values are supported:

  • integrity.composefs See ostree.repo-config(5) for more information.

Schema 1

{
"additionalProperties": false,
"required": [
"repo"
],
"properties": {
"repo": {
"description": "Location of the OSTree repo.",
"type": "string"
},
"config": {
"type": "object",
"additionalProperties": false,
"description": "OSTree configuration groups",
"properties": {
"integrity": {
"type": "object",
"additionalProperties": false,
"description": "Options concerning the sysroot",
"properties": {
"composefs": {
"description": "Enable composefs image generation on deploy.",
"type": "string",
"enum": [
"true",
"false",
"maybe"
]
}
}
}
}
}
}
}

Schema 2

{}