Files
roboco/deploy/base/api/service.yaml
T
Renn FandClaude Opus 4.5 b943eb7ac1 feat: add Kubernetes manifests and A2A protocol support
Phase 2 - A2A Protocol:
- Add A2A models (AgentCard, Task, Message)
- Add A2A service layer
- Add A2A routes with SSE streaming
- Add agent discovery endpoints

Phase 3 - Kubernetes:
- Add deploy/ directory with Kustomize structure
- PostgreSQL StatefulSet with pgvector
- Redis Deployment with persistence
- API and Orchestrator Deployments
- RBAC for orchestrator to manage Jobs
- ArgoCD Application manifest
- Development and production overlays
- K8s Jobs API support in orchestrator

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-28 05:48:51 +01:00

37 lines
689 B
YAML

# RoboCo API Service
apiVersion: v1
kind: Service
metadata:
name: roboco-api
namespace: roboco
labels:
app.kubernetes.io/name: roboco-api
app.kubernetes.io/component: api
spec:
type: ClusterIP
ports:
- port: 8000
targetPort: 8000
name: http
selector:
app: roboco-api
---
# NodePort for external access (can be replaced with Ingress)
apiVersion: v1
kind: Service
metadata:
name: roboco-api-external
namespace: roboco
labels:
app.kubernetes.io/name: roboco-api
app.kubernetes.io/component: api
spec:
type: NodePort
ports:
- port: 8000
targetPort: 8000
nodePort: 30080
name: http
selector:
app: roboco-api