Skip to content

Commit

Permalink
Merge pull request #809 from onepanelio/feat/sys.node.pool
Browse files Browse the repository at this point in the history
feat: Add select.nodepool parameter type
  • Loading branch information
rushtehrani authored Dec 29, 2020
2 parents ee4b5d4 + 4c14866 commit 95794ba
Show file tree
Hide file tree
Showing 54 changed files with 1,741 additions and 357 deletions.
45 changes: 45 additions & 0 deletions api/api.swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -1894,6 +1894,51 @@
]
}
},
"/apis/v1beta1/{namespace}/workflow_templates/{uid}/generate": {
"post": {
"summary": "Get the generated WorkflowTemplate, applying any modifications based on the content",
"operationId": "GenerateWorkflowTemplate",
"responses": {
"200": {
"description": "A successful response.",
"schema": {
"$ref": "#/definitions/WorkflowTemplate"
}
},
"default": {
"description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/google.rpc.Status"
}
}
},
"parameters": [
{
"name": "namespace",
"in": "path",
"required": true,
"type": "string"
},
{
"name": "uid",
"in": "path",
"required": true,
"type": "string"
},
{
"name": "body",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/WorkflowTemplate"
}
}
],
"tags": [
"WorkflowTemplateService"
]
}
},
"/apis/v1beta1/{namespace}/workflow_templates/{uid}/versions": {
"get": {
"operationId": "ListWorkflowTemplateVersions",
Expand Down
Loading

0 comments on commit 95794ba

Please sign in to comment.