aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/consul/resources/config/consul-agent-config/aai-services-health.json
blob: 99acff4e619f1ff80434c94d2e2e9012e64ef062 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
  "service": {
    "name": "Active and Available Inventory",
    "checks": [
      {
        "id": "aai-service",
        "name": "Core A&AI",
        "http": "https://aai.{{ .Release.Namespace }}:8443/aai/util/echo",
        "header": {
          "Authorization": ["Basic QUFJOkFBSQ=="],
          "X-TransactionId": ["ConsulHealthCheck"],
          "X-FromAppId": ["healthcheck"]
        },
        "tls_skip_verify": true,
        "interval": "15s",
        "timeout": "1s"
      },
      {
        "id": "aai-resources",
        "name": "Resources Microservice",
        "http": "https://aai-resources.{{ .Release.Namespace }}:8447/aai/util/echo",
        "header": {
          "Authorization": ["Basic QUFJOkFBSQ=="],
          "X-TransactionId": ["ConsulHealthCheck"],
          "X-FromAppId": ["healthcheck"]
        },
        "tls_skip_verify": true,
        "interval": "15s",
        "timeout": "1s"
      },
      {
        "id": "aai-traversal",
        "name": "Traversal Microservice",
        "http": "https://aai-traversal.{{ .Release.Namespace }}:8446/aai/util/echo",
        "header": {
          "Authorization": ["Basic QUFJOkFBSQ=="],
          "X-TransactionId": ["ConsulHealthCheck"],
          "X-FromAppId": ["healthcheck"]
        },
        "tls_skip_verify": true,
        "interval": "15s",
        "timeout": "1s"
      }
    ]
  }
}