Cannot create sandbox pod #4872
Replies: 1 comment
|
I think you've hit a gap in that chart version. I checked commit The 401 isn't caused by the generated app secrets. The provisioner uses a separate deer-flow/docker/provisioner/app.py Line 85 in 45865e9 deer-flow/docker/provisioner/app.py Lines 209 to 215 in 45865e9 So the values/config side should look like this: secrets:
DEERFLOW_LLM_API_KEY: "..."
PROVISIONER_API_KEY: "<same-random-value>"sandbox:
provisioner_url: http://provisioner:8002
provisioner_api_key: $PROVISIONER_API_KEYThere's one more piece: this version of the chart loads the flat - name: PROVISIONER_API_KEY
valueFrom:
secretKeyRef:
name: deerflow-deer-flow-provider
key: PROVISIONER_API_KEYThe missing env wiring is here: Also, |

I think you've hit a gap in that chart version. I checked commit
45865e9, which matches the commit in2.1.0-nightly.20260715-45865e9.The 401 isn't caused by the generated app secrets. The provisioner uses a separate
PROVISIONER_API_KEY, and it rejects every/api/*request when that variable is missing or doesn't match the gateway'sX-API-Key:deer-flow/docker/provisioner/app.py
Line 85 in 45865e9
deer-flow/docker/provisioner/app.py
Lines 209 to 215 in 45865e9