ci: Update workflows and Dockerfile for pre-releases #3301
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request updates several
Dockerfileconfigurations across the project to include the--preflag when installingflytekitand its plugins. This ensures that pre-release versions of the packages are used, likely to test or adopt new features and fixes early.Changes to Package Installation:
Core Flytekit Installation:
--preflag to theuv pip installcommand forflytekitin the mainDockerfile. This allows pre-release versions offlytekitto be installed. (Dockerfile, DockerfileL25-R25)Flytekit Plugins:
Dockerfile.connectorto include the--preflag for installingflytekit[connector]and other plugins likeflytekitplugins-airflow,flytekitplugins-bigquery, andflytekitplugins-k8sdataservice. (Dockerfile.connector, [1] [2]Dockerfile.devto add the--preflag for installingflytekitand its dependencies from themasterbranch. (Dockerfile.dev, Dockerfile.devL38-R38)Dockerfiles (e.g.,flytekit-flyteinteractive,flytekit-openai,flytekit-spark, andflytekit-sqlalchemy) to use the--preflag for installing their respective plugins andflytekit. (plugins/flytekit-flyteinteractive/Dockerfile, [1];plugins/flytekit-openai/Dockerfile.batch, [2];plugins/flytekit-spark/Dockerfile, [3];plugins/flytekit-sqlalchemy/Dockerfile, [4]Summary by Bito
This pull request updates Dockerfile configurations to include the --pre flag for installing flytekit and its plugins, enabling the use of pre-release versions. The changes ensure all relevant components are aligned with this new installation strategy for early testing and feature adoption.