https://github.com/jbris/flyte-testing
Testing flyte
https://github.com/jbris/flyte-testing
flyte flyte-machine-learning flyte-workflow flytekit-python machine-learning mlops mlops-environment mlops-project mlops-workflow
Last synced: 7 months ago
JSON representation
Testing flyte
- Host: GitHub
- URL: https://github.com/jbris/flyte-testing
- Owner: JBris
- License: apache-2.0
- Created: 2025-03-08T05:31:12.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-03-08T07:14:20.000Z (7 months ago)
- Last Synced: 2025-03-08T08:22:48.214Z (7 months ago)
- Topics: flyte, flyte-machine-learning, flyte-workflow, flytekit-python, machine-learning, mlops, mlops-environment, mlops-project, mlops-workflow
- Language: Python
- Homepage:
- Size: 85 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# flyte Testing
Testing flyte
# Install
Add flytectl:
```
curl -sL https://ctl.flyte.org/install | bash
chmod +x ./bin/flytectl
sudo mv ./bin/flytectl /usr/bin/
```Python:
```
poetry install --no-root
poetry shell
```# Usage
Local usage:
```
pyflyte run pipelines/hello_world.py hello_world_wf
```Spin up cluster using Docker:
```
flytectl demo start
```Remote usage:
```
pyflyte run --remote pipelines/hello_world.py hello_world_wf
```Remote usage with Docker:
```
pyflyte run --remote --image ghcr.io/flyteorg/flytecookbook:pima_diabetes-latest pipelines/xgboost_regression.py house_price_predictor_trainer
```