Skip to content

Commit 6aad970

Browse files
Synchronize kserve models web app manifests v0.15.0 (#3250)
* Update kserve models web application manifests from v0.15.0 Signed-off-by: juliusvonkohout <[email protected]> * update script Signed-off-by: juliusvonkohout <[email protected]> * Update kustomization.yaml Signed-off-by: Julius von Kohout <[email protected]> * Update kserve models web application manifests from v0.15.0 Signed-off-by: juliusvonkohout <[email protected]> * Update kustomization.yaml Signed-off-by: Julius von Kohout <[email protected]> --------- Signed-off-by: juliusvonkohout <[email protected]> Signed-off-by: Julius von Kohout <[email protected]>
1 parent 8cc8dcf commit 6aad970

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ This repository periodically synchronizes all official Kubeflow components from
6969
| Volumes Web Application | applications/volumes-web-app/upstream | [v1.10.0](https://github.com/kubeflow/kubeflow/tree/v1.10.0/components/crud-web-apps/volumes/manifests) | 4m | 226Mi | 0GB |
7070
| Katib | applications/katib/upstream | [v0.18.0](https://github.com/kubeflow/katib/tree/v0.18.0/manifests/v1beta1) | 13m | 476Mi | 10GB |
7171
| KServe | applications/kserve/kserve | [v0.15.0](https://github.com/kserve/kserve/releases/tag/v0.15.0/install/v0.15.0) | 600m | 1200Mi | 0GB |
72-
| 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 |
72+
| KServe Models Web Application | applications/kserve/models-web-app | [v0.15.0](https://github.com/kserve/models-web-app/tree/v0.15.0/config) | 6m | 259Mi | 0GB |
7373
| Kubeflow Pipelines | applications/pipeline/upstream | [2.14.3](https://github.com/kubeflow/pipelines/tree/2.14.3/manifests/kustomize) | 970m | 3552Mi | 35GB |
7474
| 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 |
7575
| Spark Operator | applications/spark/spark-operator | [2.3.0](https://github.com/kubeflow/spark-operator/tree/v2.3.0) | 9m | 41Mi | 0GB |

applications/kserve/models-web-app/base/kustomization.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,13 @@ namespace: kserve
1010
images:
1111
- name: kserve/models-web-app
1212
newName: ghcr.io/kserve/models-web-app
13-
newTag: v0.14.0
13+
newTag: 0.15.0
1414
configMapGenerator:
1515
- literals:
1616
- APP_DISABLE_AUTH="True"
17+
- GRAFANA_PREFIX="/grafana"
18+
- GRAFANA_CPU_MEMORY_DB="db/knative-serving-revision-cpu-and-memory-usage"
19+
- GRAFANA_HTTP_REQUESTS_DB="db/knative-serving-revision-http-requests"
1720
name: kserve-models-web-app-config
1821
apiVersion: kustomize.config.k8s.io/v1beta1
1922
kind: Kustomization

applications/kserve/models-web-app/overlays/kubeflow/kustomization.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@ namespace: kubeflow
66

77
# Labels to add to all resources and selectors.
88

9-
10-
11-
129
generatorOptions:
1310
disableNameSuffixHash: true
1411

@@ -20,6 +17,9 @@ configMapGenerator:
2017
literals:
2118
- USERID_HEADER=kubeflow-userid
2219
- APP_PREFIX=/kserve-endpoints
20+
- GRAFANA_PREFIX=/grafana
21+
- GRAFANA_CPU_MEMORY_DB=db/knative-serving-revision-cpu-and-memory-usage
22+
- GRAFANA_HTTP_REQUESTS_DB=db/knative-serving-revision-http-requests
2323
name: kserve-models-web-app-config
2424

2525
configurations:

applications/kserve/models-web-app/overlays/kubeflow/patches/web-app-sidecar.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ metadata:
66
spec:
77
template:
88
metadata:
9-
labels:
9+
annotations:
1010
sidecar.istio.io/inject: "true"

scripts/synchronize-kserve-web-application-manifests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ setup_error_handling
99
COMPONENT_NAME="models-web-app"
1010
REPOSITORY_NAME="kserve/models-web-app"
1111
REPOSITORY_URL="https://github.com/kserve/models-web-app.git"
12-
COMMIT="v0.14.0"
12+
COMMIT="v0.15.0"
1313
REPOSITORY_DIRECTORY="models-web-app"
1414
SOURCE_DIRECTORY=${SOURCE_DIRECTORY:=/tmp/kserve-${COMPONENT_NAME}}
1515
BRANCH_NAME=${BRANCH_NAME:=synchronize-kserve-${COMPONENT_NAME}-manifests-${COMMIT?}}

0 commit comments

Comments
 (0)