145 lines
5.1 KiB
Bash
Executable File
145 lines
5.1 KiB
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Copyright 2018 The Kubeflow Authors
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
set -ex
|
|
|
|
usage()
|
|
{
|
|
echo "usage: upgrade-tests.sh
|
|
[--platform the deployment platform. Valid values are: [gcp, minikube]. Default is gcp.]
|
|
[--project the gcp project. Default is ml-pipeline-test. Only used when platform is gcp.]
|
|
[--test_result_bucket the gcs bucket that argo workflow store the result to. Default is ml-pipeline-test
|
|
[--test_result_folder the gcs folder that argo workflow store the result to. Always a relative directory to gs://<gs_bucket>/[PULL_SHA]]
|
|
[--timeout timeout of the tests in seconds. Default is 1800 seconds. ]
|
|
[--test_v2_api run test using v2 API]
|
|
[-h help]"
|
|
}
|
|
|
|
PLATFORM=gcp
|
|
PROJECT=ml-pipeline-test
|
|
TEST_RESULT_BUCKET=ml-pipeline-test
|
|
TIMEOUT_SECONDS=2700 # 45 minutes
|
|
NAMESPACE=kubeflow
|
|
WORKFLOW_FILE=e2e_test_gke_v2.yaml
|
|
|
|
while [ "$1" != "" ]; do
|
|
case $1 in
|
|
--platform ) shift
|
|
PLATFORM=$1
|
|
;;
|
|
--project ) shift
|
|
PROJECT=$1
|
|
;;
|
|
--test_result_bucket ) shift
|
|
TEST_RESULT_BUCKET=$1
|
|
;;
|
|
--test_result_folder ) shift
|
|
TEST_RESULT_FOLDER=$1
|
|
;;
|
|
--timeout ) shift
|
|
TIMEOUT_SECONDS=$1
|
|
;;
|
|
--test_v2_api )
|
|
TEST_V2_API=true
|
|
;;
|
|
-h | --help ) usage
|
|
exit
|
|
;;
|
|
* ) usage
|
|
exit 1
|
|
esac
|
|
shift
|
|
done
|
|
|
|
# This is merged commit's SHA.
|
|
COMMIT_SHA="$(git rev-parse HEAD)"
|
|
|
|
# Paths are using commit sha, instead of pull sha, because tests may be rerun with the same PR
|
|
# commit, but merged on a different master version. When this happens, we cannot reuse cached
|
|
# results on the previous test run.
|
|
GCR_IMAGE_BASE_DIR=gcr.io/${PROJECT}/${COMMIT_SHA}
|
|
TEST_RESULTS_GCS_DIR=gs://${TEST_RESULT_BUCKET}/${COMMIT_SHA}/${TEST_RESULT_FOLDER}
|
|
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" > /dev/null && pwd)"
|
|
# exclude SDK release tags
|
|
LATEST_RELEASED_TAG=$(git tag --sort=v:refname | grep -v "sdk-" | tail -1)
|
|
|
|
# Configure `time` command output format.
|
|
TIMEFORMAT="[test-timing] It took %lR."
|
|
|
|
echo "upgrade test starts"
|
|
if [ -n "$PULL_PULL_SHA" ]; then
|
|
echo "PR commit is ${PULL_PULL_SHA}"
|
|
fi
|
|
time source "${DIR}/test-prep.sh"
|
|
echo "test env prepared"
|
|
|
|
time source "${DIR}/build-images.sh"
|
|
echo "KFP images cloudbuild jobs submitted"
|
|
|
|
time TEST_CLUSTER_PREFIX="upgrade" \
|
|
source "${DIR}/deploy-cluster.sh"
|
|
echo "cluster deployed"
|
|
|
|
# Install Argo CLI and test-runner service account
|
|
time source "${DIR}/install-argo.sh"
|
|
echo "argo installed"
|
|
|
|
time KFP_DEPLOY_RELEASE=true source "${DIR}/deploy-pipeline-lite.sh"
|
|
echo "KFP standalone of latest release deployed"
|
|
|
|
if [ -n "$TEST_V2_API" ]; then
|
|
TEST_PREPARATION_ENTRYPOINT=upgrade-test-preparation-v2
|
|
TEST_VERIFICATION_ENTRYPOINT=upgrade-test-verification-v2
|
|
else
|
|
TEST_PREPARATION_ENTRYPOINT=upgrade-test-preparation
|
|
TEST_VERIFICATION_ENTRYPOINT=upgrade-test-verification
|
|
fi
|
|
|
|
|
|
echo "submitting argo workflow to setup test env before upgrade..."
|
|
ARGO_WORKFLOW=`argo submit ${DIR}/${WORKFLOW_FILE} \
|
|
--entrypoint ${TEST_PREPARATION_ENTRYPOINT} \
|
|
-p image-build-context-gcs-uri="$remote_code_archive_uri" \
|
|
${IMAGE_BUILDER_ARG} \
|
|
-p target-image-prefix="${GCR_IMAGE_BASE_DIR}/" \
|
|
-p test-results-gcs-dir="${TEST_RESULTS_GCS_DIR}" \
|
|
-n ${NAMESPACE} \
|
|
--serviceaccount test-runner \
|
|
-o name
|
|
`
|
|
time source "${DIR}/check-argo-status.sh"
|
|
echo "upgrade test preparation workflow completed"
|
|
|
|
time source "${DIR}/check-build-image-status.sh"
|
|
echo "KFP images built"
|
|
|
|
time source "${DIR}/deploy-pipeline-lite.sh"
|
|
echo "KFP standalone of commit ${COMMIT_SHA} deployed"
|
|
|
|
echo "submitting argo workflow to verify test env after upgrade..."
|
|
ARGO_WORKFLOW=`argo submit ${DIR}/${WORKFLOW_FILE} \
|
|
--entrypoint ${TEST_VERIFICATION_ENTRYPOINT} \
|
|
-p image-build-context-gcs-uri="$remote_code_archive_uri" \
|
|
${IMAGE_BUILDER_ARG} \
|
|
-p target-image-prefix="${GCR_IMAGE_BASE_DIR}/" \
|
|
-p test-results-gcs-dir="${TEST_RESULTS_GCS_DIR}" \
|
|
-n ${NAMESPACE} \
|
|
--serviceaccount test-runner \
|
|
-o name
|
|
`
|
|
time source "${DIR}/check-argo-status.sh"
|
|
echo "upgrade test verification workflow completed"
|