Skip to content
Merged
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
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ This repository periodically synchronizes all official Kubeflow components from
| KServe Models Web Application | apps/kserve/models-web-app | [v0.14.0](https://github.com/kserve/models-web-app/tree/v0.14.0/config) |
| Kubeflow Pipelines | apps/pipeline/upstream | [2.5.0](https://github.com/kubeflow/pipelines/tree/2.5.0/manifests/kustomize) |
| Kubeflow Model Registry | apps/model-registry/upstream | [v0.2.17](https://github.com/kubeflow/model-registry/tree/v0.2.17/manifests/kustomize) |
| Spark Operator | apps/spark/spark-operator | [2.1.1](https://github.com/kubeflow/spark-operator/tree/v2.1.1) |

The following matrix shows the versions of common components used across different Kubeflow projects:

Expand Down Expand Up @@ -506,6 +507,14 @@ Install the Training Operator official Kubeflow component:
kustomize build apps/training-operator/upstream/overlays/kubeflow | kubectl apply --server-side --force-conflicts -f -
```

#### Spark Operator

Install the Spark Operator:

```sh
kustomize build apps/spark/spark-operator/overlays/kubeflow | kubectl apply -f -
```

#### User Namespaces

Finally, create a new namespace for the default user (named `kubeflow-user-example-com`).
Expand Down
6 changes: 2 additions & 4 deletions example/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,8 @@
# oauth2-proxy
# NOTE: only uncomment ONE of the following overlays, depending on your cluster type
- ../common/oauth2-proxy/overlays/m2m-dex-only # for all clusters
#- ../common/oauth2-proxy/overlays/m2m-dex-and-kind # for KIND clusters (allows K8S JWTs for gateway auth)

Check warning on line 46 in example/kustomization.yaml

View workflow job for this annotation

GitHub Actions / format_YAML_files

46:2 [comments] missing starting space in comment
#- ../common/oauth2-proxy/overlays/m2m-dex-and-eks # for EKS clusters (NOTE: requires you to configure issuer, see overlay)

Check warning on line 47 in example/kustomization.yaml

View workflow job for this annotation

GitHub Actions / format_YAML_files

47:2 [comments] missing starting space in comment

# Dex
- ../common/dex/overlays/oauth2-proxy
# KNative
Expand All @@ -61,8 +60,6 @@
- ../common/kubeflow-roles/base
# Kubeflow Istio Resources
- ../common/istio-1-24/kubeflow-istio-resources/base


# Kubeflow Pipelines
- ../apps/pipeline/upstream/env/cert-manager/platform-agnostic-multi-user
# Katib
Expand All @@ -89,10 +86,11 @@
- ../apps/training-operator/upstream/overlays/kubeflow
# User namespace
- ../common/user-namespace/base

# KServe
- ../apps/kserve/kserve
- ../apps/kserve/models-web-app/overlays/kubeflow
# Spark Operator
- ../apps/spark/spark-operator/overlays/kubeflow

# Ray is an experimental integration
# Here is the documentation for Ray: https://docs.ray.io/en/latest/
Expand Down
Loading