
This PS is intended to fix intermittent issue on some sites when database backup ondemand job fails to detect ON_DEMAND_POD when it is still creating. Also this PS has fixes related to using focal as base build image. tox.ini also fixed for compatibility with tox4. This PS also uplifts latest stable HTK version and changes openstackutility version to Yoga. Change-Id: I36e55091adf7dc68758fb9b7145cfa34776522d6
80 lines
2.1 KiB
Bash
Executable File
80 lines
2.1 KiB
Bash
Executable File
#!/bin/bash
|
|
# Copyright 2017 AT&T Intellectual Property. All other rights reserved.
|
|
#
|
|
# 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.
|
|
#
|
|
# Script to setup helm-toolkit and helm dep up the armada chart
|
|
#
|
|
|
|
set -eux
|
|
|
|
HELM=${1}
|
|
HELM_PIDFILE=${2}
|
|
SERVE_DIR=$(mktemp -d)
|
|
|
|
HTK_STABLE_COMMIT=${HTK_COMMIT:-"fa8916f5bcc8cbf064a387569e2630b7bbf0b49b"}
|
|
|
|
${HELM} init --client-only --skip-refresh --stable-repo-url "https://charts.helm.sh/stable"
|
|
|
|
if [[ -s ${HELM_PIDFILE} ]]; then
|
|
HELM_PID=$(cat "${HELM_PIDFILE}")
|
|
if ps "${HELM_PID}"; then
|
|
kill "${HELM_PID}"
|
|
sleep 0.5
|
|
if ps "${HELM_PID}"; then
|
|
echo Failed to terminate Helm, PID = "${HELM_PID}"
|
|
exit 1
|
|
fi
|
|
fi
|
|
fi
|
|
|
|
${HELM} serve & > /dev/null
|
|
HELM_PID=${!}
|
|
echo Started Helm, PID = "${HELM_PID}"
|
|
echo "${HELM_PID}" > "${HELM_PIDFILE}"
|
|
|
|
set +x
|
|
if [[ -z $(curl -s 127.0.0.1:8879 | grep 'Helm Repository') ]]; then
|
|
while [[ -z $(curl -s 127.0.0.1:8879 | grep 'Helm Repository') ]]; do
|
|
sleep 1
|
|
echo "Waiting for Helm Repository"
|
|
done
|
|
else
|
|
echo "Helm serve already running"
|
|
fi
|
|
set -x
|
|
|
|
if ${HELM} repo list | grep -q "^stable" ; then
|
|
${HELM} repo remove stable
|
|
fi
|
|
|
|
${HELM} repo add local http://localhost:8879/charts
|
|
|
|
|
|
#OSH Makefile is bugged, so ensure helm is in the path
|
|
if [[ ${HELM} != "helm" ]]
|
|
then
|
|
export PATH=${PATH}:$(dirname ${HELM})
|
|
fi
|
|
|
|
{
|
|
cd "${SERVE_DIR}"
|
|
rm -rf openstack-helm-infra
|
|
git clone https://git.openstack.org/openstack/openstack-helm-infra.git || true
|
|
cd openstack-helm-infra
|
|
git reset --hard "${HTK_STABLE_COMMIT}"
|
|
make helm-toolkit
|
|
}
|
|
|
|
# rm -rf "${SERVE_DIR}"
|