Files
aiworker/k8s/agents

Agent Deployment

Prerequisites

  1. Create namespace:
kubectl apply -f namespace.yaml
  1. Copy registry secret to agents namespace:
kubectl get secret gitea-registry -n control-plane -o yaml | \
  sed 's/namespace: control-plane/namespace: agents/' | \
  kubectl apply -f -
  1. Create agent secrets (replace with actual values):
kubectl create secret generic agent-secrets -n agents \
  --from-literal=anthropic-api-key='YOUR_ANTHROPIC_API_KEY' \
  --from-literal=gitea-token='159a5de2a16d15f33e388b55b1276e431dbca3f3'

Deploy

kubectl apply -f deployment.yaml

Verify

kubectl get pods -n agents
kubectl logs -f -n agents deployment/claude-agent

Check agent registration

curl -s https://api.fuq.tv/api/agents | jq