- FastMCP server with 12 tools (pullzone, cache, statistics, shield) - Dockerfile with multi-stage build (python:3.11-slim + uv) - K8s manifests (Deployment + Service) - Gitea Actions CI/CD pipeline (build → push → deploy)
17 lines
256 B
YAML
17 lines
256 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: bunnycdn-mcp
|
|
namespace: default
|
|
labels:
|
|
app: bunnycdn-mcp
|
|
spec:
|
|
type: ClusterIP
|
|
selector:
|
|
app: bunnycdn-mcp
|
|
ports:
|
|
- name: mcp
|
|
port: 8001
|
|
targetPort: 8001
|
|
protocol: TCP
|