runnable 0.19.0__py3-none-any.whl → 0.20.0__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- extensions/job_executor/k8s.py +2 -0
- extensions/job_executor/local.py +1 -0
- extensions/job_executor/local_container.py +1 -0
- extensions/pipeline_executor/argo.py +691 -1077
- extensions/pipeline_executor/local_container.py +0 -33
- runnable/cli.py +11 -2
- runnable/entrypoints.py +6 -2
- runnable/sdk.py +5 -0
- runnable/tasks.py +14 -39
- runnable/utils.py +5 -5
- {runnable-0.19.0.dist-info → runnable-0.20.0.dist-info}/METADATA +1 -1
- {runnable-0.19.0.dist-info → runnable-0.20.0.dist-info}/RECORD +15 -16
- extensions/pipeline_executor/argo_specification.yaml +0 -51
- {runnable-0.19.0.dist-info → runnable-0.20.0.dist-info}/WHEEL +0 -0
- {runnable-0.19.0.dist-info → runnable-0.20.0.dist-info}/entry_points.txt +0 -0
- {runnable-0.19.0.dist-info → runnable-0.20.0.dist-info}/licenses/LICENSE +0 -0
extensions/job_executor/k8s.py
CHANGED
@@ -190,6 +190,7 @@ class GenericK8sJobExecutor(GenericJobExecutor):
|
|
190
190
|
self._use_volumes()
|
191
191
|
|
192
192
|
job_log = self._context.run_log_store.get_job_log(run_id=self._context.run_id)
|
193
|
+
self.add_code_identities(job_log)
|
193
194
|
|
194
195
|
attempt_log = job.execute_command(
|
195
196
|
attempt_number=self.step_attempt_number,
|
@@ -428,6 +429,7 @@ class K8sJobExecutor(GenericK8sJobExecutor):
|
|
428
429
|
)
|
429
430
|
|
430
431
|
job_log = self._context.run_log_store.get_job_log(run_id=self._context.run_id)
|
432
|
+
self.add_code_identities(job_log)
|
431
433
|
|
432
434
|
attempt_log = job.execute_command(
|
433
435
|
attempt_number=self.step_attempt_number,
|
extensions/job_executor/local.py
CHANGED
@@ -37,6 +37,7 @@ class LocalJobExecutor(GenericJobExecutor):
|
|
37
37
|
logger.info("Trying to execute job")
|
38
38
|
|
39
39
|
job_log = self._context.run_log_store.get_job_log(run_id=self._context.run_id)
|
40
|
+
self.add_code_identities(job_log)
|
40
41
|
|
41
42
|
attempt_log = job.execute_command(
|
42
43
|
attempt_number=self.step_attempt_number,
|
@@ -52,6 +52,7 @@ class LocalContainerJobExecutor(GenericJobExecutor):
|
|
52
52
|
logger.info("Trying to execute job")
|
53
53
|
|
54
54
|
job_log = self._context.run_log_store.get_job_log(run_id=self._context.run_id)
|
55
|
+
self.add_code_identities(job_log)
|
55
56
|
|
56
57
|
attempt_log = job.execute_command(
|
57
58
|
attempt_number=self.step_attempt_number,
|