-
Notifications
You must be signed in to change notification settings - Fork 29
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: list and get tasks #208
base: createT
Are you sure you want to change the base?
Conversation
Reviewer's Guide by SourceryThis pull request implements significant changes to the TESK (Task Execution Service on Kubernetes) project, including a major restructuring of the codebase, addition of new features, and improvements to existing functionality. The changes encompass updates to the API, Kubernetes integration, documentation, testing, and project configuration. Architecture diagram for TESK task executiongraph TD;
A[TESK API Pod] -->|Translates TES requests| B[Taskmaster Pod];
B -->|Creates| C[Filer Pod];
C -->|Creates PVC| D[Persistent Volume Claim];
D -->|Used by| E[Executor Pods];
E -->|Execute tasks| F[Task Completion];
F -->|Triggers| G[Output Processing by Filer];
G -->|Uploads outputs| H[Remote Storage];
B -->|Monitors| E;
Class diagram for TESK API modelsclassDiagram
class TesTask {
+Optional~str~ id
+Optional~TesState~ state
+Optional~str~ name
+Optional~str~ description
+Optional~List~ inputs
+Optional~List~ outputs
+Optional~TesResources~ resources
+List~TesExecutor~ executors
+Optional~List~ volumes
+Optional~Dict~ tags
+Optional~List~ logs
+Optional~str~ creation_time
}
class TesExecutor {
+str image
+List~str~ command
+Optional~str~ workdir
+Optional~str~ stdin
+Optional~str~ stdout
+Optional~str~ stderr
+Optional~Dict~ env
+Optional~bool~ ignore_error
}
class TesResources {
+Optional~int~ cpu_cores
+Optional~bool~ preemptible
+Optional~float~ ram_gb
+Optional~float~ disk_gb
+Optional~List~ zones
+Optional~Dict~ backend_parameters
+Optional~bool~ backend_parameters_strict
}
TesTask --> TesExecutor
TesTask --> TesResources
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
Note the PR is still under progress and not tested, but feel free to go around and review. |
Summary by Sourcery
Implement a Task Execution Service (TES) API with Kubernetes integration for managing and executing tasks. Enhance the project with new features, refactor the codebase, improve documentation, and set up CI/CD workflows for quality assurance and automated deployments.
New Features:
Enhancements:
Build:
CI:
Deployment:
Documentation:
Tests: