Skip to content

Commit

Permalink
Merge pull request kubernetes-csi#158 from pohly/fix-deployment-selec…
Browse files Browse the repository at this point in the history
…tion

prow.sh: more flexible CSI_PROW_DEPLOYMENT
  • Loading branch information
k8s-ci-robot committed May 25, 2021
2 parents 2b0e6db + 61538bb commit 204bc89
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions prow.sh
Expand Up @@ -654,22 +654,30 @@ delete_cluster_inside_prow_job() {
# Looks for the deployment as specified by CSI_PROW_DEPLOYMENT and CSI_PROW_KUBERNETES_VERSION
# in the given directory.
find_deployment () {
local dir file
local dir file k8sver
dir="$1"

# Fixed deployment name? Use it if it exists, otherwise fail.
# major/minor without release- prefix.
k8sver="$(echo "${CSI_PROW_KUBERNETES_VERSION}" | sed -e 's/\([0-9]*\)\.\([0-9]*\).*/\1.\2/' -e 's/^release-//')"

# Fixed deployment name? Use it if it exists.
if [ "${CSI_PROW_DEPLOYMENT}" ]; then
file="$dir/${CSI_PROW_DEPLOYMENT}/deploy.sh"
if ! [ -e "$file" ]; then
if [ -e "$file" ]; then
echo "$file"
return 0
fi

# CSI_PROW_DEPLOYMENT=kubernetes-x.yy is handled below with a fallback
# to kubernetes-latest. If it is something else, then fail here.
if ! echo "${CSI_PROW_DEPLOYMENT}" | grep -q "^kubernetes-${k8sver}\$"; then
return 1
fi
echo "$file"
return 0
fi

# Ignore: See if you can use ${variable//search/replace} instead.
# shellcheck disable=SC2001
file="$dir/kubernetes-$(echo "${CSI_PROW_KUBERNETES_VERSION}" | sed -e 's/\([0-9]*\)\.\([0-9]*\).*/\1.\2/')${CSI_PROW_DEPLOYMENT_SUFFIX}/deploy.sh"
file="$dir/kubernetes-${k8sver}${CSI_PROW_DEPLOYMENT_SUFFIX}/deploy.sh"
if ! [ -e "$file" ]; then
file="$dir/kubernetes-latest${CSI_PROW_DEPLOYMENT_SUFFIX}/deploy.sh"
if ! [ -e "$file" ]; then
Expand Down

0 comments on commit 204bc89

Please sign in to comment.