Fix image reference formatting in appRender for correct Docker image path

This commit is contained in:
suyiiyii 2025-03-14 21:41:11 +08:00
parent c62e160288
commit 298e82bcb8
Signed by: suyiiyii
GPG Key ID: 044704CB29B8AD85

View File

@ -24,7 +24,7 @@ appRender = lambda a: App {
template.spec.containers = [ template.spec.containers = [
{ {
name = a.name name = a.name
image = "cr.suyiiyii.top/docker.io" + a.image image = "cr.suyiiyii.top/docker.io/" + a.image
ports = [{containerPort = a.port}] ports = [{containerPort = a.port}]
} }
] ]