AppManager: Format cue files

Change-Id: Ia37908797b0227ab3b66e0faab08dcc2379e5282
diff --git a/core/installer/values-tmpl/metallb-ipaddresspool.cue b/core/installer/values-tmpl/metallb-ipaddresspool.cue
index a0bb4e5..36c11bb 100644
--- a/core/installer/values-tmpl/metallb-ipaddresspool.cue
+++ b/core/installer/values-tmpl/metallb-ipaddresspool.cue
@@ -1,21 +1,21 @@
 input: {
-	name: string
-	from: string
-	to: string
+	name:       string
+	from:       string
+	to:         string
 	autoAssign: bool | *false
-	namespace: string
+	namespace:  string
 }
 
-name: "metallb-ipaddresspool"
+name:      "metallb-ipaddresspool"
 namespace: "metallb-ipaddresspool"
 
 out: {
 	charts: {
 		metallbIPAddressPool: {
-			kind: "GitRepository"
+			kind:    "GitRepository"
 			address: "https://code.v1.dodo.cloud/helm-charts"
-			branch: "main"
-			path: "charts/metallb-ipaddresspool"
+			branch:  "main"
+			path:    "charts/metallb-ipaddresspool"
 		}
 	}
 
@@ -23,11 +23,11 @@
 		"metallb-ipaddresspool-\(input.name)": {
 			chart: charts.metallbIPAddressPool
 			values: {
-				name: input.name
-				from: input.from
-				to: input.to
+				name:       input.name
+				from:       input.from
+				to:         input.to
 				autoAssign: input.autoAssign
-				namespace: input.namespace
+				namespace:  input.namespace
 			}
 		}
 	}