Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .wordlist-txt
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,8 @@ LVM
Lifecycle
LlamaStack
Logstash
MLFlow
mlflow
MLOps
MTA
MaaS
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# components-mlflow

## Purpose

This component enables the MLFlow Operator in the DataScienceCluster. MLFlow is used for experiment tracking in your AI Pipelines.

## Usage

This component can be added to a base by adding the `components` section to your overlay `kustomization.yaml` file:

```yaml
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization

resources:
- ../../base

components:
- ../../components/components-mlflow
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
apiVersion: kustomize.config.k8s.io/v1alpha1
kind: Component

patches:
- path: patch-datasciencecluster.yaml
target:
kind: DataScienceCluster
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
apiVersion: datasciencecluster.opendatahub.io/v2
kind: DataScienceCluster
metadata:
name: default
spec:
components:
mlflowoperator:
managementState: Managed
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ components:
- ../../components/components-feast
- ../../components/components-kserve
# - ../../components/components-kserve-maas # disabled since maas needs postgres db deployed
- ../../components/components-mlflow
- ../../components/components-modelregistry
- ../../components/components-observability
- ../../components/components-ray
Expand Down
Loading