Matthew Rich
bcf4e768ff
WIP: add support container image build using local filesytem contexts or contextes generated from resource definitions WIP: added support for the create command in the exec resource Fix a type matching error in `types` package use of generics
32 lines
654 B
JSON
32 lines
654 B
JSON
{
|
|
"$id": "command.schema.json",
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "command",
|
|
"type": "object",
|
|
"properties": {
|
|
"path": {
|
|
"type": "string",
|
|
"description": "command path",
|
|
"minLength": 1
|
|
},
|
|
"args": {
|
|
"type": "array",
|
|
"description": "list of command args",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"split": {
|
|
"type": "boolean",
|
|
"description": "split command line args by space"
|
|
},
|
|
"failonerror": {
|
|
"type": "boolean",
|
|
"description": "Generate an error if the command fails",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|
|
}
|