From f2f2c0eb3a3e1785691dae6f489b1d3a352f98bf Mon Sep 17 00:00:00 2001 From: Srinivasan Selvam Date: Wed, 20 Nov 2019 20:10:40 +0530 Subject: [PATCH] logs uCPE updated Signed-off-by: Srinivasan Selvam Change-Id: I441810714f20c9c5ceae51af2311718a87073e3f --- blueprints/uCPE/scripts/cadvisorsetup.sh | 5 +++++ blueprints/uCPE/scripts/prometheus.sh | 6 ++++++ blueprints/uCPE/scripts/setup.sh | 6 +++++- 3 files changed, 16 insertions(+), 1 deletion(-) diff --git a/blueprints/uCPE/scripts/cadvisorsetup.sh b/blueprints/uCPE/scripts/cadvisorsetup.sh index fd4e395..943a326 100644 --- a/blueprints/uCPE/scripts/cadvisorsetup.sh +++ b/blueprints/uCPE/scripts/cadvisorsetup.sh @@ -8,6 +8,9 @@ # http://www.apache.org/licenses/LICENSE-2.0 ############################################################################## +echo "***********************************************************************" +echo "cadvisor installation-------------------------------------------STARTED" + HOSTNAME=`hostname` sudo docker run \ --volume=/:/rootfs:ro \ @@ -20,3 +23,5 @@ sudo docker run \ --name=cadvisor-${HOSTNAME} \ google/cadvisor:latest +echo "cadvisor setup--------------------------------------------------SUCCESS" +echo "***********************************************************************" diff --git a/blueprints/uCPE/scripts/prometheus.sh b/blueprints/uCPE/scripts/prometheus.sh index 2135f79..ff30392 100755 --- a/blueprints/uCPE/scripts/prometheus.sh +++ b/blueprints/uCPE/scripts/prometheus.sh @@ -8,6 +8,9 @@ # http://www.apache.org/licenses/LICENSE-2.0 ############################################################################## +echo "**********************************************************************" +echo "Prometheus setup ----------------------------------------------STARTED" + # start PROMETHEUS_HOST_PORT="9090" PROMETHEUS_CONTAINTER_PORT="9090" @@ -21,3 +24,6 @@ sudo docker run -p ${PROMETHEUS_HOST_PORT}:${PROMETHEUS_CONTAINTER_PORT} \ -v ~/prometheus.yml:/etc/prometheus/prometheus.yml \ -d prom/prometheus \ --config.file=/etc/prometheus/prometheus.yml + +echo "Prometheus setup ----------------------------------------------SUCCESS" +echo "**********************************************************************" diff --git a/blueprints/uCPE/scripts/setup.sh b/blueprints/uCPE/scripts/setup.sh index ca0cc66..0ce747e 100755 --- a/blueprints/uCPE/scripts/setup.sh +++ b/blueprints/uCPE/scripts/setup.sh @@ -18,6 +18,9 @@ # sshpass needs to be installed before executing this script. # ######################################################################################## +echo "********************************************************************************" +echo "ELIOT SD-WAN/WAN EDGE/uCPE Platform Deployment--------------------------STARTED" + # constants OSPLATFORM=$(awk -F= '/^NAME/{print $2}' /etc/os-release) @@ -175,5 +178,6 @@ sleep 20 # Removing the taint from master node kubectl taint nodes --all node-role.kubernetes.io/master- || true -echo "ELIOT Setup execution is Completed..." +echo "********************************************************************************" +echo "ELIOT SD-WAN/WAN EDGE/uCPE Platform Deployment--------------------------SUCCESS" -- 2.16.6