Experimental
Schema
KitStartup
Type:
object
Startup commands retained when creating an image. Services with startup replay run them at each boot; services without it accept valid commands without running them.
commands
· required
Type:
array
commands run in order at sandbox boot, on a backend that replays them.
Array item
Schema:
KitStartupCommand
All schema constraints and annotations
{
"description": "commands run in order at sandbox boot, on a backend that replays them.",
"items": {
"$ref": "#/components/schemas/KitStartupCommand"
},
"minItems": 1,
"type": "array"
}kits
· required
Type:
array
kits names the kit identities the commands derive from, in composition
order. Required.
Array item
Type:
string
All schema constraints and annotations
{
"minLength": 1,
"type": "string"
}All schema constraints and annotations
{
"description": "kits names the kit identities the commands derive from, in composition\norder. Required.",
"items": {
"minLength": 1,
"type": "string"
},
"minItems": 1,
"type": "array"
}All schema constraints and annotations
{
"additionalProperties": false,
"description": "Startup commands retained when creating an image. Services with startup replay run them at each boot; services without it accept valid commands without running them.",
"properties": {
"commands": {
"description": "commands run in order at sandbox boot, on a backend that replays them.",
"items": {
"$ref": "#/components/schemas/KitStartupCommand"
},
"minItems": 1,
"type": "array"
},
"kits": {
"description": "kits names the kit identities the commands derive from, in composition\norder. Required.",
"items": {
"minLength": 1,
"type": "string"
},
"minItems": 1,
"type": "array"
}
},
"required": [
"kits",
"commands"
],
"title": "KitStartup",
"type": "object"
}