Add Traefik IngressRoute for neuron.neurontechnologies.ai MCP endpoint
This commit is contained in:
@@ -12,6 +12,7 @@ resources:
|
|||||||
- ingress.yaml
|
- ingress.yaml
|
||||||
- license-ingressroute.yaml
|
- license-ingressroute.yaml
|
||||||
- rest-ingressroute.yaml
|
- rest-ingressroute.yaml
|
||||||
|
- mcp-ingressroute.yaml
|
||||||
- backup-cronjob.yaml
|
- backup-cronjob.yaml
|
||||||
- runpod-inference.yaml
|
- runpod-inference.yaml
|
||||||
- runpod-lb-configmap.yaml
|
- runpod-lb-configmap.yaml
|
||||||
|
|||||||
@@ -0,0 +1,18 @@
|
|||||||
|
# Traefik IngressRoute: neuron.neurontechnologies.ai → neuron-mcp service
|
||||||
|
# Exposes the Neuron MCP server externally via Cloudflare tunnel.
|
||||||
|
# MCP client config: url = https://neuron.neurontechnologies.ai/mcp
|
||||||
|
|
||||||
|
apiVersion: traefik.io/v1alpha1
|
||||||
|
kind: IngressRoute
|
||||||
|
metadata:
|
||||||
|
name: neuron-mcp-api
|
||||||
|
namespace: neuron-prod
|
||||||
|
spec:
|
||||||
|
entryPoints:
|
||||||
|
- websecure
|
||||||
|
routes:
|
||||||
|
- match: Host(`neuron.neurontechnologies.ai`)
|
||||||
|
kind: Rule
|
||||||
|
services:
|
||||||
|
- name: neuron-mcp
|
||||||
|
port: 8080
|
||||||
Reference in New Issue
Block a user