Add Traefik IngressRoute for neuron.neurontechnologies.ai MCP endpoint

This commit is contained in:
Will Anderson
2026-04-26 03:52:24 -05:00
parent 6ac4faabc5
commit 83b8d0768e
2 changed files with 19 additions and 0 deletions
@@ -12,6 +12,7 @@ resources:
- ingress.yaml
- license-ingressroute.yaml
- rest-ingressroute.yaml
- mcp-ingressroute.yaml
- backup-cronjob.yaml
- runpod-inference.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