From 298e82bcb8d06446773f8198cd33559bd70dcd34 Mon Sep 17 00:00:00 2001 From: suyiiyii Date: Fri, 14 Mar 2025 21:41:11 +0800 Subject: [PATCH] Fix image reference formatting in appRender for correct Docker image path --- base/deploy.k | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/deploy.k b/base/deploy.k index 637febb..58c3512 100644 --- a/base/deploy.k +++ b/base/deploy.k @@ -24,7 +24,7 @@ appRender = lambda a: App { template.spec.containers = [ { name = a.name - image = "cr.suyiiyii.top/docker.io" + a.image + image = "cr.suyiiyii.top/docker.io/" + a.image ports = [{containerPort = a.port}] } ]