Merge "migrating to proposed common network settings file"
[apex.git] / lib / parse-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 # Parser functions used by OPNFV Apex
12
13 ##parses network settings yaml into globals
14 parse_network_settings() {
15   local output parse_ext
16   parse_ext=''
17
18   if [[ "${deploy_options_array['dataplane']}" == 'ovs_dpdk' || "${deploy_options_array['dataplane']}" == 'fdio' ]]; then
19       for val in ${performance_roles[@]}; do
20         if [ "$val" == "Compute" ]; then
21           parse_ext="${parse_ext} --compute-pre-config "
22         elif [ "$val" == "Controller" ]; then
23           parse_ext="${parse_ext} --controller-pre-config "
24         fi
25       done
26   fi
27
28   if output=$(python3 -B $LIB/python/apex_python_utils.py parse-net-settings -s $NETSETS $net_isolation_arg -td $APEX_TMP_DIR -e $CONFIG/network-environment.yaml $parse_ext); then
29       echo -e "${blue}${output}${reset}"
30       eval "$output"
31   else
32       echo -e "${red}ERROR: Failed to parse network settings file $NETSETS ${reset}"
33       exit 1
34   fi
35
36   if [ "${deploy_options_array['dataplane']}" == 'ovs_dpdk' ]; then
37     if [ "$net_isolation_enabled" == "FALSE" ]; then
38       echo -e "${red}ERROR: flat network is not supported with ovs-dpdk ${reset}"
39       exit 1
40     fi
41     if [[ ! $enabled_network_list =~ "tenant" ]]; then
42       echo -e "${red}ERROR: tenant network is not enabled for ovs-dpdk ${reset}"
43       exit 1
44     fi
45   fi
46 }
47
48 ##parses deploy settings yaml into globals
49 parse_deploy_settings() {
50   local output
51   if output=$(python3 -B $LIB/python/apex_python_utils.py parse-deploy-settings -f $DEPLOY_SETTINGS_FILE); then
52       echo -e "${blue}${output}${reset}"
53       eval "$output"
54   else
55       echo -e "${red}ERROR: Failed to parse deploy settings file $DEPLOY_SETTINGS_FILE ${reset}"
56       exit 1
57   fi
58
59 }
60
61 ##parses baremetal yaml settings into compatible json
62 ##writes the json to undercloud:instackenv.json
63 ##params: none
64 ##usage: parse_inventory_file
65 parse_inventory_file() {
66   if [ "$virtual" == "TRUE" ]; then inv_virt="--virtual"; fi
67   if [[ "$ha_enabled" == "True" ]]; then inv_ha="--ha"; fi
68   instackenv_output=$(python3 -B $LIB/python/apex_python_utils.py parse-inventory -f $INVENTORY_FILE $inv_virt $inv_ha)
69   #Copy instackenv.json to undercloud
70   echo -e "${blue}Parsed instackenv JSON:\n${instackenv_output}${reset}"
71   ssh -T ${SSH_OPTIONS[@]} "stack@$UNDERCLOUD" <<EOI
72 cat > instackenv.json << EOF
73 $instackenv_output
74 EOF
75 EOI
76
77 }