Here's the error: ``` Detected node IP: 10.0.150.253 --- Sending config to 10.0.150.253 --- HTTP status: 200 --- Restarting kubelet --- nsenter: failed to execute bash: No such file or directory ``` Happening [here](https://github.com/simplyblock/sbcli/blob/main/simplyblock_web/templates/storage_init_job.yaml.j2#L45): ``` nsenter --target 1 --mount --uts --ipc --net --pid -- bash -c ' if command -v systemctl >/dev/null 2>&1; then echo "Restarting kubelet..." systemctl restart kubelet && echo "Kubelet restarted" || echo "Kubelet restart failed" else echo "systemctl not found; skipping kubelet restart" fi ``` This doesn't need bash so could be resolved by using `/bin/sh` instead.