diff options
author | Alexis de Talhouƫt <alexis.de_talhouet@bell.ca> | 2018-01-09 13:40:39 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-01-09 13:40:39 +0000 |
commit | a1bbaf38a46f3102a9ea4a20eae90d73251dfa86 (patch) | |
tree | 13fb3d7b7a4dbc033a697f5b7545d7faeaabd0f6 /kubernetes/config | |
parent | eea3dd646bde2a175805182fbbce9425892dad2b (diff) | |
parent | e7da64e15ac463e7c0684fd6dbfd5bbff7ed4161 (diff) |
Merge "SDNC portal heatlh check"
Diffstat (limited to 'kubernetes/config')
-rw-r--r-- | kubernetes/config/docker/init/src/config/consul/consul-agent-config/sdnc-portal-health.json | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/kubernetes/config/docker/init/src/config/consul/consul-agent-config/sdnc-portal-health.json b/kubernetes/config/docker/init/src/config/consul/consul-agent-config/sdnc-portal-health.json new file mode 100644 index 0000000000..3ecc1b3f53 --- /dev/null +++ b/kubernetes/config/docker/init/src/config/consul/consul-agent-config/sdnc-portal-health.json @@ -0,0 +1,21 @@ +{ + "service": { + "name": "Health Check: SDNC Portal", + "checks": [ + { + "id": "sdnc-portal", + "name": "SDNC Portal Health Check", + "http": "http://sdnc-portal.onap-sdnc:8843/login", + "method": "HEAD", + "header": { + "Cache-Control": ["no-cache"], + "Content-Type": ["application/json"], + "Accept": ["application/json"] + }, + "tls_skip_verify": true, + "interval": "15s", + "timeout": "1s" + } + ] + } +} |