agentic-os/tools-mcp/mcp-github/deployment.yaml

30 lines
644 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: mcp-github
namespace: tools-mcp
labels:
app.kubernetes.io/name: mcp-github
spec:
replicas: 1
selector:
matchLabels:
app.kubernetes.io/name: mcp-github
template:
metadata:
labels:
app.kubernetes.io/name: mcp-github
spec:
containers:
- name: mcp
image: python:3.11-slim
imagePullPolicy: IfNotPresent
command: ["sleep", "infinity"]
ports:
- containerPort: 3000
name: mcp
resources:
requests:
cpu: 100m
memory: 256Mi