Update ODL version for fdio_l2 and fdio_l3 scenarios
[apex.git] / lib / virtual-setup-functions.sh
1 #!/usr/bin/env bash
2 ##############################################################################
3 # Copyright (c) 2015 Tim Rozet (Red Hat), Dan Radez (Red Hat) and others.
4 #
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 ##Create virtual nodes in virsh
12 ##params: vcpus, ramsize
13 function setup_virtual_baremetal {
14   local vcpus ramsize held_ramsize
15   if [ -z "$1" ]; then
16     vcpus=4
17     ramsize=8192
18   elif [ -z "$2" ]; then
19     vcpus=$1
20     ramsize=8192
21   else
22     vcpus=$1
23     ramsize=$(($2*1024))
24   fi
25   #start by generating the opening yaml for the inventory-virt.yaml file
26   cat > $APEX_TMP_DIR/inventory-virt.yaml << EOF
27 nodes:
28 EOF
29
30   # next create the virtual machines and add their definitions to the file
31   if [ "$ha_enabled" == "False" ]; then
32       controller_index=0
33   else
34       controller_index=2
35       # 3 controller + computes
36       # zero based so add 2 to compute count
37       if [ $VM_COMPUTES -lt 2 ]; then
38           VM_COMPUTES=2
39       fi
40   fi
41
42   # tmp var to hold ramsize in case modified during detection
43   held_ramsize=${ramsize}
44   for i in $(seq 0 $(($controller_index+$VM_COMPUTES))); do
45     ramsize=${held_ramsize}
46     if [ $i -gt $controller_index ]; then
47       capability="profile:compute"
48       if [ -n "$VM_COMPUTE_RAM" ]; then
49         ramsize=$((${VM_COMPUTE_RAM}*1024))
50       fi
51     else
52       capability="profile:control"
53       if [[ "${deploy_options_array['sdn_controller']}" == 'opendaylight' && "$ramsize" -lt 10240 ]]; then
54          echo "WARN: RAM per controller too low.  OpenDaylight specified in HA deployment requires at least 10GB"
55          echo "INFO: Increasing RAM per controller to 10GB"
56          ramsize=10240
57       fi
58     fi
59     if ! virsh list --all | grep baremetal${i} > /dev/null; then
60       define_vm baremetal${i} network 41 'admin' $vcpus $ramsize
61       for n in tenant external storage api; do
62         if [[ $enabled_network_list =~ $n ]]; then
63           echo -n "$n "
64           virsh attach-interface --domain baremetal${i} --type network --source $n --model virtio --config
65         fi
66       done
67     else
68       echo "Found baremetal${i} VM, using existing VM"
69     fi
70     #virsh vol-list default | grep baremetal${i} 2>&1> /dev/null || virsh vol-create-as default baremetal${i}.qcow2 41G --format qcow2
71     mac=$(virsh domiflist baremetal${i} | grep admin | awk '{ print $5 }')
72
73     cat >> $APEX_TMP_DIR/inventory-virt.yaml << EOF
74   node${i}:
75     mac_address: "$mac"
76     ipmi_ip: 192.168.122.1
77     ipmi_user: root
78     ipmi_pass: "INSERT_STACK_USER_PRIV_KEY"
79     pm_type: "pxe_ssh"
80     cpus: $vcpus
81     memory: $ramsize
82     disk: 41
83     arch: "x86_64"
84     capabilities: "$capability"
85 EOF
86   done
87
88   #Overwrite the tripleo-inclubator domain.xml with our own, keeping a backup.
89   if [ ! -f /usr/share/tripleo/templates/domain.xml.bak ]; then
90     /usr/bin/mv -f /usr/share/tripleo/templates/domain.xml /usr/share/tripleo/templates/domain.xml.bak
91   fi
92
93   /usr/bin/cp -f $LIB/installer/domain.xml /usr/share/tripleo/templates/domain.xml
94 }
95
96 ##Create virtual nodes in virsh
97 ##params: name - String: libvirt name for VM
98 ##        bootdev - String: boot device for the VM
99 ##        disksize - Number: size of the disk in GB
100 ##        ovs_bridges: - List: list of ovs bridges
101 ##        vcpus - Number of VCPUs to use (defaults to 4)
102 ##        ramsize - Size of RAM for VM in MB (defaults to 8192)
103 function define_vm () {
104   local vcpus ramsize
105
106   if [ -z "$5" ]; then
107     vcpus=4
108     ramsize=8388608
109   elif [ -z "$6" ]; then
110     vcpus=$5
111     ramsize=8388608
112   else
113     vcpus=$5
114     ramsize=$(($6*1024))
115   fi
116
117   # Create the libvirt storage volume
118   if virsh vol-list default | grep ${1}.qcow2 2>&1> /dev/null; then
119     volume_path=$(virsh vol-path --pool default ${1}.qcow2 || echo "/var/lib/libvirt/images/${1}.qcow2")
120     echo "Volume ${1} exists. Deleting Existing Volume $volume_path"
121     virsh vol-dumpxml ${1}.qcow2 --pool default > /dev/null || echo '' #ok for this to fail
122     touch $volume_path
123     virsh vol-delete ${1}.qcow2 --pool default
124   fi
125   virsh vol-create-as default ${1}.qcow2 ${3}G --format qcow2
126   volume_path=$(virsh vol-path --pool default ${1}.qcow2)
127   if [ ! -f $volume_path ]; then
128       echo "$volume_path Not created successfully... Aborting"
129       exit 1
130   fi
131
132   # create the VM
133   /usr/libexec/openstack-tripleo/configure-vm --name $1 \
134                                               --bootdev $2 \
135                                               --image "$volume_path" \
136                                               --diskbus sata \
137                                               --arch x86_64 \
138                                               --cpus $vcpus \
139                                               --memory $ramsize \
140                                               --libvirt-nic-driver virtio \
141                                               --baremetal-interface $4
142 }