installer: migrate apps to cuelang
diff --git a/core/installer/values-tmpl/fluxcd-reconciler.cue b/core/installer/values-tmpl/fluxcd-reconciler.cue
new file mode 100644
index 0000000..8c90648
--- /dev/null
+++ b/core/installer/values-tmpl/fluxcd-reconciler.cue
@@ -0,0 +1,34 @@
+input: {}
+
+images: {
+	fluxcdReconciler: {
+		repository: "giolekva"
+		name: "fluxcd-reconciler"
+		tag: "latest"
+		pullPolicy: "Always"
+	}
+}
+
+charts: {
+	fluxcdReconciler: {
+		chart: "charts/fluxcd-reconciler"
+		sourceRef: {
+			kind: "GitRepository"
+			name: "pcloud"
+			namespace: global.pcloudEnvName
+		}
+	}
+}
+
+helm: {
+	"fluxcd-reconciler": {
+		chart: charts.fluxcdReconciler
+		values: {
+			image: {
+				repository: images.fluxcdReconciler.fullName
+				tag: images.fluxcdReconciler.tag
+				pullPolicy: images.fluxcdReconciler.pullPolicy
+			}
+		}
+	}
+}