Skip to content

Commit

Permalink
Merge pull request #3720 from e-tienne/master_azure_upi_https_lbprobes
Browse files Browse the repository at this point in the history
Bug 1836016: use https for lb probes in Azure UPI
  • Loading branch information
openshift-merge-robot committed Jun 9, 2020
2 parents f18b009 + 20084cd commit b9c94af
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions upi/azure/03_infra.json
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,9 @@
{
"name" : "api-internal-probe",
"properties" : {
"protocol" : "Tcp",
"protocol" : "Https",
"port" : 6443,
"requestPath": "/readyz",
"intervalInSeconds" : 10,
"numberOfProbes" : 3
}
Expand Down Expand Up @@ -181,17 +182,19 @@
{
"name" : "api-internal-probe",
"properties" : {
"protocol" : "Tcp",
"protocol" : "Https",
"port" : 6443,
"requestPath": "/readyz",
"intervalInSeconds" : 10,
"numberOfProbes" : 3
}
},
{
"name" : "sint-probe",
"properties" : {
"protocol" : "Tcp",
"protocol" : "Https",
"port" : 22623,
"requestPath": "/healthz",
"intervalInSeconds" : 10,
"numberOfProbes" : 3
}
Expand Down

0 comments on commit b9c94af

Please sign in to comment.