-
Notifications
You must be signed in to change notification settings - Fork 430
/
Copy pathutil.sh
executable file
·111 lines (102 loc) · 4.54 KB
/
util.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
#!/usr/bin/env bash
# Copyright 2021 The Kubernetes 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 -o errexit
set -o nounset
set -o pipefail
CURL_RETRIES=3
capz::util::get_latest_ci_version() {
release="${1}"
ci_version_url="https://dl.k8s.io/ci/latest-${release}.txt"
if ! curl --retry "${CURL_RETRIES}" -fL "${ci_version_url}" > /dev/null; then
ci_version_url="https://dl.k8s.io/ci/latest.txt"
fi
curl --retry "${CURL_RETRIES}" -sSL "${ci_version_url}"
}
capz::util::should_build_kubernetes() {
if [[ -n "${TEST_K8S:-}" ]]; then
echo "true" && return
fi
# JOB_TYPE, REPO_OWNER, and REPO_NAME are environment variables set by a prow job -
# https://github.com/kubernetes/test-infra/blob/master/prow/jobs.md#job-environment-variables
if [[ "${JOB_TYPE:-}" == "presubmit" ]] && [[ "${REPO_OWNER:-}/${REPO_NAME:-}" == "kubernetes/kubernetes" ]]; then
echo "true" && return
fi
echo "false"
}
capz::util::should_build_ccm() {
# TEST_CCM is an environment variable set by a prow job to indicate that the CCM should be built and tested.
if [[ -n "${TEST_CCM:-}" ]]; then
echo "true" && return
fi
# If testing a custom Kubernetes version, CCM should be built.
if [[ "$(capz::util::should_build_kubernetes)" == "true" ]]; then
echo "true" && return
fi
# If using Kubernetes CI artifacts, CCM should be built.
if [[ "${E2E_ARGS:-}" == "-kubetest.use-ci-artifacts" ]]; then
echo "true" && return
fi
# If the Kubernetes version contains "latest", CCM should be built.
if [[ "${KUBERNETES_VERSION:-}" =~ "latest" ]]; then
echo "true" && return
fi
echo "false"
}
# all test regions must support AvailabilityZones
capz::util::get_random_region() {
local REGIONS=("australiaeast" "canadacentral" "francecentral" "germanywestcentral" "switzerlandnorth" "uksouth" )
echo "${REGIONS[${RANDOM} % ${#REGIONS[@]}]}"
}
# all regions below must have GPU availability for the chosen GPU VM SKU
capz::util::get_random_region_gpu() {
local REGIONS=("eastus" "eastus2" "uksouth" "westeurope" "westus2")
echo "${REGIONS[${RANDOM} % ${#REGIONS[@]}]}"
}
# all regions below must support ExtendedLocation
capz::util::get_random_region_edgezone() {
local REGIONS=("canadacentral")
echo "${REGIONS[${RANDOM} % ${#REGIONS[@]}]}"
}
capz::util::generate_ssh_key() {
# Generate SSH key.
AZURE_SSH_PUBLIC_KEY_FILE=${AZURE_SSH_PUBLIC_KEY_FILE:-""}
if [ -z "${AZURE_SSH_PUBLIC_KEY_FILE}" ]; then
echo "generating sshkey for e2e"
AZURE_SSH_KEY="${PWD}"/.sshkey
# This is required if e2e.test is run with --provider=skeleton. This option is used when
# running Windows e2e tests against a CAPZ cluster to ensure no extra Azure resources are
# created by e2e.test.
# Ref: https://github.com/kubernetes-sigs/windows-testing/blob/be73dd57a551be4f9527e7a3a3e6491e86cae6d2/capz/run-capz-e2e.sh#L300
# Further more, --provider is what decides which SSH environment variable is used to create
# the signer needed to SSH into nodes.
# Ref: https://github.com/kubernetes/kubernetes/blob/41890534532931742770a7dc98f78bcdc59b1a6f/test/e2e/framework/ssh/ssh.go#L58
KUBE_SSH_KEY="${AZURE_SSH_KEY}"
rm -f "${AZURE_SSH_KEY}" 2>/dev/null
ssh-keygen -t rsa -b 2048 -f "${AZURE_SSH_KEY}" -N '' 1>/dev/null
AZURE_SSH_PUBLIC_KEY_FILE="${AZURE_SSH_KEY}.pub"
# This is needed to run tests that required SSH access to nodes
export AZURE_SSH_KEY
export KUBE_SSH_KEY
fi
AZURE_SSH_PUBLIC_KEY_B64=$(base64 < "${AZURE_SSH_PUBLIC_KEY_FILE}" | tr -d '\r\n')
export AZURE_SSH_PUBLIC_KEY_B64
# Windows sets the public key via cloudbase-init which take the raw text as input
AZURE_SSH_PUBLIC_KEY=$(tr -d '\r\n' < "${AZURE_SSH_PUBLIC_KEY_FILE}")
export AZURE_SSH_PUBLIC_KEY
}
capz::util::ensure_azure_envs() {
: "${AZURE_SUBSCRIPTION_ID:?Environment variable empty or not defined.}"
: "${AZURE_TENANT_ID:?Environment variable empty or not defined.}"
}