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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ This repository periodically synchronizes all official Kubeflow components from
| KServe | applications/kserve/kserve | [v0.15.0](https://github.com/kserve/kserve/releases/tag/v0.15.0/install/v0.15.0) | 600m | 1200Mi | 0GB |
| KServe Models Web Application | applications/kserve/models-web-app | [v0.14.0](https://github.com/kserve/models-web-app/tree/v0.14.0/config) | 6m | 259Mi | 0GB |
| Kubeflow Pipelines | applications/pipeline/upstream | [2.14.0](https://github.com/kubeflow/pipelines/tree/2.14.0/manifests/kustomize) | 970m | 3552Mi | 35GB |
| Kubeflow Model Registry | applications/model-registry/upstream | [v0.2.22](https://github.com/kubeflow/model-registry/tree/v0.2.22/manifests/kustomize) | 510m | 2112Mi | 20GB |
| Kubeflow Model Registry | applications/model-registry/upstream | [v0.3.0](https://github.com/kubeflow/model-registry/tree/v0.3.0/manifests/kustomize) | 510m | 2112Mi | 20GB |
| Spark Operator | applications/spark/spark-operator | [2.3.0](https://github.com/kubeflow/spark-operator/tree/v2.3.0) | 9m | 41Mi | 0GB |
| Istio | common/istio | [1.26.1](https://github.com/istio/istio/releases/tag/1.26.1) | 750m | 2364Mi | 0GB |
| Knative | common/knative/knative-serving <br /> common/knative/knative-eventing | [v1.16.2](https://github.com/knative/serving/releases/tag/knative-v1.16.2) <br /> [v1.16.4](https://github.com/knative/eventing/releases/tag/knative-v1.16.4) | 1450m | 1038Mi | 0GB |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ resources:
images:
- name: ghcr.io/kubeflow/model-registry/server
newName: ghcr.io/kubeflow/model-registry/server
newTag: v0.2.22
newTag: v0.3.0
15 changes: 11 additions & 4 deletions applications/model-registry/upstream/options/catalog/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ The `yaml` type sources model metadata from a local YAML file.
##### Properties

- **`yamlCatalogPath`** (*string*, required): The path to the YAML file containing the model definitions. This path is relative to the directory where the `sources.yaml` file is located.
- **`excludedModels`** (*string list*, optional): A list of models to exclude from the catalog. These can be an exact name with a tag (e.g., `model-a:1.0`) or a pattern ending with `*` to exclude all tags for a repository (e.g., `model-b:*`).

##### Example

Expand All @@ -43,6 +44,9 @@ catalogs:
enabled: true
properties:
yamlCatalogPath: sample-catalog.yaml
excludedModels:
- model-a:1.0
- model-b:*
```

#### `rhec`
Expand All @@ -51,8 +55,8 @@ The `rhec` type sources model metadata from the Red Hat Ecosystem Catalog.

##### Properties

- **`models`** (*list*, required): A list of models to include from the Red Hat Ecosystem Catalog. Each entry in the list must contain a `repository` field.
- **`repository`** (*string*, required): The name of the model repository in the Red Hat Ecosystem Catalog (e.g., `rhelai1/modelcar-granite-7b-starter`).
- **`models`** (*string list*, required): A list of models to include from the Red Hat Ecosystem Catalog. Each entry contains the full name of the model repository in the Red Hat Ecosystem Catalog (e.g., `rhelai1/modelcar-granite-7b-starter`).
- **`excludedModels`** (*string list*, optional): A list of models to exclude from the catalog. These can be an exact name with a tag (e.g., `rhelai1/modelcar-granite-7b-starter:b9514c3`) or a pattern ending with `*` to exclude all tags for a repository (e.g., `rhelai1/modelcar-granite-7b-starter:*`).

##### Example

Expand All @@ -64,5 +68,8 @@ catalogs:
enabled: true
properties:
models:
- repository: rhelai1/modelcar-granite-7b-starter
```
- rhelai1/modelcar-granite-7b-starter
excludedModels:
- rhelai1/modelcar-granite-7b-starter:v0
- rhelai1/modelcar-granite-*
```
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,14 @@ resources:
- service.yaml

configMapGenerator:
- name: sources
options:
disableNameSuffixHash: true
behavior: create
- behavior: create
files:
- sources.yaml=sources.yaml
- sample-catalog.yaml=sample-catalog.yaml
name: sources
options:
disableNameSuffixHash: true
images:
- name: ghcr.io/kubeflow/model-registry/server
newName: ghcr.io/kubeflow/model-registry/server
newTag: v0.3.0
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,3 @@ catalogs:
enabled: true
properties:
yamlCatalogPath: sample-catalog.yaml
- name: Red Hat Ecosystem Catalog
id: sample_rhec_catalog
type: rhec
enabled: true
properties:
models:
- repository: rhelai1/modelcar-granite-7b-starter

Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ resources:
images:
- name: ghcr.io/kubeflow/model-registry/storage-initializer
newName: ghcr.io/kubeflow/model-registry/storage-initializer
newTag: v0.2.22
newTag: v0.3.0
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ resources:
images:
- name: model-registry-ui
newName: ghcr.io/kubeflow/model-registry/ui
newTag: v0.2.22
newTag: v0.3.0
2 changes: 1 addition & 1 deletion experimental/helm/charts/model-registry/ci/ci-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ server:
dataStoreType: embedmd

image:
tag: "v0.2.22"
tag: "v0.3.0"

# Configure readiness probe
rest:
Expand Down
2 changes: 1 addition & 1 deletion experimental/helm/charts/model-registry/ci/values-db.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ server:
replicas: 1
dataStoreType: embedmd
image:
tag: "v0.2.22"
tag: "v0.3.0"
resources:
limits:
cpu: 200m
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ server:
replicas: 1
dataStoreType: embedmd
image:
tag: "v0.2.22"
tag: "v0.3.0"
resources:
limits:
cpu: 200m
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ui:

image:
repository: ui
tag: "v0.2.22"
tag: "v0.3.0"
pullPolicy: Always

containerPort: 8080
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ui:

image:
repository: ui
tag: "v0.2.22"
tag: "v0.3.0"
pullPolicy: Always

containerPort: 8080
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ui:

image:
repository: ui
tag: "v0.2.22"
tag: "v0.3.0"
pullPolicy: Always

containerPort: 8080
Expand Down
2 changes: 1 addition & 1 deletion experimental/helm/charts/model-registry/ci/values-ui.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ui:

image:
repository: ui
tag: "v0.2.22"
tag: "v0.3.0"
pullPolicy: Always

containerPort: 8080
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ spec:
labels:
app: model-registry-ui
spec:
serviceAccountName: model-registry-ui
serviceAccountName: {{ include "model-registry.ui.serviceAccountName" . }}
securityContext:
seccompProfile:
type: RuntimeDefault
runAsNonRoot: true
containers:
- name: model-registry-ui
image: ghcr.io/kubeflow/model-registry/ui:v0.2.22
imagePullPolicy: Always
image: "{{ .Values.global.imageRegistry }}/{{ .Values.ui.image.repository }}:{{ .Values.ui.image.tag | default .Values.global.imageTag }}"
imagePullPolicy: {{ .Values.ui.image.pullPolicy | default .Values.global.imagePullPolicy }}
{{- if .Values.ui.livenessProbe.enabled }}
livenessProbe:
httpGet:
Expand Down Expand Up @@ -101,7 +101,7 @@ spec:
runAsNonRoot: true
seccompProfile:
type: RuntimeDefault
serviceAccountName: model-registry-ui
serviceAccountName: {{ include "model-registry.ui.serviceAccountName" . }}
{{- if .Values.ui.standalone.enabled }}
volumes:
- configMap:
Expand Down
4 changes: 2 additions & 2 deletions experimental/helm/charts/model-registry/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ server:
# -- Server image repository
repository: server
# -- Server image tag (overrides global.imageTag if set)
tag: "v0.2.21"
tag: "v0.3.0"
# -- Server image pull policy (overrides global.imagePullPolicy if set)
pullPolicy: ""

Expand Down Expand Up @@ -178,7 +178,7 @@ ui:
# -- UI image repository
repository: model-registry-ui
# -- UI image tag
tag: "v0.2.21"
tag: "v0.3.0"
# -- UI image pull policy
pullPolicy: ""

Expand Down
Loading