mirror of
https://github.com/rennf93/roboco.git
synced 2026-08-03 07:23:24 +02:00
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>
This commit is contained in:
co-authored by
Claude Opus 4.5
parent
f9398e4caa
commit
b943eb7ac1
@@ -0,0 +1,83 @@
|
||||
# RoboCo API Deployment
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: roboco-api
|
||||
namespace: roboco
|
||||
labels:
|
||||
app.kubernetes.io/name: roboco-api
|
||||
app.kubernetes.io/component: api
|
||||
spec:
|
||||
replicas: 2
|
||||
selector:
|
||||
matchLabels:
|
||||
app: roboco-api
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: roboco-api
|
||||
app.kubernetes.io/name: roboco-api
|
||||
spec:
|
||||
containers:
|
||||
- name: api
|
||||
image: ghcr.io/renzof/roboco-api:latest
|
||||
ports:
|
||||
- containerPort: 8000
|
||||
name: http
|
||||
env:
|
||||
# Database
|
||||
- name: ROBOCO_DATABASE_HOST
|
||||
value: postgres
|
||||
- name: ROBOCO_DATABASE_PORT
|
||||
value: "5432"
|
||||
- name: ROBOCO_DATABASE_USER
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
name: roboco-secrets
|
||||
key: postgres-user
|
||||
- name: ROBOCO_DATABASE_PASSWORD
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
name: roboco-secrets
|
||||
key: postgres-password
|
||||
- name: ROBOCO_DATABASE_NAME
|
||||
value: roboco
|
||||
# Redis
|
||||
- name: ROBOCO_REDIS_HOST
|
||||
value: redis
|
||||
- name: ROBOCO_REDIS_PORT
|
||||
value: "6379"
|
||||
# API
|
||||
- name: ROBOCO_HOST
|
||||
value: "0.0.0.0"
|
||||
- name: ROBOCO_PORT
|
||||
value: "8000"
|
||||
- name: ROBOCO_ENVIRONMENT
|
||||
value: production
|
||||
# LLM
|
||||
- name: ROBOCO_ANTHROPIC_API_KEY
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
name: roboco-secrets
|
||||
key: anthropic-api-key
|
||||
resources:
|
||||
requests:
|
||||
memory: "256Mi"
|
||||
cpu: "100m"
|
||||
limits:
|
||||
memory: "1Gi"
|
||||
cpu: "500m"
|
||||
livenessProbe:
|
||||
httpGet:
|
||||
path: /health
|
||||
port: 8000
|
||||
initialDelaySeconds: 15
|
||||
periodSeconds: 10
|
||||
timeoutSeconds: 5
|
||||
readinessProbe:
|
||||
httpGet:
|
||||
path: /health
|
||||
port: 8000
|
||||
initialDelaySeconds: 5
|
||||
periodSeconds: 5
|
||||
timeoutSeconds: 3
|
||||
@@ -0,0 +1,36 @@
|
||||
# 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
|
||||
Reference in New Issue
Block a user