Reputation: 1091
We have set up an on-prem Kubeflow 1.7 installation and are trying out Kubeflow Pipelines v2.x.
When executing a run on the provided pipeline "[Tutorial] Data passing in python components", all the components expose quite a lot of tabs, including pod logs:
However, when we create a pipeline of our own with KFP SDK v2 (I don't know if v1 would solve the issue since v1 pipelines are rejected due to the wrong format) and issue runs of that pipeline, the component information looks like this:
As you can see, most of the information tabs are missing. We would at least need the Logs
button. Right now, users need kubectl
access to the cluster to see what went wrong with their component.
How can we activate the tabs shown for runs on the example pipeline? At the very least, how can we view the component pod logs in the Kubeflow Dashboard?
Thank you!
Upvotes: 0
Views: 338
Reputation: 1091
Short version: Install Kfp >= v2.0.0 (not alpha or beta but release version).
Longer version: After quite some experimentation and research I have a better understanding now. Lessons learned:
Upvotes: 0