Add missing consul grpc config (#17943)

This commit is contained in:
Bruce Lok
2023-07-24 21:39:23 +10:00
committed by GitHub
parent 03cde51720
commit 7173d3bc25
2 changed files with 11 additions and 2 deletions

View File

@@ -10,5 +10,11 @@
"service": {
"name": "consul"
},
"retry_join": ["RETRY_JOIN"]
"retry_join": ["RETRY_JOIN"],
"ports": {
"grpc": 8502
},
"connect": {
"enabled": true
}
}

View File

@@ -5,5 +5,8 @@
"bind_addr": "0.0.0.0",
"client_addr": "0.0.0.0",
"advertise_addr": "IP_ADDRESS",
"retry_join": ["RETRY_JOIN"]
"retry_join": ["RETRY_JOIN"],
"ports": {
"grpc": 8502
}
}