blob: 529a67a7a645b62069ddd22d1080f46152b827d1 (
plain)
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
|
#!/bin/bash
# SPDX-license-identifier: Apache-2.0
##############################################################################
# Copyright (c) 2021
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
set -o errexit
set -o nounset
set -o pipefail
source _common.sh
source _functions.sh
csar_id=07f9cfe1-25f6-41fe-b4da-e61a2c94c319
# Setup
populate_CSAR_kubevirt $csar_id
pushd ${CSAR_DIR}/${csar_id}
# Under automation, the VMI CRD may not be defined yet and setup_type
# will fail. Retry to workaround this.
tries=3
interval=10
for ((try=1;try<=$tries;try++)); do
echo "try $try/$tries: setup test VMI"
sleep $interval
if setup_type "vmi" $kubevirt_vmi_name; then
break
fi
done
if (($try > $tries)); then
echo "setup failed"
exit 1
fi
# Test
deployment_pod=$(kubectl get pods | grep $kubevirt_vmi_name | awk '{print $1}')
echo "Pod name: $deployment_pod"
echo "ssh testuser@$(kubectl get pods $deployment_pod -o jsonpath="{.status.podIP}")"
echo "kubectl virt console $kubevirt_vmi_name"
tries=30
interval=60
for ((try=1;try<=$tries;try++)); do
echo "try $try/$tries: Wait for $interval seconds to check for ssh access"
sleep $interval
if sshpass -p testuser ssh -o ProxyCommand="ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -W %h:%p $(control_plane_ip)" -o StrictHostKeyChecking=no testuser@$(kubectl get pods $deployment_pod -o jsonpath="{.status.podIP}") -- uptime; then
echo "ssh access check is success"
break
fi
done
if (($try > $tries)); then
echo "ssh access check failed"
exit 1
fi
popd
# Teardown
teardown_type "vmi" $kubevirt_vmi_name
|