blob: 9505246c25fda5005ea1f13d784c12711b37063d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{
"service": {
"name": "Health Check: APPC - Dgbuilder",
"checks": [
{
"id": "appc-dgbuilder",
"name": "APPC-Dgbuilder Server Health Check",
"http": "http://appc-dgbuilder.{{ .Values.nsPrefix }}:3000/",
"method": "HEAD",
"header": {
"Authorization": ["Basic ZGd1c2VyOnRlc3QxMjM="],
"Cache-Control": ["no-cache"],
"Content-Type": ["application/json"],
"Accept": ["application/json"]
},
"tls_skip_verify": true,
"interval": "15s",
"timeout": "1s"
}
]
}
}
|