ai-code-battle/manifests/acb-bots/bot-random-service.yml
jedarden 1c61d80bd4 feat(manifests): add acb-bots namespace with K8s manifests for 6 strategy bots
Creates manifests/acb-bots/ staging directory for the acb-bots namespace,
containing Deployment + Service + ExternalSecret for all 6 strategy bots
(random, gatherer, rusher, guardian, swarm, hunter) plus namespace and
docker-hub-registry ExternalSecret.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-23 23:22:09 -04:00

22 lines
524 B
YAML

# bot-random: Service for RandomBot
# DNS: http://bot-random.acb-bots.svc.cluster.local
#
# Staging file — sync to declarative-config/k8s/iad-acb/acb-bots/
---
apiVersion: v1
kind: Service
metadata:
name: bot-random
namespace: acb-bots
labels:
app.kubernetes.io/name: bot-random
app.kubernetes.io/part-of: ai-code-battle
app.kubernetes.io/component: strategy-bot
spec:
selector:
app.kubernetes.io/name: bot-random
ports:
- name: http
port: 80
targetPort: http
protocol: TCP