diff options
author | mayankg2703 <mayank.gupta@amdocs.com> | 2018-01-10 04:56:39 +0000 |
---|---|---|
committer | Alexis de Talhouƫt <alexis.de_talhouet@bell.ca> | 2018-01-10 17:45:21 +0000 |
commit | 19b62d143d9fd50034d54825347aa17522b9935f (patch) | |
tree | 9ce3b3e0f47d8d2176765bb93b9993b2d72c624b /kubernetes/config/docker/init | |
parent | 817e80be6b109f224b509efc5b38442ea05c5671 (diff) |
health check sdnc sdnhost
Issue-ID: OOM-564
Change-Id: I643030f500061cf5f992fd374ebb476124e6a977
Signed-off-by: mayankg2703 <mayank.gupta@amdocs.com>
Diffstat (limited to 'kubernetes/config/docker/init')
-rw-r--r-- | kubernetes/config/docker/init/src/config/consul/consul-agent-config/sdnc-sdnhost.json | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/kubernetes/config/docker/init/src/config/consul/consul-agent-config/sdnc-sdnhost.json b/kubernetes/config/docker/init/src/config/consul/consul-agent-config/sdnc-sdnhost.json new file mode 100644 index 0000000000..93d5b1a115 --- /dev/null +++ b/kubernetes/config/docker/init/src/config/consul/consul-agent-config/sdnc-sdnhost.json @@ -0,0 +1,22 @@ +{ + "service": { + "name": "Health Check: SDNC - SDN Host", + "checks": [ + { + "id": "sdnc-sdnhost", + "name": "SDNC SDN Host Health Check", + "http": "http://sdnhost.onap-sdnc:8282/apidoc/explorer/index.html", + "method": "HEAD", + "header": { + "Authorization": ["Basic YWRtaW46S3A4Yko0U1hzek0wV1hsaGFrM2VIbGNzZTJnQXc4NHZhb0dHbUp2VXkyVQ=="], + "Cache-Control": ["no-cache"], + "Content-Type": ["application/json"], + "Accept": ["application/json"] + }, + "tls_skip_verify": true, + "interval": "15s", + "timeout": "1s" + } + ] + } +} |