argo-kedro 0.1.4__tar.gz → 0.1.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {argo_kedro-0.1.4 → argo_kedro-0.1.6}/PKG-INFO +1 -1
- {argo_kedro-0.1.4 → argo_kedro-0.1.6}/argo_kedro/framework/cli/cli.py +8 -1
- {argo_kedro-0.1.4 → argo_kedro-0.1.6}/argo_kedro.egg-info/PKG-INFO +1 -1
- {argo_kedro-0.1.4 → argo_kedro-0.1.6}/pyproject.toml +1 -1
- {argo_kedro-0.1.4 → argo_kedro-0.1.6}/.gitignore +0 -0
- {argo_kedro-0.1.4 → argo_kedro-0.1.6}/.python-version +0 -0
- {argo_kedro-0.1.4 → argo_kedro-0.1.6}/LICENSE +0 -0
- {argo_kedro-0.1.4 → argo_kedro-0.1.6}/MANIFEST.in +0 -0
- {argo_kedro-0.1.4 → argo_kedro-0.1.6}/README.md +0 -0
- {argo_kedro-0.1.4 → argo_kedro-0.1.6}/argo_kedro/framework/__init__.py +0 -0
- {argo_kedro-0.1.4 → argo_kedro-0.1.6}/argo_kedro/framework/cli/__init__.py +0 -0
- {argo_kedro-0.1.4 → argo_kedro-0.1.6}/argo_kedro/pipeline/__init__.py +0 -0
- {argo_kedro-0.1.4 → argo_kedro-0.1.6}/argo_kedro/pipeline/fused_pipeline.py +0 -0
- {argo_kedro-0.1.4 → argo_kedro-0.1.6}/argo_kedro/runners/__init__.py +0 -0
- {argo_kedro-0.1.4 → argo_kedro-0.1.6}/argo_kedro/runners/fuse_runner.py +0 -0
- {argo_kedro-0.1.4 → argo_kedro-0.1.6}/argo_kedro/templates/argo_wf_spec.tmpl +0 -0
- {argo_kedro-0.1.4 → argo_kedro-0.1.6}/argo_kedro.egg-info/SOURCES.txt +0 -0
- {argo_kedro-0.1.4 → argo_kedro-0.1.6}/argo_kedro.egg-info/dependency_links.txt +0 -0
- {argo_kedro-0.1.4 → argo_kedro-0.1.6}/argo_kedro.egg-info/entry_points.txt +0 -0
- {argo_kedro-0.1.4 → argo_kedro-0.1.6}/argo_kedro.egg-info/requires.txt +0 -0
- {argo_kedro-0.1.4 → argo_kedro-0.1.6}/argo_kedro.egg-info/top_level.txt +0 -0
- {argo_kedro-0.1.4 → argo_kedro-0.1.6}/locally_building_guide.md +0 -0
- {argo_kedro-0.1.4 → argo_kedro-0.1.6}/setup.cfg +0 -0
- {argo_kedro-0.1.4 → argo_kedro-0.1.6}/uv.lock +0 -0
|
@@ -154,14 +154,21 @@ def submit(
|
|
|
154
154
|
kind=yaml_data["kind"],
|
|
155
155
|
)
|
|
156
156
|
|
|
157
|
-
resource.create(
|
|
157
|
+
response = resource.create(
|
|
158
158
|
body=yaml_data,
|
|
159
159
|
namespace=namespace
|
|
160
160
|
)
|
|
161
|
+
|
|
162
|
+
workflow_name = response.metadata.name
|
|
163
|
+
LOGGER.info(f"Workflow submitted successfully: {workflow_name}")
|
|
164
|
+
LOGGER.info(f"View workflow at: https://argo.ai-platform.dev.everycure.org/workflows/{namespace}/{workflow_name}")
|
|
165
|
+
|
|
166
|
+
return workflow_name
|
|
161
167
|
|
|
162
168
|
|
|
163
169
|
def save_argo_template(argo_template: str) -> str:
|
|
164
170
|
file_path = Path("templates") / "argo-workflow-template.yml"
|
|
171
|
+
file_path.parent.mkdir(parents=True, exist_ok=True)
|
|
165
172
|
with open(file_path, "w") as f:
|
|
166
173
|
f.write(argo_template)
|
|
167
174
|
return str(file_path)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|