You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.6 KiB
46 lines
1.6 KiB
#!/usr/bin/env bash
|
|
# This script helps to create a PR to update the KServe manifests
|
|
|
|
SCRIPT_DIRECTORY=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
|
source "${SCRIPT_DIRECTORY}/library.sh"
|
|
|
|
setup_error_handling
|
|
|
|
COMPONENT_NAME="kserve"
|
|
REPOSITORY_NAME="kserve/kserve"
|
|
REPOSITORY_URL="https://github.com/kserve/kserve.git"
|
|
KSERVE_VERSION="v0.15.0"
|
|
COMMIT="v0.15.0"
|
|
REPOSITORY_DIRECTORY="kserve"
|
|
SOURCE_DIRECTORY=${SOURCE_DIRECTORY:=/tmp/${COMPONENT_NAME}}
|
|
BRANCH_NAME=${BRANCH_NAME:=synchronize-${COMPONENT_NAME}-manifests-${COMMIT?}}
|
|
|
|
# Path configurations
|
|
MANIFESTS_DIRECTORY=$(dirname $SCRIPT_DIRECTORY)
|
|
SOURCE_MANIFESTS_PATH="install/${KSERVE_VERSION}"
|
|
DESTINATION_MANIFESTS_PATH="apps/${COMPONENT_NAME}/${COMPONENT_NAME}"
|
|
|
|
# README update patterns
|
|
SOURCE_TEXT="\[.*\](https://github.com/${REPOSITORY_NAME}/releases/tag/.*)"
|
|
DESTINATION_TEXT="\[${COMMIT}\](https://github.com/${REPOSITORY_NAME}/releases/tag/${COMMIT}/install/${KSERVE_VERSION})"
|
|
|
|
create_branch "$BRANCH_NAME"
|
|
|
|
clone_and_checkout "$SOURCE_DIRECTORY" "$REPOSITORY_URL" "$REPOSITORY_DIRECTORY" "$COMMIT"
|
|
|
|
echo "Copying kserve manifests..."
|
|
DESTINATION_DIRECTORY=$MANIFESTS_DIRECTORY/$DESTINATION_MANIFESTS_PATH
|
|
if [ -d "$DESTINATION_DIRECTORY" ]; then
|
|
rm -rf "$DESTINATION_DIRECTORY"/kserve*
|
|
fi
|
|
cp $SOURCE_DIRECTORY/$REPOSITORY_DIRECTORY/$SOURCE_MANIFESTS_PATH/* $DESTINATION_DIRECTORY -r
|
|
|
|
|
|
update_readme "$MANIFESTS_DIRECTORY" "$SOURCE_TEXT" "$DESTINATION_TEXT"
|
|
|
|
commit_changes "$MANIFESTS_DIRECTORY" "Update ${REPOSITORY_NAME} manifests from ${KSERVE_VERSION}" \
|
|
"apps/${COMPONENT_NAME}" \
|
|
"README.md" \
|
|
"scripts"
|
|
|
|
echo "Synchronization completed successfully."
|
|
|