From 29f520fa5145e3349baa0eb81234fcf9e7e76107 Mon Sep 17 00:00:00 2001 From: chaodu-agent Date: Sat, 2 May 2026 08:36:40 +0000 Subject: [PATCH] docs(codex): add missing --set agents.codex.discord.enabled=true MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Helm install example was missing this flag, causing the rendered config.toml to omit the [discord] section entirely. Without it, the pod crashes with: Error: no adapter configured — add [discord], [slack], and/or [gateway] to config.toml Reproduced and validated on a fresh k3s cluster. Closes #695 --- docs/codex.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/codex.md b/docs/codex.md index 5d3232b4..27e5d2e5 100644 --- a/docs/codex.md +++ b/docs/codex.md @@ -18,6 +18,7 @@ The image installs `@zed-industries/codex-acp` and `@openai/codex` globally via ```bash helm install openab openab/openab \ --set agents.kiro.enabled=false \ + --set agents.codex.discord.enabled=true \ --set agents.codex.discord.botToken="$DISCORD_BOT_TOKEN" \ --set-string 'agents.codex.discord.allowedChannels[0]=YOUR_CHANNEL_ID' \ --set agents.codex.image=ghcr.io/openabdev/openab-codex:latest \