Implement Task Manager - #84
Merged
Merged
Conversation
Codecov Report
@@ Coverage Diff @@
## develop #84 +/- ##
=============================
=============================
Continue to review full report at Codecov.
|
mocsharp
force-pushed
the
feature/53-dispatch-tasks
branch
4 times, most recently
from
April 14, 2022 21:27
e4ef86a to
aa33394
Compare
mocsharp
marked this pull request as ready for review
April 18, 2022 19:19
mocsharp
force-pushed
the
feature/53-dispatch-tasks
branch
from
April 18, 2022 20:46
f1b0b2f to
ad1f429
Compare
mocsharp
marked this pull request as draft
April 23, 2022 02:08
mocsharp
force-pushed
the
feature/53-dispatch-tasks
branch
2 times, most recently
from
April 27, 2022 00:18
e00066d to
68c442c
Compare
mocsharp
marked this pull request as ready for review
April 27, 2022 00:21
mocsharp
added a commit
that referenced
this pull request
May 3, 2022
Signed-off-by: Victor Chang <vicchang@nvidia.com>
mocsharp
added a commit
that referenced
this pull request
May 5, 2022
Signed-off-by: Victor Chang <vicchang@nvidia.com>
mocsharp
added a commit
that referenced
this pull request
May 5, 2022
Signed-off-by: Victor Chang <vicchang@nvidia.com>
mocsharp
force-pushed
the
feature/53-dispatch-tasks
branch
from
May 6, 2022 17:20
17a15e8 to
a8fcee8
Compare
mocsharp
added a commit
that referenced
this pull request
May 6, 2022
Signed-off-by: Victor Chang <vicchang@nvidia.com>
mocsharp
added a commit
that referenced
this pull request
May 6, 2022
Signed-off-by: Victor Chang <vicchang@nvidia.com>
mocsharp
added a commit
that referenced
this pull request
May 6, 2022
Signed-off-by: Victor Chang <vicchang@nvidia.com>
mocsharp
added a commit
that referenced
this pull request
May 6, 2022
Signed-off-by: Victor Chang <vicchang@nvidia.com>
mocsharp
requested review from
RemakingEden,
jackschofield23 and
joshliberty
and removed request for
jackschofield23
May 6, 2022 17:20
joshliberty
reviewed
May 9, 2022
joshliberty
reviewed
May 9, 2022
Signed-off-by: Victor Chang <vicchang@nvidia.com>
Signed-off-by: Victor Chang <vicchang@nvidia.com>
Signed-off-by: Victor Chang <vicchang@nvidia.com>
Signed-off-by: Victor Chang <vicchang@nvidia.com>
Signed-off-by: Victor Chang <vicchang@nvidia.com>
Signed-off-by: Victor Chang <vicchang@nvidia.com>
- include end hook template - handle TaskCallbackEvent Signed-off-by: Victor Chang <vicchang@nvidia.com>
Signed-off-by: Victor Chang <vicchang@nvidia.com>
Signed-off-by: Victor Chang <vicchang@nvidia.com>
Signed-off-by: Victor Chang <vicchang@nvidia.com>
Signed-off-by: Victor Chang <vicchang@nvidia.com>
Signed-off-by: Victor Chang <vicchang@nvidia.com>
Signed-off-by: Victor Chang <vicchang@nvidia.com>
Signed-off-by: Victor Chang <vicchang@nvidia.com>
Signed-off-by: Victor Chang <vicchang@nvidia.com>
Signed-off-by: Victor Chang <vicchang@nvidia.com>
Signed-off-by: Victor Chang <vicchang@nvidia.com>
Signed-off-by: Victor Chang <vicchang@nvidia.com>
mocsharp
force-pushed
the
feature/53-dispatch-tasks
branch
from
May 16, 2022 19:42
5fa1767 to
4b94978
Compare
mocsharp
added a commit
that referenced
this pull request
May 16, 2022
Signed-off-by: Victor Chang <vicchang@nvidia.com>
Signed-off-by: Victor Chang <vicchang@nvidia.com>
mocsharp
force-pushed
the
feature/53-dispatch-tasks
branch
from
May 16, 2022 20:14
4b94978 to
761dffd
Compare
Signed-off-by: Victor Chang <vicchang@nvidia.com>
Signed-off-by: Victor Chang <vicchang@nvidia.com>
|
SonarCloud Quality Gate failed. |
JJFinnerty
self-requested a review
May 17, 2022 09:33
JJFinnerty
approved these changes
May 17, 2022
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #53.
Description
#53 Implement Task Manager with a stubbed input message queue until Workflow Manager is ready.
ITaskRunnerinterface andRunnerBasebase class withExecuteTask(...)andGetStatus(...)methods for executing a task plug-in and getting the status of a task.#54
Implements Argo plug-in that requires 2 templates, the main workflow template (Due to this Argo bug, this implementation creates an Argo Workflow (kind: WorkflowTemplate), and an exit hook template (kind: WorkflowTemplate). The Argo plug-in creates akind: Workflowwith references to the 2 provided templates. It also creates any Kubernetes credentials required to connect the Argo workflow to the MinIO buckets and deletes them on completion.kind: Workflow) based on the provided Argo workflow template (kind: WorkflowTemplate).The Argo plug-in copies the entrypoint template and any child templates (through dags or steps) into a new Workflow and injects
s3information provided by the Workflow Manager & Task Manager. See #54 for details.Status
Ready
Types of changes