From: Mark Beierl Date: Fri, 4 Mar 2022 12:24:01 +0000 (-0500) Subject: Add Granafa Password X-Git-Tag: v10.1.0rc2 X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;h=9c0d2b7f85bdeb84aeacc8caa5c5be645c3756f1;p=osm%2Fdevops.git 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 --- diff --git a/installers/charmed_install.sh b/installers/charmed_install.sh index fcb8c256..7bec50e3 100755 --- a/installers/charmed_install.sh +++ b/installers/charmed_install.sh @@ -281,6 +281,9 @@ function deploy_charmed_osm(){ 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" }