DodoApp: Support dev virtual machines

Change-Id: Ib7641adb5be477bdde7cd9a06df4b45aa65a1c01
diff --git a/core/installer/values-tmpl/metallb-ipaddresspool.cue b/core/installer/values-tmpl/metallb-ipaddresspool.cue
index 47236ce..a0bb4e5 100644
--- a/core/installer/values-tmpl/metallb-ipaddresspool.cue
+++ b/core/installer/values-tmpl/metallb-ipaddresspool.cue
@@ -9,26 +9,26 @@
 name: "metallb-ipaddresspool"
 namespace: "metallb-ipaddresspool"
 
-images: {}
-
-charts: {
-	metallbIPAddressPool: {
-		kind: "GitRepository"
-		address: "https://code.v1.dodo.cloud/helm-charts"
-		branch: "main"
-		path: "charts/metallb-ipaddresspool"
+out: {
+	charts: {
+		metallbIPAddressPool: {
+			kind: "GitRepository"
+			address: "https://code.v1.dodo.cloud/helm-charts"
+			branch: "main"
+			path: "charts/metallb-ipaddresspool"
+		}
 	}
-}
 
-helm: {
-	"metallb-ipaddresspool-\(input.name)": {
-		chart: charts.metallbIPAddressPool
-		values: {
-			name: input.name
-			from: input.from
-			to: input.to
-			autoAssign: input.autoAssign
-			namespace: input.namespace
+	helm: {
+		"metallb-ipaddresspool-\(input.name)": {
+			chart: charts.metallbIPAddressPool
+			values: {
+				name: input.name
+				from: input.from
+				to: input.to
+				autoAssign: input.autoAssign
+				namespace: input.namespace
+			}
 		}
 	}
 }