File tree Expand file tree Collapse file tree 2 files changed +20
-1
lines changed
jupyter/datascience/ubi9-python-3.9 Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ RUN mkdir /opt/app-root/runtimes && \
36
36
sed -i "s/Kubeflow Pipelines/Data Science Pipelines/g" /opt/app-root/lib/python3.9/site-packages/elyra/metadata/schemas/kfp.json && \
37
37
sed -i "s/kubeflow-service/data-science-pipeline-service/g" /opt/app-root/lib/python3.9/site-packages/elyra/metadata/schemas/kfp.json && \
38
38
sed -i "s/\" default\" : \" Argo\" ,/\" default\" : \" Tekton\" ,/g" /opt/app-root/lib/python3.9/site-packages/elyra/metadata/schemas/kfp.json && \
39
- # Workaround for passing ssl_sa_cert
39
+ # Workaround for passing ssl_sa_cert and to ensure that Elyra redirects to a correct pipeline run URL
40
40
patch /opt/app-root/lib/python3.9/site-packages/elyra/pipeline/kfp/kfp_authentication.py -i utils/kfp_authentication.patch && \
41
41
patch /opt/app-root/lib/python3.9/site-packages/elyra/pipeline/kfp/processor_kfp.py -i utils/processor_kfp.patch && \
42
42
# switch to Data Science Pipeline in component catalog \
Original file line number Diff line number Diff line change 8
8
)
9
9
else:
10
10
client = ArgoClient(
11
+ @@ -435,7 +435,7 @@
12
+
13
+ self.log_pipeline_info(
14
+ pipeline_name,
15
+ - f"pipeline submitted: {public_api_endpoint}/#/runs/details/{run.id}",
16
+ + f"pipeline submitted: {public_api_endpoint}/{run.id}",
17
+ duration=time.time() - t0,
18
+ )
19
+
20
+ @@ -451,7 +451,7 @@
21
+
22
+ return KfpPipelineProcessorResponse(
23
+ run_id=run.id,
24
+ - run_url=f"{public_api_endpoint}/#/runs/details/{run.id}",
25
+ + run_url=f"{public_api_endpoint}/{run.id}",
26
+ object_storage_url=object_storage_url,
27
+ object_storage_path=object_storage_path,
28
+ )
29
+
You can’t perform that action at this time.
0 commit comments