-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
87 changed files
with
143 additions
and
115 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,15 @@ | ||
from typing import Any, Dict | ||
from typing import Any, Dict, Union | ||
|
||
from pydantic import BaseModel | ||
|
||
|
||
class ReqCreateSecret(BaseModel): | ||
id: str | ||
description: str = None | ||
data: Dict[str, Any] | ||
data: Union[ | ||
Dict[str, Any], | ||
str, | ||
int, | ||
float, | ||
bool | ||
] |
This file contains 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
This file contains 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
This file contains 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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
src/engine/src/core/tasks/executors/builders/kaniko/__init__.py
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
src/engine/src/core/tasks/executors/builders/singularity/__init__.py
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...src/core/daos/WorkflowExecutorStateDAO.py → ...gine/src/daos/WorkflowExecutorStateDAO.py
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from core.state import ReactiveState | ||
from state import ReactiveState | ||
|
||
|
||
class WorkflowExecutorStateDAO: | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
from daos.FileSystemDAO import FileSystemDAO | ||
from daos.WorkflowExecutorStateDAO import WorkflowExecutorStateDAO |
This file contains 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
2 changes: 1 addition & 1 deletion
2
...e/src/core/expressions/OperandResolver.py → ...engine/src/expressions/OperandResolver.py
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
from expressions.ConditionalExpressionEvaluator import ConditionalExpressionEvaluator | ||
from expressions.OperandResolver import OperandResolver |
File renamed without changes.
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
from ioc.IOCContainer import IOCContainer | ||
from ioc.IOCContainerFactory import IOCContainerFactory |
This file contains 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
This file contains 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
2 changes: 1 addition & 1 deletion
2
...ne/src/core/mappers/ArgValueFileMapper.py → src/engine/src/mappers/ArgValueFileMapper.py
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from core.daos import FileSystemDAO | ||
from daos import FileSystemDAO | ||
|
||
|
||
class ArgValueFileMapper: | ||
|
2 changes: 1 addition & 1 deletion
2
src/engine/src/core/mappers/EnvMapper.py → src/engine/src/mappers/EnvMapper.py
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from core.daos import WorkflowExecutorStateDAO | ||
from daos import WorkflowExecutorStateDAO | ||
|
||
|
||
class EnvMapper: | ||
|
2 changes: 1 addition & 1 deletion
2
...src/core/mappers/EnvVarValueFileMapper.py → ...gine/src/mappers/EnvVarValueFileMapper.py
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from core.daos import FileSystemDAO | ||
from daos import FileSystemDAO | ||
|
||
|
||
class EnvVarValueFileMapper: | ||
|
2 changes: 1 addition & 1 deletion
2
src/engine/src/core/mappers/TaskMapper.py → src/engine/src/mappers/TaskMapper.py
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from core.daos import WorkflowExecutorStateDAO | ||
from daos import WorkflowExecutorStateDAO | ||
|
||
|
||
class TaskMapper: | ||
|
2 changes: 1 addition & 1 deletion
2
...gine/src/core/mappers/TaskOutputMapper.py → src/engine/src/mappers/TaskOutputMapper.py
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import os | ||
|
||
from core.daos import FileSystemDAO | ||
from daos import FileSystemDAO | ||
|
||
|
||
class TaskOutputMapper: | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
from mappers.ArgMapper import ArgMapper | ||
from mappers.ArgValueFileMapper import ArgValueFileMapper | ||
from mappers.EnvVarValueFileMapper import EnvVarValueFileMapper | ||
from mappers.EnvMapper import EnvMapper | ||
from mappers.TaskMapper import TaskMapper | ||
from mappers.TaskOutputMapper import TaskOutputMapper |
File renamed without changes.
File renamed without changes.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
from middleware.archivers.S3Archiver import S3Archiver | ||
from middleware.archivers.IRODSArchiver import IRODSArchiver | ||
|
||
|
File renamed without changes.
This file contains 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
This file contains 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
2 changes: 1 addition & 1 deletion
2
...re/repositories/ArgValueFileRepository.py → ...rc/repositories/ArgValueFileRepository.py
This file contains 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
2 changes: 1 addition & 1 deletion
2
...ne/src/core/repositories/EnvRepository.py → src/engine/src/repositories/EnvRepository.py
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from core.mappers import EnvMapper | ||
from mappers import EnvMapper | ||
|
||
|
||
class EnvRepository: | ||
|
2 changes: 1 addition & 1 deletion
2
...repositories/EnvVarValueFileRepository.py → ...repositories/EnvVarValueFileRepository.py
This file contains 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
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...core/repositories/TaskOutputRepository.py → .../src/repositories/TaskOutputRepository.py
This file contains 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
2 changes: 1 addition & 1 deletion
2
...e/src/core/repositories/TaskRepository.py → ...engine/src/repositories/TaskRepository.py
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from core.mappers import TaskMapper | ||
from mappers import TaskMapper | ||
|
||
|
||
class TaskRepository: | ||
|
Oops, something went wrong.