Readiness probe
curl --request GET \
--url https://harness.example.com/readyconst options = {method: 'GET'};
fetch('https://harness.example.com/ready', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://harness.example.com/ready"
response = requests.get(url)
print(response.text)System
Readiness probe
GET
/
ready
Readiness probe
curl --request GET \
--url https://harness.example.com/readyconst options = {method: 'GET'};
fetch('https://harness.example.com/ready', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://harness.example.com/ready"
response = requests.get(url)
print(response.text)Response
Ready
