Description
I am working on a use case where I am running Jupyter as a pod in OpenShift, and I want to leverage several JupyterLab extensions such as Elyra.
Currently, I am trying to execute a sample pipeline provided in Elyra examples repo. But, I am facing the below error when I tried to run it in the JupyterLab notebook images having S3 buckets mounted in them (Using same HybridContentsManager):
But, I am able to run the pipeline successfully on JupyterLab notebook images which do not have S3 buckets mounted in them.
As far as I am able to figure out with this issue, when I am trying to run the pipeline in an environment where HybridContentsManager is being used, the extension is trying to find files in the /examples/pipelines/
folder which gives the error as shown in the above screenshot, while it tries to find files in the /opt/app-root/src/examples/pipelines/
folder in the other case.
I also faced another similar issue with the jupyterlab-git
extension and I got a solution for it which can be referenced here.
So, can you please help me in resolving this issue as I am not able to use the elyra's pipeline extension anymore.