Fixing templates

This commit is contained in:
Cyber MacGeddon 2024-09-06 23:09:04 +01:00
parent dde52ba6a3
commit 572ad915c0
2 changed files with 2 additions and 2 deletions

View file

@ -88,7 +88,7 @@
name: containers.name, name: containers.name,
with_port:: function(src, dest) self + { port: [src, dest] }, with_port:: function(src, dest, name) self + { port: [src, dest] },
add:: function() { add:: function() {
} }

View file

@ -31,7 +31,7 @@ local images = import "values/images.jsonnet";
local service = local service =
engine.service(containerSet) engine.service(containerSet)
.with_port(7474, 7474, "api") .with_port(7474, 7474, "api")
.with_port(7687, 7687, "api2); .with_port(7687, 7687, "api2");
engine.resources([ engine.resources([
vol, vol,