diff options
author | gfraboni <gino.fraboni@amdocs.com> | 2017-09-22 16:32:34 -0400 |
---|---|---|
committer | gfraboni <gino.fraboni@amdocs.com> | 2017-09-22 16:32:47 -0400 |
commit | 38835affc720c0718d6c5183826f5c777c01770d (patch) | |
tree | 60a46e32dc166366659a5b7d824623e706e0cd6c /kubernetes/config | |
parent | 3e130463a0062cdb7aef9717c46ee5bc9958a32e (diff) |
Add Consul health check support for SDNC
This push adds health checks for the SDNC.
IssueID: OOM-86
Change-Id: I73b15e09388e87dc481d77b76ba302ff4dcb4317
Signed-off-by: gfraboni <gino.fraboni@amdocs.com>
Diffstat (limited to 'kubernetes/config')
-rw-r--r-- | kubernetes/config/docker/init/src/config/consul/consul-agent-config/sdnc-health.json | 22 |
1 files changed, 22 insertions, 0 deletions
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" + } + ] + } +} |