generated from kubernetes/kubernetes-template-project
-
Notifications
You must be signed in to change notification settings - Fork 64
/
kubevirtci
executable file
·455 lines (378 loc) · 14.9 KB
/
kubevirtci
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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
#!/bin/bash
set -e
export KUBEVIRT_PROVIDER=${KUBEVIRT_PROVIDER:-k8s-1.30}
export TENANT_CLUSTER_KUBERNETES_VERSION=${TENANT_CLUSTER_KUBERNETES_VERSION:-v1.31.1}
export KUBEVIRTCI_TAG=${KUBEVIRTCI_TAG:-2405151527-09bcd71}
export KUBEVIRT_DEPLOY_PROMETHEUS=false
export KUBEVIRT_DEPLOY_CDI=false
export KUBEVIRT_NUM_NODES=${KUBEVIRT_NUM_NODES:-1}
export KUBEVIRT_MEMORY_SIZE=${KUBEVIRT_MEMORY_SIZE:-15360M}
export KUBEVIRT_DEPLOY_CDI="true"
export METALLB_VERSION="v0.14.5"
export CAPK_RELEASE_VERSION="v0.1.0-rc.0"
export CAPK_TEMPLATE=${CAPK_TEMPLATE:-cluster-template-kccm.yaml}
export CLUSTERCTL_VERSION="v1.2.4"
export CALICO_VERSION="v3.26.3"
export KUBEVIRT_VERSION="v1.2.1"
export NODE_VM_IMAGE_TEMPLATE=${NODE_VM_IMAGE_TEMPLATE:-quay.io/capk/ubuntu-2204-container-disk:${TENANT_CLUSTER_KUBERNETES_VERSION}}
KUBEVIRTCI_REPO='https://github.com/kubevirt/kubevirtci.git'
KUBEVIRTCI_PATH="${PWD}/.kubevirtci/"
_default_bin_path=./hack/tools/bin
_default_tmp_path=./hack/tools/bin/tmp
_default_clusterctl_path=./hack/tools/bin/clusterctl
_default_virtctl_path=./hack/tools/bin/virtctl
export CLUSTERCTL_PATH=${CLUSTERCTL_PATH:-${_default_clusterctl_path}}
export TENANT_CLUSTER_NAME=${TENANT_CLUSTER_NAME:-kvcluster}
export TENANT_CLUSTER_NAMESPACE=${TENANT_CLUSTER_NAMESPACE:-kvcluster}
_kubectl=${KUBEVIRTCI_PATH}/cluster-up/kubectl.sh
_ssh_infra=${KUBEVIRTCI_PATH}/cluster-up/ssh.sh
_action=$1
shift
function kubevirtci::usage() {
echo "Usage:
./kubevirtci <cammand>
Commands:
up Start a cluster with kubevirt, cert-manager and capi
sync Build and deploy current capk from source (must be executed from within capk source tree)
down Destroy the cluster
refresh Build current capk and trigger creating new capk pods
clean-cache Removes all files cached by kubevirtci
kubeconfig Return the kubeconfig of the cluster
kubectl <kubectl options> Interact with the cluster
kubectl-tenant <kubectl options> Interact with the tenant cluster
virtctl <virtctl options> Run virtctl commands against the cluster
clusterctl <clusterctl options> Run clusterctl commands against the cluster
install-capk Installs capk from published release manifests
install-metallb Installs metallb into the infra cluster
install-calico Installs calico cni into tenant cluster
curl-lb <lb name> [lb namespace] Curls lb service within infra cluster
ssh-infra <node name> SSH into one of the infra nodes (like node01)
ssh-tenant <vmi> [vmi namespace] SSH into one of the guest nodes
create-cluster Create new kubernetes tenant cluster
create-external-cluster Create new kubernetes tenant cluster simulated as running on external infra
destroy-cluster Destroy the tenant cluster and resources
help Print usage
"
}
function kubevirtci::kubeconfig() {
${KUBEVIRTCI_PATH}/cluster-up/kubeconfig.sh
}
function kubevirtci::_get_repo() {
git --git-dir "${KUBEVIRTCI_PATH}/.git" remote get-url origin
}
function kubevirtci::_get_tag() {
git -C ${KUBEVIRTCI_PATH} describe --tags
}
function kubevirtci::ensure() {
# Remove cloned kubevirtci repository if it does not match the requested one
if [ -d ${KUBEVIRTCI_PATH} ]; then
if [ $(kubevirtci::_get_repo) != ${KUBEVIRTCI_REPO} -o $(kubevirtci::_get_tag) != ${KUBEVIRTCI_TAG} ]; then
rm -rf ${KUBEVIRTCI_PATH}
fi
fi
if [ ! -d ${KUBEVIRTCI_PATH} ]; then
git clone ${KUBEVIRTCI_REPO} ${KUBEVIRTCI_PATH}
(
cd ${KUBEVIRTCI_PATH}
git checkout ${KUBEVIRTCI_TAG}
)
fi
export KUBECONFIG=$(kubevirtci::kubeconfig)
kubevirtci::ensure_tools
}
function kubevirtci::ensure_tools() {
mkdir -p ./hack/tools/bin/
if [ ! -f "${_default_clusterctl_path}" ]; then
echo >&2 "Downloading clusterctl version ${CLUSTERCTL_VERSION}..."
curl -L https://github.com/kubernetes-sigs/cluster-api/releases/download/${CLUSTERCTL_VERSION}/clusterctl-linux-amd64 -o ${_default_clusterctl_path}
chmod u+x ${_default_clusterctl_path}
fi
if [ ! -f "${_default_virtctl_path}" ]; then
echo >&2 "Downloading virtctl ..."
curl -L https://github.com/kubevirt/kubevirt/releases/download/${KUBEVIRT_VERSION}/virtctl-${KUBEVIRT_VERSION}-linux-amd64 -o ${_default_virtctl_path}
chmod u+x ${_default_virtctl_path}
fi
}
function kubevirtci::up() {
"${KUBEVIRTCI_PATH}/cluster-up/up.sh"
export KUBECONFIG=$(kubevirtci::kubeconfig)
echo "installing kubevirt..."
${_kubectl} apply -f "https://github.com/kubevirt/kubevirt/releases/download/${KUBEVIRT_VERSION}/kubevirt-operator.yaml"
curl -L https://github.com/kubevirt/kubevirt/releases/download/${KUBEVIRT_VERSION}/kubevirt-cr.yaml \
| sed -e "s|\( \+\)\(featureGates:\).*$|\1\2\n\1- LiveMigration\n\1- Passt|" \
| ${_kubectl} apply -f -
echo "installing capi..."
cat << EOF > ${_default_bin_path}/clusterctl_config.yaml
---
cert-manager:
url: "https://github.com/cert-manager/cert-manager/releases/latest/cert-manager.yaml"
EOF
$CLUSTERCTL_PATH init -v 4 --config=${_default_bin_path}/clusterctl_config.yaml
echo 'Applying recommended node configuration for Passt binding'
for node in $(${_kubectl} get nodes --no-headers | awk '{print $1}'); do
${_ssh_infra} ${node} -- sudo sysctl -w net.core.rmem_max=33554432
${_ssh_infra} ${node} -- sudo sysctl -w net.core.wmem_max=33554432
${_ssh_infra} ${node} -- sudo sysctl -w fs.file-max=9223372036854775807
done
echo "waiting for kubevirt to become ready, this can take a few minutes. You can safely abort this step, the cluster is ready ..."
${_kubectl} -n kubevirt wait kv kubevirt --for condition=Available --timeout=5m
}
function kubevirtci::down() {
"${KUBEVIRTCI_PATH}/cluster-up/down.sh"
}
function kubevirtci::build() {
export REGISTRY="127.0.0.1:$(${KUBEVIRTCI_PATH}/cluster-up/cli.sh ports registry)"
if curl --unix-socket "/run/podman/podman.sock" http://d/v3.0.0/libpod/info >/dev/null 2>&1; then
cat <<EOF >> /etc/containers/registries.conf
[[registry]]
location = "$REGISTRY"
insecure = true
EOF
fi
make docker-build
make docker-push
}
function kubevirtci::ssh_tenant() {
vmi_name=$1
vmi_namespace=${2:-$TENANT_CLUSTER_NAMESPACE}
mkdir -p $_default_tmp_path
echo "vmi $vmi_name namespace $vmi_namespace"
${_kubectl} get secret -n $TENANT_CLUSTER_NAMESPACE kvcluster-ssh-keys -o jsonpath='{.data}' | grep key | awk -F '"' '{print $4}' | base64 -d > ${_default_tmp_path}/key.pem
chmod 600 ${_default_tmp_path}/key.pem
ssh -o IdentitiesOnly=yes -o "ProxyCommand=$_default_virtctl_path port-forward --stdio=true $vmi_name.$vmi_namespace 22" capk@$vmi_name.$vmi_namespace -i ${_default_tmp_path}/key.pem
rm ${_default_tmp_path}/key.pem
}
function kubevirtci::refresh() {
${_kubectl} delete pods --all -n capk-system
}
function kubevirtci::install() {
export MANIFEST_IMG="registry:5000/capk-manager-amd64"
export MANIFEST_TAG="dev"
make generate-manifests
${_kubectl} kustomize config/kubevirtci | ${_kubectl} delete -f - || true
${_kubectl} kustomize config/kubevirtci | ${_kubectl} apply -f -
${_kubectl} wait -n capk-system --for=condition=Available=true deployment/capk-controller-manager --timeout=10m
}
function kubevirtci::generate_kubeconfig() {
make clusterkubevirtadm-linux
bin/clusterkubevirtadm-linux-amd64 apply credentials --namespace ${TENANT_CLUSTER_NAMESPACE}
bin/clusterkubevirtadm-linux-amd64 get kubeconfig --namespace=${TENANT_CLUSTER_NAMESPACE} --output-kubeconfig=kubeconfig-e2e
sed -i -r 's/127.0.0.1:[0-9]+/192.168.66.101:6443/g' kubeconfig-e2e
}
function kubevirtci::destroy_cluster() {
${_kubectl} delete cluster -n ${TENANT_CLUSTER_NAMESPACE} ${TENANT_CLUSTER_NAME} --ignore-not-found
}
function kubevirtci::create_cluster() {
export CRI_PATH="/var/run/containerd/containerd.sock"
template=templates/${CAPK_TEMPLATE}
if [ ! -f $template ]; then
template="https://github.com/kubernetes-sigs/cluster-api-provider-kubevirt/blob/main/templates/cluster-template.yaml"
fi
echo "Using cluster template $template"
$CLUSTERCTL_PATH generate cluster ${TENANT_CLUSTER_NAME} --target-namespace ${TENANT_CLUSTER_NAMESPACE} --kubernetes-version ${TENANT_CLUSTER_KUBERNETES_VERSION} --control-plane-machine-count=1 --worker-machine-count=1 --from $template | ${_kubectl} apply -f -
echo "Wait for tenant cluster to be ready"
${_kubectl} wait cluster -n kvcluster kvcluster --for=condition=Ready --timeout=5m
echo "Wait for tenant cluster kubernetes apiserver up"
kubevirtci::retry_until_success kubevirtci::kubectl_tenant get pods -n kube-system
echo "Waiting for worker VM in tenant cluster namespace"
kubevirtci::retry_until_success kubevirtci::vm_matches "${TENANT_CLUSTER_NAME}-md-"
}
function kubevirtci::create_external_cluster() {
export CRI_PATH="/var/run/containerd/containerd.sock"
${_kubectl} delete secret external-infra-kubeconfig -n capk-system --ignore-not-found
${_kubectl} create secret generic external-infra-kubeconfig -n capk-system --from-file=kubeconfig=kubeconfig-e2e --from-literal=namespace=${TENANT_CLUSTER_NAMESPACE}
$CLUSTERCTL_PATH generate cluster ${TENANT_CLUSTER_NAME} --target-namespace ${TENANT_CLUSTER_NAMESPACE} --kubernetes-version ${TENANT_CLUSTER_KUBERNETES_VERSION} --control-plane-machine-count=1 --worker-machine-count=1 --from templates/cluster-template-ext-infra-kccm.yaml | ${_kubectl} apply -f -
}
function kubevirtci::create_tenant_namespace {
${_kubectl} apply -f - <<EOF
---
apiVersion: v1
kind: Namespace
metadata:
name: ${TENANT_CLUSTER_NAMESPACE}
EOF
}
function kubevirtci::install_capk_release {
${_kubectl} apply -f https://github.com/kubernetes-sigs/cluster-api-provider-kubevirt/releases/download/${CAPK_RELEASE_VERSION}/infrastructure-components.yaml
${_kubectl} wait -n capk-system --for=condition=Available=true deployment/capk-controller-manager --timeout=10m
echo "capk release $CAPK_RELEASE_VERSION installed!"
}
function kubevirtci::install_calico {
kubevirtci::kubectl_tenant apply -f https://raw.githubusercontent.com/projectcalico/calico/${CALICO_VERSION}/manifests/calico.yaml
echo "Waiting for calico pods rollout"
kubevirtci::kubectl_tenant rollout status ds/calico-node -n kube-system --timeout=2m
}
function kubevirtci::install_metallb {
${_kubectl} apply -f https://raw.githubusercontent.com/metallb/metallb/${METALLB_VERSION}/config/manifests/metallb-native.yaml
echo "waiting for metallb to come online"
${_kubectl} -n metallb-system wait deployment controller --for condition=Available --timeout=5m
${_kubectl} apply -f - <<EOF
apiVersion: metallb.io/v1beta1
kind: IPAddressPool
metadata:
name: metallb
namespace: metallb-system
spec:
addresses:
- 192.168.111.30-192.168.111.50
EOF
${_kubectl} create -f - <<EOF
apiVersion: metallb.io/v1beta1
kind: L2Advertisement
metadata:
name: l2advertisement
namespace: metallb-system
spec:
ipAddressPools:
- metallb
EOF
echo "metallb installed!"
}
function kubevirtci::curl_lb {
mkdir -p ${_default_tmp_path}
job_yaml=${_default_tmp_path}/curl-test-pod.yaml
if [ -f ${job_yaml} ]; then
${_kubectl} delete -f ${job_yaml} --ignore-not-found
fi
lb_name=$1
lb_namespace=${2:-$TENANT_CLUSTER_NAMESPACE}
$_kubectl get service $lb_name -n $lb_namespace
lb_ip=$($_kubectl get service $lb_name -n $lb_namespace -o yaml | grep "ip:" | awk '{print $3}')
lb_port=$($_kubectl get service $lb_name -n $lb_namespace -o yaml | grep "port:" | awk '{print $2}')
cat << EOF > $job_yaml
---
apiVersion: batch/v1
kind: Job
metadata:
name: curl-test-job
namespace: ${lb_namespace}
spec:
template:
spec:
containers:
- name: fedora
image: fedora:35
command:
- curl
- "${lb_ip}:${lb_port}"
restartPolicy: Never
backoffLimit: 4
EOF
${_kubectl} create -f $job_yaml
echo "-----------Waiting for curl job to complete"
${_kubectl} wait job curl-test-job -n ${lb_namespace} --for condition=Complete --timeout=5m
pod_name=$($_kubectl get pods -n ${lb_namespace} --selector=job-name=curl-test-job --output=jsonpath='{.items[*].metadata.name}')
echo "-----------CURL LOG FOR POD $pod_name"
$_kubectl logs -n ${lb_namespace} $pod_name 2>/dev/null
${_kubectl} delete -f ${job_yaml} --ignore-not-found > /dev/null 2>&1
}
function kubevirtci::kubectl_tenant {
vms_list=$(${_kubectl} get vm -n ${TENANT_CLUSTER_NAMESPACE} --no-headers -o custom-columns=":metadata.name")
for vm in $vms_list
do
if [[ "$vm" == ${TENANT_CLUSTER_NAME}-control-plane* ]]; then
control_plane_vm_name=$vm
fi
done
if [ -n "${control_plane_vm_name}" ]; then
echo "Found control plane VM: ${control_plane_vm_name} in namespace ${TENANT_CLUSTER_NAMESPACE}"
else
echo "control-plane vm is not found in namespace ${TENANT_CLUSTER_NAMESPACE} (looking for regex ${TENANT_CLUSTER_NAME}-control-plane*)"
exit 1
fi
${_default_virtctl_path} port-forward -n ${TENANT_CLUSTER_NAMESPACE} vm/${control_plane_vm_name} 64443:6443 > /dev/null 2>&1 &
trap 'kill $(jobs -p) > /dev/null 2>&1' EXIT
rm -f .${TENANT_CLUSTER_NAME}-kubeconfig
$CLUSTERCTL_PATH get kubeconfig ${TENANT_CLUSTER_NAME} -n ${TENANT_CLUSTER_NAMESPACE} > .${TENANT_CLUSTER_NAME}-kubeconfig
sleep 0.1
kubectl --kubeconfig .${TENANT_CLUSTER_NAME}-kubeconfig --insecure-skip-tls-verify --server https://localhost:64443 "$@"
}
function kubevirtci::retry_until_success {
local timeout=30
local interval=1
until $@; do
((timeout--)) && ((timeout==0)) && echo "condition not met" && exit 1
echo "waiting for \"$@\""
sleep $interval
done
}
function kubevirtci::vm_matches {
local vm_name=$1
${_kubectl} get vm -n ${TENANT_CLUSTER_NAMESPACE} --no-headers -o custom-columns=":metadata.name" | grep -q $vm_name
}
kubevirtci::ensure
case ${_action} in
"up")
kubevirtci::up
;;
"down")
kubevirtci::down
;;
"refresh")
kubevirtci::build
kubevirtci::refresh
;;
"sync")
kubevirtci::build
kubevirtci::install
;;
"install-capk")
kubevirtci::install_capk_release
;;
"install-metallb")
kubevirtci::install_metallb
;;
"install-calico")
kubevirtci::install_calico
;;
"curl-lb")
kubevirtci::curl_lb "$@"
;;
"kubeconfig")
kubevirtci::kubeconfig
;;
"kubectl")
${_kubectl} "$@"
;;
"kubectl-tenant")
kubevirtci::kubectl_tenant "$@"
;;
"virtctl")
${_default_virtctl_path} "$@"
;;
"ssh-infra")
$_ssh_infra "$@"
;;
"ssh-tenant")
kubevirtci::ssh_tenant "$@"
;;
"clusterctl")
$CLUSTERCTL_PATH "$@"
;;
"create-cluster")
kubevirtci::create_tenant_namespace
kubevirtci::create_cluster
;;
"create-external-cluster")
kubevirtci::create_tenant_namespace
kubevirtci::generate_kubeconfig
kubevirtci::create_external_cluster
;;
"destroy-cluster")
kubevirtci::destroy_cluster
;;
"clean-cache")
rm ${_default_clusterctl_path}
rm ${_default_virtctl_path}
rm -rf ${_default_tmp_path}
;;
"help")
kubevirtci::usage
;;
*)
echo "Error: Unknown kubevirtci command"
echo ""
kubevirtci::usage
exit 1
;;
esac