Files
cozystack/packages/apps/virtual-machine/values.schema.json
Andrei Kvapil f642698921 Preapare release v0.0.1
Signed-off-by: Andrei Kvapil <kvapss@gmail.com>
2024-02-08 12:04:32 +01:00

47 lines
936 B
JSON

{
"$schema": "http://json-schema.org/schema#",
"type": "object",
"properties": {
"running": {
"type": "boolean",
"title": "Running"
},
"external": {
"type": "boolean",
"title": "Enable external Access"
},
"image": {
"type": "string",
"form": true,
"enum": ["ubuntu", "cirros", "alpine", "fedora"],
"title": "Choose image"
},
"password": {
"type": "string",
"title": "Password"
},
"disk": {
"type": "string",
"title": "Disk Size"
},
"resources": {
"type": "object",
"properties": {
"memory": {
"type": "string",
"x-display": "slider",
"title": "Memory",
"minimum": 10,
"maximum": 2048
},
"cpu": {
"type": "integer",
"title": "CPU",
"minimum": 1,
"maximum": 4
}
}
}
}
}