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>
22 lines
524 B
YAML
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
|