Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions deploy/kubernetes/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ resources:

# Optional services
- llamacpp.yaml
- upload-service.yaml
- ingress.yaml

# Common labels
Expand Down
4 changes: 2 additions & 2 deletions deploy/kubernetes/llamacpp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -146,12 +146,12 @@ metadata:
app: context-engine
component: llamacpp
spec:
type: NodePort # Change to LoadBalancer for external access
type: ClusterIP # Change to LoadBalancer for external access
ports:
- name: http
port: 8080
targetPort: http
nodePort: 30808 # Optional: specify node port
# nodePort: 30808 # Optional: specify node port
protocol: TCP
selector:
app: context-engine
Expand Down
8 changes: 2 additions & 6 deletions deploy/kubernetes/mcp-http.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -118,17 +118,15 @@ metadata:
app: context-engine
component: mcp-memory-http
spec:
type: NodePort # Change to LoadBalancer for external access
type: ClusterIP # Change to LoadBalancer for external access
ports:
- name: http
port: 8002
targetPort: http
nodePort: 30804 # Optional: specify node port
protocol: TCP
- name: health
port: 18002
targetPort: health
nodePort: 30805 # Optional: specify node port
protocol: TCP
selector:
app: context-engine
Expand Down Expand Up @@ -310,17 +308,15 @@ metadata:
app: context-engine
component: mcp-indexer-http
spec:
type: NodePort # Change to LoadBalancer for external access
type: ClusterIP # Change to LoadBalancer for external access
ports:
- name: http
port: 8003
targetPort: http
nodePort: 30806 # Optional: specify node port
protocol: TCP
- name: health
port: 18003
targetPort: health
nodePort: 30807 # Optional: specify node port
protocol: TCP
selector:
app: context-engine
Expand Down
4 changes: 1 addition & 3 deletions deploy/kubernetes/mcp-indexer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -111,17 +111,15 @@ metadata:
app: context-engine
component: mcp-indexer
spec:
type: NodePort # Change to LoadBalancer for external access
type: ClusterIP # Change to LoadBalancer for external access
ports:
- name: sse
port: 8001
targetPort: sse
nodePort: 30802 # Optional: specify node port
protocol: TCP
- name: health
port: 18001
targetPort: health
nodePort: 30803 # Optional: specify node port
protocol: TCP
selector:
app: context-engine
Expand Down
4 changes: 1 addition & 3 deletions deploy/kubernetes/mcp-memory.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,17 +102,15 @@ metadata:
app: context-engine
component: mcp-memory
spec:
type: NodePort # Change to LoadBalancer for external access
type: ClusterIP # Change to LoadBalancer for external access
ports:
- name: sse
port: 8000
targetPort: sse
nodePort: 30800 # Optional: specify node port
protocol: TCP
- name: health
port: 18000
targetPort: health
nodePort: 30801 # Optional: specify node port
protocol: TCP
selector:
app: context-engine
Expand Down
2 changes: 1 addition & 1 deletion deploy/kubernetes/upload-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ spec:
- name: http
port: 8002
targetPort: http
nodePort: 30804 # Optional: specify node port
nodePort: 30810 # Optional: specify node port
protocol: TCP
selector:
app: context-engine
Expand Down
Loading