Adjust bifrost node provisioning timeout and fix file permissions
[releng.git] / prototypes / bifrost / scripts / test-bifrost-deployment.sh
1 # SPDX-license-identifier: Apache-2.0
2 ##############################################################################
3 # Copyright (c) 2016 Ericsson AB and others.
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
9 #!/bin/bash
10
11 set -eux
12 set -o pipefail
13 export PYTHONUNBUFFERED=1
14 SCRIPT_HOME="$(cd "$(dirname "$0")" && pwd)"
15 BIFROST_HOME=$SCRIPT_HOME/..
16 ANSIBLE_INSTALL_ROOT=${ANSIBLE_INSTALL_ROOT:-/opt/stack}
17 ENABLE_VENV="false"
18 USE_DHCP="false"
19 USE_VENV="false"
20 BUILD_IMAGE=true
21
22 # Set defaults for ansible command-line options to drive the different
23 # tests.
24
25 # NOTE(TheJulia/cinerama): The variables defined on the command line
26 # for the default and DHCP tests are to drive the use of Cirros as the
27 # deployed operating system, and as such sets the test user to cirros,
28 # and writes a debian style interfaces file out to the configuration
29 # drive as cirros does not support the network_info.json format file
30 # placed in the configuration drive. The "build image" test does not
31 # use cirros.
32
33 TEST_VM_NUM_NODES=3
34 export TEST_VM_NODE_NAMES="jumphost.opnfvlocal controller00.opnfvlocal compute00.opnfvlocal"
35 export VM_DOMAIN_TYPE="kvm"
36 TEST_PLAYBOOK="test-bifrost-infracloud.yaml"
37 USE_INSPECTOR=true
38 USE_CIRROS=false
39 TESTING_USER=root
40 VM_MEMORY_SIZE="8192"
41 DOWNLOAD_IPA=true
42 CREATE_IPA_IMAGE=false
43 INSPECT_NODES=true
44 INVENTORY_DHCP=false
45 INVENTORY_DHCP_STATIC_IP=false
46 WRITE_INTERFACES_FILE=true
47
48 # Set BIFROST_INVENTORY_SOURCE
49 export BIFROST_INVENTORY_SOURCE=/tmp/baremetal.csv
50
51 # DIB custom elements path
52 export ELEMENTS_PATH=/usr/share/diskimage-builder/elements:/opt/puppet-infracloud/files/elements
53
54 # settings for console access
55 export DIB_DEV_USER_PWDLESS_SUDO=yes
56 export DIB_DEV_USER_PASSWORD=devuser
57
58 # Source Ansible
59 # NOTE(TheJulia): Ansible stable-1.9 source method tosses an error deep
60 # under the hood which -x will detect, so for this step, we need to suspend
61 # and then re-enable the feature.
62 set +x +o nounset
63 $SCRIPT_HOME/env-setup.sh
64 source ${ANSIBLE_INSTALL_ROOT}/ansible/hacking/env-setup
65 ANSIBLE=$(which ansible-playbook)
66 set -x -o nounset
67
68 # Change working directory
69 cd $BIFROST_HOME/playbooks
70
71 # Syntax check of dynamic inventory test path
72 ${ANSIBLE} -vvvv \
73        -i inventory/localhost \
74        test-bifrost-create-vm.yaml \
75        --syntax-check \
76        --list-tasks
77 ${ANSIBLE} -vvvv \
78        -i inventory/localhost \
79        ${TEST_PLAYBOOK} \
80        --syntax-check \
81        --list-tasks \
82        -e testing_user=${TESTING_USER}
83
84 # Create the test VMS
85 ${ANSIBLE} -vvvv \
86        -i inventory/localhost \
87        test-bifrost-create-vm.yaml \
88        -e test_vm_num_nodes=${TEST_VM_NUM_NODES} \
89        -e test_vm_memory_size=${VM_MEMORY_SIZE} \
90        -e enable_venv=${ENABLE_VENV} \
91        -e test_vm_domain_type=${VM_DOMAIN_TYPE}
92
93 # Execute the installation and VM startup test.
94 ${ANSIBLE} -vvvv \
95     -i inventory/bifrost_inventory.py \
96     ${TEST_PLAYBOOK} \
97     -e use_cirros=${USE_CIRROS} \
98     -e testing_user=${TESTING_USER} \
99     -e test_vm_num_nodes=${TEST_VM_NUM_NODES} \
100     -e inventory_dhcp=${INVENTORY_DHCP} \
101     -e inventory_dhcp_static_ip=${INVENTORY_DHCP_STATIC_IP} \
102     -e enable_venv=${ENABLE_VENV} \
103     -e enable_inspector=${USE_INSPECTOR} \
104     -e inspect_nodes=${INSPECT_NODES} \
105     -e download_ipa=${DOWNLOAD_IPA} \
106     -e create_ipa_image=${CREATE_IPA_IMAGE} \
107     -e write_interfaces_file=${WRITE_INTERFACES_FILE} \
108     -e ipv4_gateway=192.168.122.1
109 EXITCODE=$?
110
111 if [ $EXITCODE != 0 ]; then
112     echo "****************************"
113     echo "Test failed. See logs folder"
114     echo "****************************"
115 fi
116
117 $SCRIPT_HOME/collect-test-info.sh
118
119 exit $EXITCODE