feat!: default CODER_AI_GATEWAY_ENABLED to true (#25575)

`CODER_AI_GATEWAY_ENABLED` / `CODER_AIBRIDGE_ENABLED` is now being defaulted to `true` now that it will be used by Coder Agents.

If you previously had this value disabled explicitly, that value will persist.
This commit is contained in:
Danny Kopping
2026-05-22 08:57:36 +02:00
committed by GitHub
parent 9341efec9f
commit c50b0e84b9
7 changed files with 12 additions and 11 deletions
+3 -3
View File
@@ -250,7 +250,7 @@ func (n FeatureName) Humanize() string {
case FeatureSCIM:
return "SCIM"
case FeatureAIBridge:
return "AI Bridge"
return "AI Gateway"
case FeatureAIGovernanceUserLimit:
return "AI Governance User Limit"
default:
@@ -1705,7 +1705,7 @@ func (c *DeploymentValues) Options() serpent.OptionSet {
Flag: "ai-gateway-enabled",
Env: "CODER_AI_GATEWAY_ENABLED",
Value: &c.AI.BridgeConfig.Enabled,
Default: "false",
Default: "true",
Group: &deploymentGroupAIGateway,
YAML: "enabled",
}
@@ -4055,7 +4055,7 @@ Write out the current server config as YAML to stdout.`,
Flag: "aibridge-enabled",
Env: "CODER_AIBRIDGE_ENABLED",
Value: &c.AI.BridgeConfig.Enabled,
Default: "false",
Default: "true",
Group: &deploymentGroupAIBridge,
YAML: "enabled",
Hidden: true,