Skip to content
Draft
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 apps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ appsInfo:
chartName: knative-operator
kserve:
title: Kserve
appVersion: 0.19.0
appVersion: 0.20.0
repo: http://github.com/kserve/kserve
maintainers: Kserve
relatedLinks:
Expand Down
4 changes: 2 additions & 2 deletions charts/dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,11 @@ dependencies:
version: v1.22.2
repository: https://knative.github.io/operator
- name: kserve-crd
version: v0.19.0
version: v0.20.0
repository: oci://ghcr.io/kserve/charts/kserve-crd
- name: kserve-resources
alias: kserve
version: v0.19.0
version: v0.20.0
repository: oci://ghcr.io/kserve/charts/kserve-resources
- name: kube-prometheus-stack
version: 86.3.2
Expand Down
4 changes: 2 additions & 2 deletions charts/kserve/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
annotations:
category: AI/Machine Learning
apiVersion: v2
appVersion: v0.19.0
appVersion: v0.20.0
description: Helm chart for deploying kserve resources
home: https://kserve.github.io/website/
icon: https://raw.githubusercontent.com/kserve/website/main/docs/images/logo.png
Expand All @@ -18,4 +18,4 @@ name: kserve-resources
sources:
- https://github.com/kserve/kserve
type: application
version: v0.19.0
version: v0.20.0
6 changes: 3 additions & 3 deletions charts/kserve/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

Helm chart for deploying kserve resources

![Version: v0.19.0](https://img.shields.io/badge/Version-v0.19.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.19.0](https://img.shields.io/badge/AppVersion-v0.19.0-informational?style=flat-square)
![Version: v0.20.0](https://img.shields.io/badge/Version-v0.20.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.20.0](https://img.shields.io/badge/AppVersion-v0.20.0-informational?style=flat-square)

## Installing the Chart

To install the chart, run the following:

```console
$ helm install kserve-resources oci://ghcr.io/kserve/charts/kserve-resources --version v0.19.0
$ helm install kserve-resources oci://ghcr.io/kserve/charts/kserve-resources --version v0.20.0
```

## Values
Expand Down Expand Up @@ -146,4 +146,4 @@ $ helm install kserve-resources oci://ghcr.io/kserve/charts/kserve-resources --v
| kserve.storage.tag | string | `""` | |
| kserve.storage.uidModelcar | int | `1010` | |
| kserve.storagecontainer.enabled | string | `""` | |
| kserve.version | string | `"v0.19.0"` | |
| kserve.version | string | `"v0.20.0"` | |
16,297 changes: 16,297 additions & 0 deletions charts/kserve/crds/serving.kserve.io_inferenceservices.yaml

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions charts/kserve/files/common/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,8 @@ data:
"caBundleConfigMapName": "",
"caBundleVolumeMountPath": "/etc/ssl/custom-certs",
"enableModelcar": false,
"enableOciModelSupport": false,
"ociModelMode": "modelcar",
Comment on lines 155 to +157
"cpuModelcar": "10m",
"memoryModelcar": "15Mi"
}
Expand Down Expand Up @@ -183,6 +185,14 @@ data:
# using a source URL with an "oci://" schema.
"enableModelcar": false,

# enableOciModelSupport enables any OCI-backed model storage path (modelcar, native ImageVolume, or fetch).
# This is the newer master switch; enableModelcar is kept as a backcompat alias for the "modelcar" mode.
"enableOciModelSupport": false,

# ociModelMode selects the materialization strategy when a storageUri uses oci:// without an explicit
# suffix. Valid values: "modelcar" (default sidecar), "native" (K8s ImageVolume), "fetch" (init-container).
"ociModelMode": "modelcar",

# cpuModelcar is the cpu request and limit that is used for the passive modelcar container. It can be
# set very low, but should be allowed by any Kubernetes LimitRange that might apply.
"cpuModelcar": "10m",
Expand Down
2 changes: 1 addition & 1 deletion charts/kserve/values.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
kserve:
version: v0.19.0
version: v0.20.0
createSharedResources: true
inferenceServiceConfig:
enabled: ''
Expand Down
Loading