I found an issue in the Codex Helm setup docs:
https://github.com/openabdev/openab/blob/main/docs/codex.md
The example is missing:
--set agents.codex.discord.enabled=true
This is important for Discord deployments. In my test, I installed Codex with the documented Helm arguments plus Discord token/channel settings, but the pod failed with:
Error: no adapter configured — add [discord], [slack], and/or [gateway] to config.toml
After checking the rendered manifest, the DISCORD_BOT_TOKEN secret/env var was present, but the generated config.toml did not include a [discord] section.
Adding:
--set agents.codex.discord.enabled=true
fixed the problem. After that, the rendered config included [discord], and the pod started normally.
Suggested docs fix: update the Helm install example in docs/codex.md to explicitly include --set agents.codex.discord.enabled=true.
I found an issue in the Codex Helm setup docs:
https://github.com/openabdev/openab/blob/main/docs/codex.md
The example is missing:
This is important for Discord deployments. In my test, I installed Codex with the documented Helm arguments plus Discord token/channel settings, but the pod failed with:
After checking the rendered manifest, the DISCORD_BOT_TOKEN secret/env var was present, but the generated config.toml did not include a [discord] section.
Adding:
fixed the problem. After that, the rendered config included [discord], and the pod started normally.
Suggested docs fix: update the Helm install example in docs/codex.md to explicitly include --set agents.codex.discord.enabled=true.