X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=foreman%2Fci%2Fdeploy.sh;h=5746e1039d9bbf66a6593a7c38c0a93afd590178;hb=be1ddda8fc823d8a3032d107e242dd3ba91b89a1;hp=a05b3dee33437d85bad209b5f345bc568a3564d2;hpb=e81470c59a70eab98426917702d592c4fc7f97e0;p=genesis.git diff --git a/foreman/ci/deploy.sh b/foreman/ci/deploy.sh index a05b3de..5746e10 100755 --- a/foreman/ci/deploy.sh +++ b/foreman/ci/deploy.sh @@ -650,6 +650,20 @@ configure_network() { fi fi + nodes=`sed -nr '/nodes:/{:start /workaround/!{N;b start};//p}' opnfv_ksgen_settings.yml | sed -n '/^ [A-Za-z0-9]\+:$/p' | sed 's/\s*//g' | sed 's/://g'` + controller_nodes=`echo $nodes | tr " " "\n" | grep controller | tr "\n" " "` + echo "${blue}Controller nodes found in settings: ${controller_nodes}${reset}" + my_controller_array=( $controller_nodes ) + num_control_nodes=${#my_controller_array[@]} + if [ "$num_control_nodes" -ne 3 ]; then + if cat opnfv_ksgen_settings.yml | grep ha_flag | grep true; then + echo "${red}Error: You must define exactly 3 control nodes when HA flag is true!${reset}" + exit 1 + fi + else + echo "${blue}Number of Controller nodes detected: ${num_control_nodes}${reset}" + fi + if [ $no_parse ]; then echo "${blue}Skipping parsing variables into settings file as no_parse flag is set${reset}"