Hey everyone! I'm pretty new to this whole cloud infra thing, but I was given a task to get OpenClaw (that new open-source security scanner) running in a completely air-gapped network at my job. No internet at all. It was... a puzzle 😅
I learned you can't just `docker pull`. Had to get the container images, their dependencies, and the Helm chart onto a USB drive from a machine with internet. The trickiest part was figuring out all the nested image dependencies for the operators. I used `skopeo` to copy them to a local registry we set up inside the air gap. Biggest lesson? Always check the image list in the Helm chart *before* you disconnect! Took me three tries to get everything. Anyone else tackled something like this? I'd love to hear easier ways!