Remove sticky session from MCP IngressRoute — STATELESS is sessionless

This commit is contained in:
Will Anderson
2026-04-26 08:21:16 -05:00
parent 5f1c9adaa6
commit d804d71040
@@ -1,8 +1,7 @@
# 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
# Sticky sessions required: STREAMABLE transport holds session state in-memory;
# without affinity, multi-pod deploys fail with "Session not found".
# STATELESS transport: no session state, no sticky sessions needed.
apiVersion: traefik.io/v1alpha1
kind: IngressRoute
@@ -18,8 +17,3 @@ spec:
services:
- name: neuron-mcp
port: 8080
sticky:
cookie:
name: neuron_mcp_affinity
secure: true
httpOnly: true