https://github.com/mondata-dev/mlflow-helm
A simple helm chart for MLflow
https://github.com/mondata-dev/mlflow-helm
Last synced: 6 months ago
JSON representation
A simple helm chart for MLflow
- Host: GitHub
- URL: https://github.com/mondata-dev/mlflow-helm
- Owner: mondata-dev
- Created: 2023-09-19T13:03:53.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-09-20T11:32:05.000Z (almost 3 years ago)
- Last Synced: 2025-02-03T23:44:05.738Z (over 1 year ago)
- Language: Mustache
- Size: 23.4 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MLflow Helm Chart
## Release new helm chart version
The simplest way is to tag the repo with the appropriate version tag and let gitlab's CI do the rest.
Don't forget to also increase the chart version in `mlflow/Chart.yaml`
### Manual release
Prerequisites:
```bash
# the access token requires api scope
helm repo add --username $GITLAB_USER --password $GITLAB_ACCESS_TOKEN mondata-mlflow https://gitlab.mondata.de/api/v4/projects/113/packages/helm/stable
helm plugin install https://github.com/chartmuseum/helm-push.git
```
Performing the release:
```bash
helm package mlflow
helm cm-push mlflow-$CHART_VERSION.tgz mondata-mlflow
```