Jeev B

Results 10 comments of Jeev B

I think this would come in handy for teams building platforms on top of Flyte, specifically allowing users to filter/list executions with a rich set of tags (e.g. user_id, git_branch,...

Pinging relevant folks: @tvetterli-fn @MarvinBertin. What do y'all think?

This is relevant to other plugins that follow a driver-worker pattern (e.g. ray, spark, kfoperator).

This tinier example correctly triggers a build: ``` """A simple Flyte example.""" from flytekit import task, workflow, ImageSpec default = ImageSpec( name="flytekit", base_image="ghcr.io/flyteorg/flytekit:py3.8-1.6.0", registry="ghcr.io/zeryx", packages=["flytekit>=1.6.0", "bayesian-optimization==1.4.3"], python_version="3.8", ) @task(container_image=default) def...

This one doesn't trigger a build: ``` """A simple Flyte example.""" from flytekit import dynamic, task, workflow, ImageSpec default = ImageSpec( name="flytekit", base_image="ghcr.io/flyteorg/flytekit:py3.8-1.6.0", registry="localhost:30000", packages=["flytekit>=1.6.0", "bayesian-optimization==1.4.3"], python_version="3.8", ) @task(container_image=default) def...

Generally, we should all be using `flytectl demo` now. Personally, I can't think of a reason to use `flytectl sandbox`. Do folks frequently experiment with individually bumped components in the...

> Is there a way to remove the default project from the `demo`? You should be able to override the projects by specifying [this](https://github.com/flyteorg/flyte/blob/baba9bd59008d640c10344906c11473b1cfb166e/charts/flyte-binary/values.yaml#L21) in your own `values.yaml` file for...

> @jeevb sweet. That worked. Thank you 🙏 > > Is it possible to make that file come from somewhere local to the repository? Not atm, afaik. But we should...

Haven't had a chance to look into this yet. Please feel free to take a crack at it! 🙏