Route /.well-known, /oauth2, /login, /sse, /message to neuron-mcp
OAuth discovery endpoints (/.well-known/oauth-protected-resource and /.well-known/oauth-authorization-server) and the authorization server paths (/oauth2/*, /login) were routing to neuron-rest, which has none of those endpoints. MCP also uses /sse and /message directly. All five path prefixes now route to neuron-mcp on port 8080.
This commit is contained in:
@@ -24,6 +24,41 @@ spec:
|
||||
name: neuron-mcp
|
||||
port:
|
||||
number: 8080
|
||||
- path: /sse
|
||||
pathType: Prefix
|
||||
backend:
|
||||
service:
|
||||
name: neuron-mcp
|
||||
port:
|
||||
number: 8080
|
||||
- path: /message
|
||||
pathType: Prefix
|
||||
backend:
|
||||
service:
|
||||
name: neuron-mcp
|
||||
port:
|
||||
number: 8080
|
||||
- path: /.well-known
|
||||
pathType: Prefix
|
||||
backend:
|
||||
service:
|
||||
name: neuron-mcp
|
||||
port:
|
||||
number: 8080
|
||||
- path: /oauth2
|
||||
pathType: Prefix
|
||||
backend:
|
||||
service:
|
||||
name: neuron-mcp
|
||||
port:
|
||||
number: 8080
|
||||
- path: /login
|
||||
pathType: Prefix
|
||||
backend:
|
||||
service:
|
||||
name: neuron-mcp
|
||||
port:
|
||||
number: 8080
|
||||
- path: /license
|
||||
pathType: Prefix
|
||||
backend:
|
||||
|
||||
Reference in New Issue
Block a user