Skip to content

Commit

Permalink
Synchronize kserve web app manifests v0.14.0 rc.0 (#3003)
Browse files Browse the repository at this point in the history
* Update kserve models web application manifests from 0.13.0

Signed-off-by: juliusvonkohout <45896133+juliusvonkohout@users.noreply.github.com>

* Update kserve models web application manifests from v0.14.0-rc.0

Signed-off-by: juliusvonkohout <45896133+juliusvonkohout@users.noreply.github.com>

* update script

Signed-off-by: juliusvonkohout <45896133+juliusvonkohout@users.noreply.github.com>

* update script

Signed-off-by: juliusvonkohout <45896133+juliusvonkohout@users.noreply.github.com>

---------

Signed-off-by: juliusvonkohout <45896133+juliusvonkohout@users.noreply.github.com>
  • Loading branch information
juliusvonkohout authored Feb 17, 2025
1 parent 8401db5 commit e277a6e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ This repo periodically syncs all official Kubeflow components from their respect
| Volumes Web App | apps/volumes-web-app/upstream | [v1.10.0-rc.0](https://github.com/kubeflow/kubeflow/tree/v1.10.0-rc.0/components/crud-web-apps/volumes/manifests) |
| Katib | apps/katib/upstream | [v0.18.0-rc.0](https://github.com/kubeflow/katib/tree/v0.18.0-rc.0/manifests/v1beta1) |
| KServe | contrib/kserve/kserve | [v0.14.1](https://github.com/kserve/kserve/releases/tag/v0.14.1/install/v0.14.1) |
| KServe Models Web App | contrib/kserve/models-web-app | [0.13.0](https://github.com/kserve/models-web-app/tree/0.13.0/config) |
| KServe Models Web App | contrib/kserve/models-web-app | [v0.14.0-rc.0](https://github.com/kserve/models-web-app/tree/v0.14.0-rc.0/config) |
| Kubeflow Pipelines | apps/pipeline/upstream | [2.4.0](https://github.com/kubeflow/pipelines/tree/2.4.0/manifests/kustomize) |
| Kubeflow Model Registry | apps/model-registry/upstream | [v0.2.14](https://github.com/kubeflow/model-registry/tree/v0.2.14/manifests/kustomize) |

Expand Down
2 changes: 1 addition & 1 deletion contrib/kserve/models-web-app/base/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace: kserve
images:
- name: kserve/models-web-app
newName: kserve/models-web-app
newTag: v0.13.0-rc.0
newTag: v0.14.0-rc.0
configMapGenerator:
- literals:
- APP_DISABLE_AUTH="True"
Expand Down
6 changes: 3 additions & 3 deletions hack/synchronize-kserve-web-app-manifests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# repository, based on that local branch


COMMIT="0.13.0" # You can use tags as well
COMMIT="v0.14.0-rc.0" # You can use tags as well
SRC_DIR=${SRC_DIR:=/tmp/kserve-models-web-app}
BRANCH=${BRANCH:=synchronize-kserve-web-app-manifests-${COMMIT?}}

Expand All @@ -37,7 +37,7 @@ else
fi
echo "Checking out in $SRC_DIR to $COMMIT..."

# Checkout the Model Registry repository
# Checkout the Kserve Models Web Application repository
mkdir -p $SRC_DIR
cd $SRC_DIR || exit
if [ ! -d "models-web-app/.git" ]; then
Expand All @@ -54,7 +54,7 @@ if [ -n "$(git status --porcelain)" ]; then
echo "WARNING: You have uncommitted changes"
fi

echo "Copying admission-webhook manifests..."
echo "Copying manifests"
DST_DIR=$MANIFESTS_DIR/contrib/kserve/models-web-app
if [ -d "$DST_DIR" ]; then
rm -r "$DST_DIR"
Expand Down

0 comments on commit e277a6e

Please sign in to comment.