Skip to content

Commit

Permalink
Merge branch 'main' of github.com:g-research/fasttrackml
Browse files Browse the repository at this point in the history
  • Loading branch information
suprjinx committed May 14, 2024
2 parents 8f97bc9 + f8cb4d4 commit a007c97
Show file tree
Hide file tree
Showing 25 changed files with 863 additions and 160 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,3 +118,11 @@ jobs:
$(printf -- "--tag ${{ vars.DOCKER_REPO }}:%s " ${tags[@]}) \
$(printf "${{ vars.DOCKER_REPO }}@%s " ${digests[@]})
echo "::endgroup::"
chart-release:
name: Publish Helm chart
if: startsWith(github.ref, 'refs/tags/v')
uses: G-Research/charts/.github/workflows/invoke-push.yaml@master
secrets:
APP_ID: ${{ secrets.APP_ID }}
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ black = "*"
isort = "*"

[dev-packages]
mlflow = "==2.12.1"
mlflow = "==2.12.2"
boto3 = "*"
psycopg2-binary = "*"
google-cloud-storage = "*"
Expand Down
156 changes: 78 additions & 78 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,14 @@ You can also run FastTrackML in a container via [Docker](https://docs.docker.com
docker run --rm -p 5000:5000 -ti gresearch/fasttrackml
```

### Deploy Helm chart

You can also run FastTrackML in a Kubernetes via [Helm](https://helm.sh/docs/intro/install/):

```bash
helm install fasttrackml ./helm/fasttrackml
```

### Verification

Verify that you can see the UI by navigating to http://localhost:5000/.
Expand Down
Loading

0 comments on commit a007c97

Please sign in to comment.