adjusting the timeout while reading status. 91/39291/3
authorNarinder Gupta <narinder.gupta@canonical.com>
Mon, 14 Aug 2017 21:42:21 +0000 (16:42 -0500)
committerNarinder Gupta <narinder.gupta@canonical.com>
Tue, 15 Aug 2017 05:33:12 +0000 (00:33 -0500)
Change-Id: I26829677f4688e75edf607b2fcd839385523c5aa
Signed-off-by: Narinder Gupta <narinder.gupta@canonical.com>
ci/02-deploybundle.sh
ci/config_tpl/juju2/bundle_tpl/ceph.yaml
ci/deploy.sh

index bc27481..1bb0084 100755 (executable)
@@ -33,7 +33,7 @@ check_status() {
     while [ $retval -eq 0 ]; do
         if juju status | grep -q $waitstatus; then
            echo -n '.'
-           if [ $timeoutiter -ge 240 ]; then
+           if [ $timeoutiter -ge 180 ]; then
                echo 'timed out'
                retval=1
            else
@@ -133,7 +133,7 @@ if [[ "$opnfvmodel" = "openstack" ]]; then
     #update source if trusty is target distribution
     var=os-$opnfvsdn-$fea-$opnfvtype"-"$opnfvdistro"_"$openstack
 
-    if ([ $osdomname ] && [ $osdomname != "null" ] && [ $osdomname != "None"]); then
+    if ([ $osdomname ] && [ $osdomname != "null" ] && [ $osdomname != "None" ]); then
         var=$var"_"publicapi
     fi
 else
index eda8496..5dd544e 100644 (file)
@@ -6,9 +6,7 @@
       bindings:
         "": internal-api
 {% if opnfv.spaces_dict.storage is defined %}
-        public: storage-cluster
-{% else %}
-        public: internal-api
+        cluster: storage-cluster
 {% endif %}
 {% endif %}
       options:
       bindings:
         "": internal-api
 {% if opnfv.spaces_dict.storage is defined %}
-        public: storage-cluster
         cluster: storage-cluster
-{% else %}
-        public: internal-api
-        cluster: internal-api
 {% endif %}
 {% endif %}
       options:
 {% else %}
         public: internal-api
 {% endif %}
-{% if opnfv.spaces_dict.storage is defined %}
-        mon: storage-cluster
-{% endif %}
 {% endif %}
       options:
         region: {{ os.region }}
index bc14630..768f5e8 100755 (executable)
@@ -188,7 +188,7 @@ check_status() {
     while [ $retval -eq 0 ]; do
         if juju status | grep -q $waitstatus; then
            echo -n '.'
-           if [ $timeoutiter -ge 120 ]; then
+           if [ $timeoutiter -ge 180 ]; then
                echo 'timed out'
                retval=1
            else