diff options
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/deploy.sh | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/ci/deploy.sh b/ci/deploy.sh index b722d2ae..d4c30d9d 100755 --- a/ci/deploy.sh +++ b/ci/deploy.sh @@ -20,8 +20,6 @@ opnfvmodel=openstack virtinstall=0 maasinstall=0 -jujuver=`juju --version` - usage() { echo "Usage: $0 [-s|--sdn <nosdn|odl|opencontrail>] [-t|--type <noha|ha|tip>] @@ -33,7 +31,7 @@ usage() { echo "Usage: $0 [-m|--model <openstack|kubernetes>] [-i|--virtinstall <0|1>] [--maasinstall <0|1>] - [--labfile <labvonfig.yaml file>] + [--labfile <labconfig.yaml file>] [-r|--release <e>]" 1>&2 exit 1; } @@ -199,14 +197,14 @@ deploy() { python genDeploymentConfig.py -l labconfig.yaml > deployconfig.yaml fi else - echo_error "MAAS not deployed please deploy MAAS first." + if [ "$maasinstall" -eq 0 ]; then + echo_error "MAAS not deployed please deploy MAAS first." + else + echo_info "MAAS not deployed this will deploy MAAS first." + fi fi fi - #create json file which is missing in case of new deployment after maas and git tree cloned freshly. - python -c 'import sys, yaml, json; json.dump(yaml.load(sys.stdin), sys.stdout, indent=4)' < labconfig.yaml > labconfig.json - python -c 'import sys, yaml, json; json.dump(yaml.load(sys.stdin), sys.stdout, indent=4)' < deployconfig.yaml > deployconfig.json - # Install MAAS and expecting the labconfig.yaml at local directory. if [ "$maasinstall" -eq 1 ]; then @@ -254,6 +252,10 @@ deploy() { fi fi + #create json file which is missing in case of new deployment after maas and git tree cloned freshly. + python -c 'import sys, yaml, json; json.dump(yaml.load(sys.stdin), sys.stdout, indent=4)' < labconfig.yaml > labconfig.json + python -c 'import sys, yaml, json; json.dump(yaml.load(sys.stdin), sys.stdout, indent=4)' < deployconfig.yaml > deployconfig.json + if [[ "$opnfvtype" = "ha" && "$opnfvlab" = "default" ]]; then createresource fi @@ -315,6 +317,8 @@ juju status --format=tabular # translate bundle.yaml to json python -c 'import sys, yaml, json; json.dump(yaml.load(sys.stdin), sys.stdout, indent=4)' < bundles.yaml > bundles.json +jujuver=`juju --version` + # Configuring deployment if ([ $opnfvmodel == "openstack" ]); then echo_info "Configuring OpenStack deployment" |