WIP: continued server work. Schema for config files.

This commit is contained in:
Jonathan Bernard 2017-02-19 14:51:43 -06:00
parent 9f68963f18
commit 435613f6dc
5 changed files with 94 additions and 0 deletions

View File

@ -6,3 +6,4 @@ GET /api/project/<proj-id> -- return detailed project rec
GET /api/project/<proj-id>/<step-id> -- return detailed step information (include runs)
POST /api/project/<proj-id>/<step-id>/run/<ref> -- kick off a run
GET /api/project/<proj-id>/<step-id>/run/<ref> -- return detailed run information

View File

@ -0,0 +1,41 @@
{
"title": "Strawboss project configuration schema",
"type": "object",
"properties": {
"name": "string",
"versionCmd": "string",
"steps": {
"title": "StepsCollection",
"type": "object",
"minProperties": 1,
"properties": {
"patternProperties": {
"^[\w-]+$": {
"type": "object",
"title": "StepDefinition",
"properties": {
"workingDir": "string",
"stepCmd": "string",
"artifacts": {
"type": "array",
"items": "string" },
"cmdInput": {
"type": "array",
"items": "string" },
"depends": {
"type": "array",
"items": "string" },
"expectedEnv": {
"type": "array",
"items": "string" },
"dontCache": "bool",
"additionalProperties": false
}
}
}
}
},
"required": ["name", "steps"],
"additionalProperties": false
}
}

View File

@ -0,0 +1,50 @@
{
"title": "StrawBoss service configuration schema.",
"type": "object",
"properties": {
"artifactsRepo": "string",
"projects": {
"title": "ProjectsList",
"type": "array",
"items": {
"title": "ProjectDefinition",
"type": "object",
"properties": {
"name": "string",
"repo": "string",
"defaultBranch": "string",
"cfgFilePath": "string",
"envVars": {
"type": "object",
"patternProperties": {
"^[\w-]+$": "string"
}
},
"required": ["name", "repo"],
"additionalProperties": false
}
}
},
"users": {
"title": "UsersList",
"type": "array",
"items": {
"title": "UserDefinition",
"type": "object",
"properties": {
"username": "string",
"hashedPwd": "string"
},
"required": ["username", "hashedPwd"],
"additionalProperties": false
}
},
"tokens": {
"title": "TokensList",
"type": "array",
"items": "string"
},
"required": ["artifactsRepo", "projects", "users", "tokens"],
"additionalProperties": false
}
}

View File

@ -1,5 +1,7 @@
{
"artifactsRepo": "artifacts",
"users": [],
"tokens": [],
"projects": [
{ "name": "new-life-intro-band",
"repo": "/home/jdb/projects/new-life-introductory-band" } ]