exposing the ceph-radosgw port and also creating users.
[joid.git] / ci / deploy.sh
index 0382bb3..d5c8cc2 100755 (executable)
@@ -10,7 +10,7 @@ opnfvtype=nonha
 openstack=mitaka
 opnfvlab=default
 opnfvrel=c
-opnfvfeature=odl_l2
+opnfvfeature=none
 opnfvdistro=xenial
 opnfvarch=amd64
 
@@ -106,6 +106,11 @@ createresource() {
 #copy the files and create extra resources needed for HA deployment
 # in case of default VM labs.
 deploy() {
+
+    if [ ! -f ./environments.yaml ] && [ -e ~/.juju/environments.yaml ]; then
+        cp ~/.juju/environments.yaml ./environments.yaml
+    fi
+
     #copy the script which needs to get deployed as part of ofnfv release
     echo "...... deploying now ......"
     echo "   " >> environments.yaml
@@ -146,23 +151,20 @@ check_status() {
     done
     status=`juju action do heat/0 domain-setup`
     echo $status
+    juju expose ceph-radosgw
+    juju ssh ceph/0 \ 'sudo radosgw-admin user create --uid="ubuntu" --display-name="Ubuntu Ceph"'
+
     echo "...... deployment finishing ......."
 }
 
 echo "...... deployment started ......"
 deploy
 
-#temporary change the user instances as dhcp failed with limitation exceeded.
-# to be remove once charm fixes the issue
-
-if [ "$opnfvdistro" == "xenial" ]; then
-    juju ssh neutron-gateway/0 "echo 512 | sudo tee /proc/sys/fs/inotify/max_user_instances"
-fi
-# Temorary change end
-
 check_status
 echo "...... deployment finished  ......."
 
-./openstack.sh "$opnfvsdn"
+./openstack.sh "$opnfvsdn" || true
+sudo ../juju/get-cloud-images || true
+../juju/joid-configure-openstack || true
 
 echo "...... finished  ......."