Add Granafa Password

Retrives the Grafan password from Grafana and configures MON to
have it for initial set up

Change-Id: Ib08be45911ea3c6da07bc1cb54c398a05f9730de
Signed-off-by: Mark Beierl <mark.beierl@canonical.com>
diff --git a/installers/charmed_install.sh b/installers/charmed_install.sh
index fcb8c25..7bec50e 100755
--- a/installers/charmed_install.sh
+++ b/installers/charmed_install.sh
@@ -281,6 +281,9 @@
     juju config -m $MODEL_NAME prometheus site_url=https://prometheus.${API_SERVER}.nip.io
 
     echo "Waiting for deployment to finish..."
+    grafana_leader=`juju status -m $MODEL_NAME grafana | grep "*" | cut -d "*" -f 1`
+    grafana_admin_password=`juju run -m $MODEL_NAME --unit $grafana_leader "echo \\$GF_SECURITY_ADMIN_PASSWORD"`
+    juju config -m $MODEL_NAME mon grafana_password=$grafana_admin_password
     check_osm_deployed
     echo "OSM with charms deployed"
 }