You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create default notebook using jupyter-scipy:v1.9.2 image
Create following pipeline, deploy, run and retry it from UI. Despite message from UI that retry succeeded no containers are spawned (while on older versions they have in the process of retry)
from kfp import dsl
@dsl.component
def say_hello(name: str) -> str:
hello_text = f'Hello, {name}!'
print(hello_text)
with open('x.py') as f: s = f.read() # this fails
return hello_text
@dsl.pipeline
def hello_pipeline(recipient: str) -> str:
hello_task = say_hello(name=recipient)
return hello_task.output
from kfp import compiler
compiler.Compiler().compile(hello_pipeline, 'pipeline.yaml')
Put here any screenshots or videos (optional)
No response
The text was updated successfully, but these errors were encountered:
no idea :) I meant at that stage didn't get to the root cause. But if that is something related to network policies I guess it might be here as well, I think they were introduced recently ?
Validation Checklist
Version
master
Describe your issue
After upgrade from version 1.8.1 pipeline retry from UI functionality does not work. Tested on vanila 1.9.1 installation and does not work either.
Versions:
kubeflow: 1.9.1
minikube: v1.34.0
k8s: v1.31.0
Steps to reproduce the issue
Reproduced on vanilla install
Put here any screenshots or videos (optional)
No response
The text was updated successfully, but these errors were encountered: