modify the parameter of PPA_REPO
[releng.git] / prototypes / bifrost / scripts / osa-bifrost-deployment.sh
1 #!/bin/bash
2 # SPDX-license-identifier: Apache-2.0
3 ##############################################################################
4 # Copyright (c) 2016 Ericsson AB and others.
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9 ##############################################################################
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 PROVISION_WAIT_TIMEOUT=${PROVISION_WAIT_TIMEOUT:-3600}
22
23 # ensure the branch is set
24 export OPENSTACK_BRANCH=${OPENSTACK_BRANCH:-master}
25
26 # ensure the right inventory files is used based on branch
27 if [ $OPENSTACK_BRANCH = "master" ]; then
28     export BIFROST_INVENTORY_SOURCE=${BIFROST_INVENTORY_SOURCE:-'/tmp/baremetal.json'}
29 else
30     export BIFROST_INVENTORY_SOURCE=${BIFROST_INVENTORY_SOURCE:-'/tmp/baremetal.csv'}
31 fi
32
33 # Set defaults for ansible command-line options to drive the different
34 # tests.
35
36 # NOTE(TheJulia/cinerama): The variables defined on the command line
37 # for the default and DHCP tests are to drive the use of Cirros as the
38 # deployed operating system, and as such sets the test user to cirros,
39 # and writes a debian style interfaces file out to the configuration
40 # drive as cirros does not support the network_info.json format file
41 # placed in the configuration drive. The "build image" test does not
42 # use cirros.
43
44 TEST_VM_NUM_NODES=6
45 export TEST_VM_NODE_NAMES="xcimaster controller00 controller01 controller02 compute00 compute01"
46 export VM_DOMAIN_TYPE="kvm"
47 # 8 vCPU, 60 GB HDD are minimum equipment
48 export VM_CPU=${VM_CPU:-8}
49 export VM_DISK=${VM_DISK:-100}
50 export VM_DISK_CACHE=${VM_DISK_CACHE:-unsafe}
51 TEST_PLAYBOOK="opnfv-virtual.yaml"
52 USE_INSPECTOR=true
53 USE_CIRROS=false
54 TESTING_USER=root
55 # seting the memory to 16 GB to make more easily success
56 # 8 GB RAM is minimum equipment, but it work with at least 12 GB.
57 VM_MEMORY_SIZE=${VM_MEMORY_SIZE:-16384}
58 DOWNLOAD_IPA=true
59 CREATE_IPA_IMAGE=false
60 INSPECT_NODES=true
61 INVENTORY_DHCP=false
62 INVENTORY_DHCP_STATIC_IP=false
63 WRITE_INTERFACES_FILE=true
64
65
66 # settings for console access
67 export DIB_DEV_USER_PWDLESS_SUDO=yes
68 export DIB_DEV_USER_PASSWORD=devuser
69
70 # settings for distro: trusty/ubuntu-minimal, 7/centos7
71 export DIB_OS_RELEASE=${DIB_OS_RELEASE:-xenial}
72 export DIB_OS_ELEMENT=${DIB_OS_ELEMENT:-ubuntu-minimal}
73
74 # for centos 7: "vim,less,bridge-utils,iputils,rsyslog,curl"
75 export DIB_OS_PACKAGES=${DIB_OS_PACKAGES:-"vlan,vim,less,bridge-utils,sudo,language-pack-en,iputils-ping,rsyslog,curl,python,debootstrap,ifenslave,ifenslave-2.6,lsof,lvm2,tcpdump,nfs-kernel-server,chrony"}
76
77 # Additional dib elements
78 export EXTRA_DIB_ELEMENTS=${EXTRA_DIB_ELEMENTS:-"openssh-server"}
79
80 # Source Ansible
81 # NOTE(TheJulia): Ansible stable-1.9 source method tosses an error deep
82 # under the hood which -x will detect, so for this step, we need to suspend
83 # and then re-enable the feature.
84 set +x +o nounset
85 $SCRIPT_HOME/env-setup.sh
86 source ${ANSIBLE_INSTALL_ROOT}/ansible/hacking/env-setup
87 ANSIBLE=$(which ansible-playbook)
88 set -x -o nounset
89
90 logs_on_exit() {
91     $SCRIPT_HOME/collect-test-info.sh
92 }
93 trap logs_on_exit EXIT
94
95 # Change working directory
96 cd $BIFROST_HOME/playbooks
97
98 # Syntax check of dynamic inventory test path
99 for task in syntax-check list-tasks; do
100     ${ANSIBLE} \
101            -i inventory/localhost \
102            test-bifrost-create-vm.yaml \
103            --${task}
104     ${ANSIBLE} \
105            -i inventory/localhost \
106            ${TEST_PLAYBOOK} \
107            --${task} \
108            -e testing_user=${TESTING_USER}
109 done
110
111 # Create the test VMS
112 ${ANSIBLE} \
113        -i inventory/localhost \
114        test-bifrost-create-vm.yaml \
115        -e test_vm_num_nodes=${TEST_VM_NUM_NODES} \
116        -e test_vm_memory_size=${VM_MEMORY_SIZE} \
117        -e enable_venv=${ENABLE_VENV} \
118        -e test_vm_domain_type=${VM_DOMAIN_TYPE}
119
120 # Execute the installation and VM startup test.
121 ${ANSIBLE} \
122     -i inventory/bifrost_inventory.py \
123     ${TEST_PLAYBOOK} \
124     -e use_cirros=${USE_CIRROS} \
125     -e testing_user=${TESTING_USER} \
126     -e test_vm_num_nodes=${TEST_VM_NUM_NODES} \
127     -e inventory_dhcp=${INVENTORY_DHCP} \
128     -e inventory_dhcp_static_ip=${INVENTORY_DHCP_STATIC_IP} \
129     -e enable_venv=${ENABLE_VENV} \
130     -e enable_inspector=${USE_INSPECTOR} \
131     -e inspect_nodes=${INSPECT_NODES} \
132     -e download_ipa=${DOWNLOAD_IPA} \
133     -e create_ipa_image=${CREATE_IPA_IMAGE} \
134     -e write_interfaces_file=${WRITE_INTERFACES_FILE} \
135     -e ipv4_gateway=192.168.122.1 \
136     -e wait_timeout=${PROVISION_WAIT_TIMEOUT}
137 EXITCODE=$?
138
139 if [ $EXITCODE != 0 ]; then
140     echo "****************************"
141     echo "Test failed. See logs folder"
142     echo "****************************"
143 fi
144
145 exit $EXITCODE