Skip to content
Snippets Groups Projects
Commit 1d7e485e authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

Extended deploy script to configure dashboards only when WebUI component is included in the deploy.

parent ba6a772a
No related branches found
No related tags found
2 merge requests!54Release 2.0.0,!42Interdomain Component
......@@ -131,9 +131,12 @@ for COMPONENT in $COMPONENTS; do
printf "\n"
done
echo "Configuring DataStores and Dashboards..."
./configure_dashboards.sh
printf "\n\n"
if [[ "$COMPONENTS" == *"webui"* ]]; then
echo "Configuring WebUI DataStores and Dashboards..."
./configure_dashboards.sh
printf "\n\n"
fi
echo "Reporting Deployment..."
kubectl --namespace $K8S_NAMESPACE get all
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment