aomarket-bot

Standalone Anarchy Online market-tracking bot

View the Project on GitHub zznathans/aomarket-bot

aomarket-bot

Helm chart to deploy aomarket-bot — the chart lives in this repo rather than a separate one, alongside the code it deploys.

Install

helm repo add aomarket-bot https://marketbot.ao.yeetbox.net/
helm repo update
helm install aomarket-bot aomarket-bot/aomarket-bot \
  --set aomarketBot.secret.databaseUrl="postgresql+asyncpg://user:pass@host:5432/dbname"

The chart is published on every release, from the same gh-pages branch this repo’s GitHub Pages site is served from — see .github/workflows/release.yml’s publish-chart job.

Requirements

Key values

Value Default Notes
aomarketBot.replicaCount 1 Keep at 1 — see the warning inline in values.yaml: the bot thread holds a single AO chat session, and there’s no separate migration Job.
aomarketBot.image.repository / .tag ghcr.io/zznathans/aomarket-bot / 1.0.0 Always a real released semver; the pipeline never publishes a floating/latest tag.
aomarketBot.image.variant "regular" "regular" or "slim". Every release publishes both. The slim variant is built by dynamically analyzing the regular image and stripping anything not observed — smaller, but can be less stable if a rarely-exercised code path needs something that got stripped. Only switch if you’ve validated it for your workload.
aomarketBot.createSecret true true renders a plain Secret from aomarketBot.secret.*. Set false to instead render an ExternalSecret from aomarketBot.externalSecret.* against a ClusterSecretStore.
aomarketBot.aodbApiUrl / .gmiApiUrl live defaults Only change if you’re pointing at different instances of these services.

See values.yaml for the complete, commented list.

What it renders

There’s no ArgoCD Application wiring in this chart — just the chart itself, for now.