diff --git a/chart/values.yaml b/chart/values.yaml
index e84f02cc675cc7625b9898b79322fed829116e8e..234b9629637f218e2148aeafb92cbe5d9f0e041b 100644
--- a/chart/values.yaml
+++ b/chart/values.yaml
@@ -122,7 +122,7 @@ monitoring:
   git:
     repo: https://repo1.dsop.io/platform-one/big-bang/apps/core/monitoring.git
     path: "./chart"
-    tag: "11.0.0-bb.2"
+    tag: "11.0.0-bb.3"
   values: {}
 # ----------------------------------------------------------------------------------------------------------------------
 
diff --git a/scripts/hosts.sh b/scripts/hosts.sh
old mode 100644
new mode 100755
diff --git a/tests/bash/01_virtualservices.sh b/tests/bash/01_virtualservices.sh
index e452aa33acaba3f7405979f10176357890a7c5ad..f317fc4631c1b0d61add9d0e6bffde68f1774e8d 100755
--- a/tests/bash/01_virtualservices.sh
+++ b/tests/bash/01_virtualservices.sh
@@ -4,7 +4,8 @@
 set -e
 
 echo "Checking "
+
 hosts=`kubectl get vs -A -o jsonpath="{ .items[*].spec.hosts[*] }"`
 for host in $hosts; do
-    curl -vI http://$host
+    curl -svv https://$host/ > /dev/null
 done
\ No newline at end of file