feat(neuron): add alpha slot + lb Service; standardize all slots to port 8001

This commit is contained in:
Will Anderson
2026-04-23 13:47:21 -05:00
parent 6dd67730b7
commit 27b4b1e066
4 changed files with 128 additions and 7 deletions
+7 -7
View File
@@ -24,12 +24,12 @@ spec:
command:
- bash
- -c
- mkdir -p /root/.neuron && ln -sf /data/neuron.db /root/.neuron/neuron.db && python -m synapse platform serve --mcp-host 0.0.0.0 --mcp-port 8002 --webhook-port 3848
- mkdir -p /root/.neuron && ln -sf /data/neuron.db /root/.neuron/neuron.db && python -m synapse platform serve --mcp-host 0.0.0.0 --mcp-port 8001 --webhook-port 3847
ports:
- name: mcp
containerPort: 8002
containerPort: 8001
- name: webhook
containerPort: 3848
containerPort: 3847
envFrom:
- configMapRef:
name: neuron-config
@@ -81,9 +81,9 @@ spec:
app: neuron-beta
ports:
- name: mcp
port: 8002
targetPort: 8002
port: 8001
targetPort: 8001
- name: webhook
port: 3848
targetPort: 3848
port: 3847
targetPort: 3847
type: ClusterIP