AppManager: Format cue files

Change-Id: Ia37908797b0227ab3b66e0faab08dcc2379e5282
diff --git a/core/installer/values-tmpl/etherpad.cue b/core/installer/values-tmpl/etherpad.cue
index a70b7cd..cf168fa 100644
--- a/core/installer/values-tmpl/etherpad.cue
+++ b/core/installer/values-tmpl/etherpad.cue
@@ -1,25 +1,25 @@
 input: {
-	network: #Network @name(Network)
-	subdomain: string @name(Subdomain)
-	auth: #Auth @name(Authentication)
+	network:   #Network @name(Network)
+	subdomain: string   @name(Subdomain)
+	auth:      #Auth    @name(Authentication)
 }
 
 _domain: "\(input.subdomain).\(input.network.domain)"
 
-name: "etherpad"
-namespace: "app-etherpad"
-readme: "Etherpad is a highly customizable open source online editor providing collaborative editing in really real-time."
+name:        "etherpad"
+namespace:   "app-etherpad"
+readme:      "Etherpad is a highly customizable open source online editor providing collaborative editing in really real-time."
 description: "Etherpad is a highly customizable open source online editor providing collaborative editing in really real-time."
 icon: """
-<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 48 48"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M38.5 5.5h-29c-2.2 0-4 1.8-4 4v29c0 2.2 1.8 4 4 4h29c2.2 0 4-1.8 4-4v-29c0-2.2-1.8-4-4-4"/><circle cx="24" cy="24" r="13.9" fill="none" stroke="currentColor" stroke-miterlimit="7"/><path fill="none" stroke="currentColor" d="M14.5 5.5v37m19-37v37"/></svg>"""
+	<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 48 48"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M38.5 5.5h-29c-2.2 0-4 1.8-4 4v29c0 2.2 1.8 4 4 4h29c2.2 0 4-1.8 4-4v-29c0-2.2-1.8-4-4-4"/><circle cx="24" cy="24" r="13.9" fill="none" stroke="currentColor" stroke-miterlimit="7"/><path fill="none" stroke="currentColor" d="M14.5 5.5v37m19-37v37"/></svg>"""
 
 _httpPortName: "http"
 
 out: {
 	ingress: {
 		etherpad: {
-			auth: input.auth
-			network: input.network
+			auth:      input.auth
+			network:   input.network
 			subdomain: input.subdomain
 			service: {
 				name: "etherpad"
@@ -31,18 +31,18 @@
 	images: {
 		etherpad: {
 			repository: "etherpad"
-			name: "etherpad"
-			tag: "2.2.5"
+			name:       "etherpad"
+			tag:        "2.2.5"
 			pullPolicy: "IfNotPresent"
 		}
 	}
 
 	charts: {
 		etherpad: {
-			kind: "GitRepository"
+			kind:    "GitRepository"
 			address: "https://code.v1.dodo.cloud/helm-charts"
-			branch: "main"
-			path: "charts/etherpad"
+			branch:  "main"
+			path:    "charts/etherpad"
 		}
 	}
 
@@ -56,22 +56,22 @@
 	helm: {
 		etherpad: {
 			chart: charts.etherpad
-			info: "Installing etherpad server"
+			info:  "Installing etherpad server"
 			values: {
 				image: {
 					repository: images.etherpad.fullName
-					tag: images.etherpad.tag
+					tag:        images.etherpad.tag
 					pullPolicy: images.etherpad.pullPolicy
 				}
-				portName: _httpPortName
+				portName:                  _httpPortName
 				persistentVolumeClaimName: volume.data.name
 				db: {
-					type: "postgres"
-					host: "postgres-db.\(release.namespace).svc.cluster.local"
-					port: 5432
-					name: "postgres"
-					user: "postgres"
-					pass: "postgres"
+					type:    "postgres"
+					host:    "postgres-db.\(release.namespace).svc.cluster.local"
+					port:    5432
+					name:    "postgres"
+					user:    "postgres"
+					pass:    "postgres"
 					charset: "utf8mb4"
 				}
 			}