Alexey Volkov

Results 117 comments of Alexey Volkov

Thank you for verifying. I did some investigation and it looks like the Fire library is doing this. It tries to parse every argument by adding missing quotes then parsing...

Unfortunately, this is currently not possible in the SDK. We support all container attributes (via `my_task.container.something = ...`), but pod attributes require explicit support in the SDK since that's how...

>The alternatives requires you to specify your ContainerOp instance as either yaml or json if you want to use it inline. There are also lightweight python components created using `kfp.components.create_component_from_func`....

> Currently we have an airflow based pipeline where one of the step is using trigger_rule='all_done' argument. What it means is that the next step will run even though the...

> can that be enabled in Kubeflow ? I'm not sure we're going to add that particular feature. The design seems to be error-prone (it affects all dependent tasks). It...

> a downstream task depends on multiple upstream and one of the upstream task may not be critical or doing anything to the data If the downstream does not depend...

This is a serious blocker. Basically, the default "starter pack" model just fails to work completely.

I think I'm trying to do the same thing (please tell me if that's not the case), but in my case I use repo link (so uv.lock is present): I...

I guess I was just using `uv run --with` instead of `uvx --from`. Anyways, ``` uvx --from git+https://github.com/Cloud-Pipelines/oasis-cli.git@5625f4ef1b4c6de65bee913c3cc31bf1cb1c3154 python -c "import click; print(click.__version__)" Updated https://github.com/Cloud-Pipelines/oasis-cli.git (5625f4ef1b4c6de65bee913c3cc31bf1cb1c3154) 8.2.0 ``` >If you...

Docker and its Python package work well on Windows. I hope Podman will work too. On WIndows, Docker uses Named Pipe by default: https://github.com/docker/docker-py/blob/6e6a273573fe77f00776b30de0685162a102e43f/docker/api/client.py#L153 https://github.com/docker/docker-py/blob/main/docker/transport/npipeconn.py https://github.com/docker/docker-py/blob/main/docker/transport/npipesocket.py but it seems to...