-
Notifications
You must be signed in to change notification settings - Fork 41
/
test.sh
executable file
·193 lines (158 loc) · 6.06 KB
/
test.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
#!/bin/bash
# Usage:
#
# ./test.sh <version> create-node-image <directory>
#
# Create a node image for testing <version> and save it under <directory>.
#
# Note: Use:
#
# ```sh
# docker ps -a | grep kube-build-data | awk '{ print $1 }' | xargs -r docker rm -f
# docker images -a | egrep '<none>|k8s|rancher|kindest|kube' | awk '{ print $3 }' | xargs -r -n1 docker image rm -f
# ```
#
# ... to clean up leftover gunk.
#
#
# ./test.sh <version> create-cluster <directory>
#
# Create a cluster for testing <version> using the image stored under <directory>.
#
#
# ./test.sh <version> delete-cluster
#
# Delete the cluster created with create-cluster.
#
#
# ./test.sh <version> run-tests
#
# Run the tests for <version>. Set K8S_RECORD=1 if you want to run the tests in record mode.
#
#
# <version> can be a single string like "1.50", or multiple versions separated by comma like "1.50,1.51",
# or the string "all" to mean all versions. If more than one version is specified, the corresponding command
# will be run against all specified versions in parallel.
set -euo pipefail
declare -A K8S_VERSIONS=(
['1.26']='1.26.15'
['1.27']='1.27.16'
['1.28']='1.28.15'
['1.29']='1.29.10'
['1.30']='1.30.6'
['1.31']='1.31.2'
)
# https://github.com/kubernetes-sigs/kind/releases
declare -A KIND_VERSIONS=(
['1.26']='0.25.0'
['1.27']='0.25.0'
['1.28']='0.25.0'
['1.29']='0.25.0'
['1.30']='0.25.0'
['1.31']='0.25.0'
)
case "$1" in
'all')
for v in "${!K8S_VERSIONS[@]}"; do
("$0" "$v" "$2" "${@:3}" 2>&1 | sed -e "s/^/[v$v] /") &
done
wait $(jobs -pr)
exit 0
;;
*','*)
for v in ${1//,/ }; do
("$0" "$v" "$2" "${@:3}" 2>&1 | sed -e "s/^/[v$v] /") &
done
wait $(jobs -pr)
exit 0
;;
'list-versions')
for v in "${!K8S_VERSIONS[@]}"; do
echo "$v"
done
exit 0
;;
*)
;;
esac
K8S_VERSION="${K8S_VERSIONS["$1"]}"
KIND_VERSION="${KIND_VERSIONS["$1"]}"
K8S_CLUSTER_NAME="v$1"
export CARGO_TARGET_DIR="$PWD/target-tests-v$1"
# Download the appropriate version of kind
mkdir -p ~/.local/bin
flock -x ~/.local/bin -c "
hash -r
if ! command -v 'kind-$KIND_VERSION' >/dev/null; then
curl -Lo ~/.local/bin/kind-$KIND_VERSION 'https://github.com/kubernetes-sigs/kind/releases/download/v$KIND_VERSION/kind-linux-amd64'
chmod +x ~/.local/bin/kind-$KIND_VERSION
fi
"
hash -r
if ! command -v "kind-$KIND_VERSION" >/dev/null; then
PATH="$PATH:$HOME/.local/bin"
fi
case "$2" in
'create-node-image')
if [ -f "$3/kindest-node-v$K8S_VERSION.tar.gz" ]; then
exit 0
fi
if ! docker image inspect "kindest/node:v$K8S_VERSION"; then
docker pull "kindest/node:v$K8S_VERSION" ||
"kind-$KIND_VERSION" build node-image --type release --image "kindest/node:v$K8S_VERSION" "v$K8S_VERSION"
fi
mkdir -p "$3"
docker image save --output "$3/kindest-node-v$K8S_VERSION.tar.gz" "kindest/node:v$K8S_VERSION"
docker image rm -f "kindest/node:v$K8S_VERSION"
;;
'create-cluster')
if ! ("kind-$KIND_VERSION" get clusters | grep -q "$K8S_CLUSTER_NAME"); then
docker image load --input "$3/kindest-node-v$K8S_VERSION.tar.gz"
# Run against a temporary kubeconfig instead of ~/.kube/config, because kind tries to lock the kubeconfig to prevent concurrent modification.
# But if it does fail to lock the file, it just fails instead of retrying.
#
# So we run it against a throwaway kubeconfig, then export the kubeconfig and merge it into ~/.kube/config afterwards with our own locking.
trap "rm -f '/tmp/kubeconfig-v$K8S_VERSION'" EXIT
rm -f "/tmp/kubeconfig-v$K8S_VERSION"
cluster_config_path="$(dirname "$0")/k8s-openapi-tests/cluster-configs/v$1.yaml"
if [ -f "$cluster_config_path" ]; then
"kind-$KIND_VERSION" create cluster \
--name "$K8S_CLUSTER_NAME" \
--image "kindest/node:v$K8S_VERSION" \
--kubeconfig "/tmp/kubeconfig-v$K8S_VERSION" \
--config "$cluster_config_path"
else
"kind-$KIND_VERSION" create cluster \
--name "$K8S_CLUSTER_NAME" \
--image "kindest/node:v$K8S_VERSION" \
--kubeconfig "/tmp/kubeconfig-v$K8S_VERSION"
fi
rm -f "/tmp/kubeconfig-v$K8S_VERSION"
fi
mkdir -p ~/.kube
flock -x ~/.kube -c "'kind-$KIND_VERSION' export kubeconfig --name '$K8S_CLUSTER_NAME'"
;;
'delete-cluster')
if ("kind-$KIND_VERSION" get clusters | grep -q "$K8S_CLUSTER_NAME"); then
# Run against a temporary kubeconfig instead of ~/.kube/config, because kind tries to lock the kubeconfig to prevent concurrent modification.
# But if it does fail to lock the file, it just fails instead of retrying.
#
# So we run it against a throwaway kubeconfig, then delete the cluster from the real ~/.kube/config afterwards with our own locking.
trap "rm -f '/tmp/kubeconfig-v$K8S_VERSION'" EXIT
cp ~/.kube/config "/tmp/kubeconfig-v$K8S_VERSION"
"kind-$KIND_VERSION" delete cluster --name "$K8S_CLUSTER_NAME" --kubeconfig "/tmp/kubeconfig-v$K8S_VERSION"
rm -f "/tmp/kubeconfig-v$K8S_VERSION"
fi
docker image rm -f "kindest/node:v$K8S_VERSION"
mkdir -p ~/.kube
flock -x ~/.kube -c "kubectl config delete-context 'kind-$K8S_CLUSTER_NAME'" || :
flock -x ~/.kube -c "kubectl config delete-cluster 'kind-$K8S_CLUSTER_NAME'" || :
flock -x ~/.kube -c "kubectl config unset 'users.kind-$K8S_CLUSTER_NAME'" || :
;;
'run-tests')
(cd k8s-openapi-tests; K8S_CONTEXT="kind-$K8S_CLUSTER_NAME" cargo test --features "test_v${1//./_}" "${@:3}")
(cd k8s-openapi-tests-macro-deps; cargo test --features "test_v${1//./_}" "${@:3}")
;;
*)
exit 1
esac