From: Mike Elliott Date: Mon, 25 Sep 2017 13:52:21 +0000 (+0000) Subject: Merge "Add Consul health check support for SDNC" X-Git-Tag: 2.0.0-ONAP~632 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=67162aaf08703e895b6b093aa64978d5eaa12124;hp=270a717ecd7e5a5ed83418efc8007eff92d9b7fd;p=oom.git Merge "Add Consul health check support for SDNC" --- diff --git a/kubernetes/config/docker/init/src/config/consul/consul-agent-config/sdnc-health.json b/kubernetes/config/docker/init/src/config/consul/consul-agent-config/sdnc-health.json new file mode 100644 index 0000000000..fc26d2e192 --- /dev/null +++ b/kubernetes/config/docker/init/src/config/consul/consul-agent-config/sdnc-health.json @@ -0,0 +1,22 @@ +{ + "service": { + "name": "Health Check: SDNC", + "checks": [ + { + "id": "odl-api-healthcheck", + "name": "SDNC API Health Check", + "http": "http://sdnhost.onap-sdnc:8282/restconf/operations/SLI-API:healthcheck", + "method": "POST", + "header": { + "Authorization": ["Basic YWRtaW46S3A4Yko0U1hzek0wV1hsaGFrM2VIbGNzZTJnQXc4NHZhb0dHbUp2VXkyVQ=="], + "Cache-Control": ["no-cache"], + "Content-Type": ["application/json"], + "Accept": ["application/json"] + }, + "tls_skip_verify": true, + "interval": "15s", + "timeout": "1s" + } + ] + } +}