Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add node pool parameter #802

Merged
merged 38 commits into from
Dec 26, 2020
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
371c50c
feat: updated API with method to generate workflow template manifest.…
Vafilor Dec 20, 2020
182664c
feat: add workflow template and updated workspace template parameter …
Vafilor Dec 20, 2020
7e94686
feat: update templates to add node pool argument (WIP)
Vafilor Dec 23, 2020
c46f163
feat: update other workflows with new node pool information.
Vafilor Dec 23, 2020
2759d1a
chore: update documentation for migration methods
Vafilor Dec 23, 2020
720f642
chore: code cleanup for codacy
Vafilor Dec 23, 2020
6a3b21a
fix: incorrect indentation of sidecars in migration
Vafilor Dec 24, 2020
dc660e0
fix: added nodeSelector to tf training migration
Vafilor Dec 24, 2020
c02c8b5
fix: add back removed migration and move source to be in template ins…
Vafilor Dec 24, 2020
4fd7a2c
chore: updated tf_training to be tensorflow-mnist-training to better …
Vafilor Dec 24, 2020
75765e5
fix: separated workflow templates and workspace templates for yaml re…
Vafilor Dec 25, 2020
cbf4200
fix: migration path issue for jupyterlab
Vafilor Dec 25, 2020
99f8ebe
fix: issue where workspaceSpec.arguments could be nil
Vafilor Dec 25, 2020
03460ea
fix: key indentation in maskrcnn-training migration yaml
Vafilor Dec 25, 2020
2a6b57b
fix: wrong migration file name
Vafilor Dec 25, 2020
2784798
fix: wrong indentation for sidecars in maskrcnn training
Vafilor Dec 25, 2020
72e7cb4
remove extra space
rushtehrani Dec 14, 2020
70d75f8
set jupyterlab workingDir to data
rushtehrani Dec 16, 2020
33aa79f
update README
rushtehrani Dec 23, 2020
a1d6a15
update README
rushtehrani Dec 23, 2020
c93e7a5
chore: Fix manifests repo link
rushtehrani Dec 24, 2020
b2bf62d
feat: updated API with method to generate workflow template manifest.…
Vafilor Dec 20, 2020
5e7c5ba
feat: add workflow template and updated workspace template parameter …
Vafilor Dec 20, 2020
96fde4e
feat: update templates to add node pool argument (WIP)
Vafilor Dec 23, 2020
6739ffc
feat: update other workflows with new node pool information.
Vafilor Dec 23, 2020
153dd3c
chore: update documentation for migration methods
Vafilor Dec 23, 2020
45a9e98
chore: code cleanup for codacy
Vafilor Dec 23, 2020
7e5906f
fix: incorrect indentation of sidecars in migration
Vafilor Dec 24, 2020
69e2488
fix: added nodeSelector to tf training migration
Vafilor Dec 24, 2020
4f77150
fix: add back removed migration and move source to be in template ins…
Vafilor Dec 24, 2020
7c273e2
chore: updated tf_training to be tensorflow-mnist-training to better …
Vafilor Dec 24, 2020
ca5f602
fix: separated workflow templates and workspace templates for yaml re…
Vafilor Dec 25, 2020
e24052d
fix: migration path issue for jupyterlab
Vafilor Dec 25, 2020
e738e07
fix: issue where workspaceSpec.arguments could be nil
Vafilor Dec 25, 2020
f1aa8cc
fix: key indentation in maskrcnn-training migration yaml
Vafilor Dec 25, 2020
237988d
fix: wrong migration file name
Vafilor Dec 25, 2020
ffd801a
fix: wrong indentation for sidecars in maskrcnn training
Vafilor Dec 25, 2020
546bbce
Merge branch 'feat/sys.node.pool' of github.com:Vafilor/core into fea…
Vafilor Dec 26, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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