Issue-ID: OOM-31
Change-Id: I3a65b70e90e884d836187b84e00e82eccfc5d5ad
Signed-off-by: ShivendraSaxena <Shivendra.Saxena@amdocs.com>
--- /dev/null
+{
+  "service": {
+    "name": "Health Check: APPC",
+    "checks": [
+      {
+        "id": "appc-dbhost-healthcheck",
+        "name": "APPC DBHost Health Check",
+        "script": "/consul/config/scripts/appc-dbhost-script.sh",
+        "interval": "10s",
+        "timeout": "1s"
+      }
+    ]
+  }
+}
 
--- /dev/null
+APPC_DBHOST_POD=$(/consul/config/bin/kubectl -n onap-appc  get pod | grep -o "appc-dbhost-[^[:space:]]*")
+if [ -n "$APPC_DBHOST_POD" ]; then
+   if /consul/config/bin/kubectl -n onap-appc exec -it $APPC_DBHOST_POD -- ./healthcheck.sh |grep -i "mysqld is alive"; then
+      echo Success. APPC DBHost is running. 2>&1
+      exit 0
+   else
+      echo Failed. APPC DBHost is not running. 2>&1
+      exit 1
+   fi
+else
+   echo Failed. APPC DBHost is offline. 2>&1
+   exit 1
+fi