fierce-magician-24790
07/24/2026, 1:33 AMflyte start devbox died at the "Starting container" step with docker: Error response from daemon: \tmp\.kube is not a valid Windows path.
The cause: a Windows bug in the Flyte SDK itself — _devbox.py hardcodes /tmp/.kube as the host directory it bind-mounts into the devbox container for the k3s kubeconfig. On Windows that renders as \tmp\.kube with no drive letter, which Docker rejects.
The fix: I patched the installed copy in your venv so that on Windows it uses your real temp directory (%TEMP%\flyte-devbox-kube) instead; behavior on Linux/macOS is unchanged. Two caveats worth knowing:
• This patch lives in`.venv`— if you ever reinstall or upgrade the`flyte`package, it'll be overwritten. It's a legitimate upstream bug in`flyte`2.5.14, worth filing on the flyte repo (I can draft that issue if you want).
• You don't have`kubectl`on PATH as far as I've seen, so the launcher will print a warning and skip the kubeconfig merge — that's fine; it's only needed if you want to poke at the k3s cluster directly, not for deploying pipelines.
The first start pulls the full devbox image (several GB), so it'll take a few minutes. I'll pick it back up when it finishes — next steps after that are confirming the UI at localhost/v2 is up, then the cluster secrets (github-token, anthropic-api-key) and deploy, which will need tokens from you.swift-church-94876
07/24/2026, 3:10 AMpowerful-horse-58724
07/27/2026, 5:05 PMdelightful-solstice-18580
08/17/2026, 10:36 PM