Retire env-var codex auth path from LiteLLM pod (ADR-014 Phase A)#374
Merged
Conversation
Pod-side device-auth via the codex-cli sidecar (ADR-014) is the live
auth source for ChatGPT/Codex. The env-var-fed path (laptop-device-auth
tokens uploaded to GCP SM → secret → env var) is dead-on-arrival under
cluster-IP-bound OAuth — those tokens 401 token_invalidated on first
cluster use regardless of JWT exp.
- codex-auth-rotator: drop env-var fallback branch in get_candidates;
pod-side /chatgpt-auth/auth-N.json is the only source. Drop unused
OPENAI_CODEX_*_{1,2,3} env vars (only CLIENT_ID remains for OAuth
refresh).
- codex-auth-seed init: replace 150-line env-var seeder with a 40-line
pod-side seeder so LiteLLM has auth.json ready before boot (avoids
startup race with rotator sidecar). Drops all OPENAI_CODEX_* env vars
from init container too.
- LiteLLM main container: drop unused OPENAI_CODEX_ACCESS_TOKEN[_2|_3]
env vars; litellm-config no longer references them.
Net: 212 lines of legacy auth code gone.
Phase B follow-ups (#371-#373) cover clawdbot env vars, the daily refresh
job, and the presets.ts audit.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Phase B (deferred, filed as issues)
Test plan
🤖 Generated with Claude Code