Add Deployment, ExternalSecret, and Service manifests for 10 new strategy bots: - scout (Python) - assassin (Rust) - defender (C#) - farmer (Go) - kamikaze (Node) - nomad (Python) - opportunist (Go) - pacifist (Node) - phalanx (Rust) - raider (Java) Each bot includes: - Deployment with ArgoCD Image Updater annotations - ExternalSecret for OpenBao shared-secret - ClusterIP service (bot-<name>.acb-bots.svc.cluster.local) Resource allocations tailored per language (JVM/C#/Rust = higher, Go/Python/Node = lower) Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
22 lines
518 B
YAML
22 lines
518 B
YAML
# bot-nomad: Service for NomadBot
|
|
# DNS: http://bot-nomad.acb-bots.svc.cluster.local
|
|
#
|
|
# Staging file — sync to declarative-config/k8s/iad-acb/acb-bots/
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: bot-nomad
|
|
namespace: acb-bots
|
|
labels:
|
|
app.kubernetes.io/name: bot-nomad
|
|
app.kubernetes.io/part-of: ai-code-battle
|
|
app.kubernetes.io/component: strategy-bot
|
|
spec:
|
|
selector:
|
|
app.kubernetes.io/name: bot-nomad
|
|
ports:
|
|
- name: http
|
|
port: 80
|
|
targetPort: http
|
|
protocol: TCP
|