update oci manager

This commit is contained in:
MacRimi
2026-03-12 22:50:20 +01:00
parent 6d4006fd93
commit 84d9146c04
3 changed files with 57 additions and 13 deletions
+6 -1
View File
@@ -178,7 +178,12 @@ export function SecureGatewaySetup() {
})
if (!result.success) {
setDeployError(result.message || "Deployment failed")
// Make runtime errors more user-friendly
let errorMsg = result.message || "Deployment failed"
if (errorMsg.includes("runtime not available") || errorMsg.includes("Container runtime")) {
errorMsg = "Container runtime (Podman) is required but could not be installed automatically. Please run 'apt install podman' on your Proxmox host first, then try again."
}
setDeployError(errorMsg)
setDeploying(false)
return
}