fix(beads-server): persist GRAPHQLAPI_URL in Terraform
The env var was only set via kubectl and got overwritten on next apply. Now permanently in the deployment spec. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
afb8a16623
commit
da6b82ed5c
1 changed files with 4 additions and 0 deletions
|
|
@ -280,6 +280,10 @@ resource "kubernetes_deployment" "workbench" {
|
|||
name = "NODE_OPTIONS"
|
||||
value = "--dns-result-order=ipv4first"
|
||||
}
|
||||
env {
|
||||
name = "GRAPHQLAPI_URL"
|
||||
value = "https://dolt-workbench.viktorbarzin.me/graphql"
|
||||
}
|
||||
|
||||
volume_mount {
|
||||
name = "store"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue