web-defaults.json
{
"Kind": "service-defaults",
"Name": "web",
"Protocol": "http",
"MeshGateway": {
"mode": "local"
}
}
payments-defaults.json
{
"Kind": "service-defaults",
"Name": "payments",
"Protocol": "http",
"MeshGateway": {
"mode": "local"
}
}
payments-router.json:
{
"kind": "service-router",
"name": "payments",
"routes": [
{
"match": {
"http": {
"path_prefix": "/currency"
}
},
"destination": {
"service": "currency"
}
},
{
"match": {
"http": {
"path_prefix": "/"
}
},
"destination": {
"service": "payments"
}
}
]
}