Jonas De Beukelaer

Results 7 comments of Jonas De Beukelaer

Currently experiencing a version of this too. In this case due to docker host platform being wrong and the python server not being able to start properly.

Not sure if related to that issue @Bobgy but looking in `workflow-controller-configmap-patch.yaml` the keyFormat is completely different to where the UI looks for logs/metrics: ``` keyFormat: "artifacts/{{workflow.name}}/{{workflow.creationTimestamp.Y}}/{{workflow.creationTimestamp.m}}/{{workflow.creationTimestamp.d}}/{{pod.name}}" ``` I tried...

@andrijaperovic For now we 're unfortunately having to access the artefacts through the MinIO interface by port-forwarding ``` kubectl port-forward svc/minio-service 8082:9000 -n kubeflow ```

This is quite an annoying bug for us at the moment. I'd be happy to try fix this issue if it still need picking up. If someone can point to...

any updates for this feature? Would love to see the option for simple arrows instead of points 🙏

@jaykayenn Dunno if you've already fixed it, but I had to change this line to fix ``` [result.encode("utf-8", "ignore") for result in results] ``` to ``` [result.encode("utf-8", "ignore").decode("utf-8") for result...

@krrishdholakia currently not using the mock feature it as I'm only making use of tools in my project, but would be used simply for functional tests really. I don't immediately...