82 lines
2.5 KiB
Bash
Executable File
82 lines
2.5 KiB
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Copyright (c) 2012-2021 Red Hat, Inc.
|
|
# This program and the accompanying materials are made
|
|
# available under the terms of the Eclipse Public License 2.0
|
|
# which is available at https://www.eclipse.org/legal/epl-2.0/
|
|
#
|
|
# SPDX-License-Identifier: EPL-2.0
|
|
#
|
|
# Contributors:
|
|
# Red Hat, Inc. - initial API and implementation
|
|
|
|
if [ -z "${OPERATOR_REPO}" ]; then
|
|
SCRIPT=$(readlink -f "$0")
|
|
OPERATOR_REPO=$(dirname "$(dirname "$SCRIPT")");
|
|
fi
|
|
|
|
source ${OPERATOR_REPO}/olm/check-yq.sh
|
|
|
|
platform=$1
|
|
if [ "${platform}" == "" ]; then
|
|
echo "Please specify platform ('openshift' or 'kubernetes') as the first argument."
|
|
echo ""
|
|
echo "testUpdate.sh <platform> [<channel>] [<namespace>]"
|
|
exit 1
|
|
fi
|
|
|
|
channel=$2
|
|
if [ "${channel}" == "" ]; then
|
|
channel="nightly"
|
|
fi
|
|
|
|
namespace=$3
|
|
if [ "${namespace}" == "" ]; then
|
|
namespace="eclipse-che-preview-test"
|
|
fi
|
|
|
|
init() {
|
|
IMAGE_REGISTRY_HOST=${IMAGE_REGISTRY_HOST:-quay.io}
|
|
IMAGE_REGISTRY_USER_NAME=${IMAGE_REGISTRY_USER_NAME:-eclipse}
|
|
export CATALOG_IMAGENAME="${IMAGE_REGISTRY_HOST}/${IMAGE_REGISTRY_USER_NAME}/eclipse-che-${platform}-opm-catalog:preview"
|
|
|
|
source "${OPERATOR_REPO}/olm/olm.sh"
|
|
|
|
OPM_BUNDLE_DIR=$(getBundlePath "${platform}" "${channel}")
|
|
CSV_FILE_PATH="${OPM_BUNDLE_DIR}/manifests/che-operator.clusterserviceversion.yaml"
|
|
}
|
|
|
|
run() {
|
|
createNamespace "${namespace}"
|
|
|
|
installOperatorMarketPlace
|
|
installCatalogSource "${platform}" "${namespace}" "${CATALOG_IMAGENAME}"
|
|
|
|
getBundleListFromCatalogSource "${platform}" "${namespace}"
|
|
getPreviousCSVInfo "${channel}"
|
|
getLatestCSVInfo "${channel}"
|
|
|
|
echo "[INFO] Test update from version: ${PREVIOUS_CSV_BUNDLE_IMAGE} to: ${LATEST_CSV_BUNDLE_IMAGE}"
|
|
|
|
if [ "${PREVIOUS_CSV_BUNDLE_IMAGE}" == "${LATEST_CSV_BUNDLE_IMAGE}" ]; then
|
|
echo "[ERROR] Nothing to update. OLM channel '${channel}' contains only one bundle."
|
|
exit 1
|
|
fi
|
|
|
|
forcePullingOlmImages "${namespace}" "${PREVIOUS_CSV_BUNDLE_IMAGE}"
|
|
forcePullingOlmImages "${namespace}" "${LATEST_CSV_BUNDLE_IMAGE}"
|
|
|
|
subscribeToInstallation "${platform}" "${namespace}" "${channel}" "${PREVIOUS_CSV_NAME}"
|
|
installPackage "${platform}" "${namespace}"
|
|
echo -e "\u001b[32m Installation of the previous che-operator version: ${PREVIOUS_CSV_NAME} successfully completed \u001b[0m"
|
|
applyCRCheCluster "${platform}" "${namespace}" "${CSV_FILE_PATH}"
|
|
waitCheServerDeploy "${namespace}"
|
|
|
|
installPackage "${platform}" "${namespace}"
|
|
echo -e "\u001b[32m Installation of the latest che-operator version: ${LATEST_CSV_NAME} successfully completed \u001b[0m"
|
|
}
|
|
|
|
init
|
|
run
|
|
echo -e "\u001b[32m Done. \u001b[0m"
|