
1. There is an ocassional timing issue when container logs are unavailabile at certain points in the crash loop at the same time the gate script tries to request them. The gate will now retry this operation, instead of terminating right away with failure. 2. Re-enable uamlite security context so that useradd operations would succeed. 3. Change apt pinning tests to use a version of the package that is available in the apt repo. Upstream repos change, so we should not pin to an explicit version that will be removed in the future and break the gate. 4. Update helm version to 2.14.1 to sync with openstack-helm-infra 5. Fix divingbell build script: git --depth=1 incompatible with explicit non-master commit checkout 6. Enhance overrides test case #7 to test for the issue identified in [0]. 7. Change hostname scheduling to match minikube hostname now configured by OSH gate, instead of using the node's actual hostname 8. Re-enable gate voting [0] https://storyboard.openstack.org/#!/story/2005936 Depends-On: https://review.opendev.org/671875/ Change-Id: Iad983ce363711e16ccd54e663c23d30a4a6a1177
45 lines
1.2 KiB
Bash
Executable File
45 lines
1.2 KiB
Bash
Executable File
#!/bin/bash
|
|
# Copyright 2018 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.
|
|
#
|
|
|
|
set -x
|
|
|
|
HELM=$1
|
|
HELM_ARTIFACT_URL=${HELM_ARTIFACT_URL:-"https://storage.googleapis.com/kubernetes-helm/helm-v2.14.1-linux-amd64.tar.gz"}
|
|
|
|
|
|
function install_helm_binary {
|
|
if [[ -z "${HELM}" ]]
|
|
then
|
|
echo "No Helm binary target location."
|
|
exit -1
|
|
fi
|
|
|
|
if [[ -w "$(dirname ${HELM})" ]]
|
|
then
|
|
TMP_DIR=${BUILD_DIR:-$(mktemp -d)}
|
|
curl -o "${TMP_DIR}/helm.tar.gz" "${HELM_ARTIFACT_URL}"
|
|
pushd ${TMP_DIR}
|
|
tar -xvzf helm.tar.gz
|
|
cp "linux-amd64/helm" "helm"
|
|
popd
|
|
else
|
|
echo "Cannot write to ${HELM}"
|
|
exit -1
|
|
fi
|
|
}
|
|
|
|
install_helm_binary
|