app-repo: archive
diff --git a/apps/app-repository/apps-unarchived/soft-serve-0.0.1/Chart.yaml b/apps/app-repository/apps-unarchived/soft-serve-0.0.1/Chart.yaml
new file mode 100644
index 0000000..e85ce27
--- /dev/null
+++ b/apps/app-repository/apps-unarchived/soft-serve-0.0.1/Chart.yaml
@@ -0,0 +1,7 @@
+name: soft-serve
+version: 0.0.1
+description: A tasty, self-hostable Git server for the command line. 🍦
+namespaces:
+- soft-serve
+icon: |
+  <svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 48 48"><g fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="4"><path stroke-linejoin="round" d="M15.34 22.5L21 37l3 6l3-6l5.66-14.5"/><path d="M19 32h10"/><path stroke-linejoin="round" d="M24 3c-6 0-8 6-8 6s-6 2-6 7s5 7 5 7s3.5-2 9-2s9 2 9 2s5-2 5-7s-6-7-6-7s-2-6-8-6Z"/></g></svg>
diff --git a/apps/app-repository/apps-unarchived/soft-serve-0.0.1/README.md b/apps/app-repository/apps-unarchived/soft-serve-0.0.1/README.md
new file mode 100644
index 0000000..28e43a8
--- /dev/null
+++ b/apps/app-repository/apps-unarchived/soft-serve-0.0.1/README.md
@@ -0,0 +1 @@
+Soft-Serve with TCP ingress
diff --git a/apps/app-repository/apps-unarchived/soft-serve-0.0.1/schema.json b/apps/app-repository/apps-unarchived/soft-serve-0.0.1/schema.json
new file mode 100644
index 0000000..8142797
--- /dev/null
+++ b/apps/app-repository/apps-unarchived/soft-serve-0.0.1/schema.json
@@ -0,0 +1,10 @@
+{
+  "type": "object",
+  "properties": {
+    "Network": { "type": "string", "default": "Public", "role": "network" },
+    "Subdomain": { "type": "string", "default": "softserve" },
+	"AdminKey": { "type": "string" },
+	"SourcePort": { "type": "string", "default": "0" }
+  },
+  "additionalProperties": false
+}
diff --git a/apps/app-repository/apps-unarchived/soft-serve-0.0.1/templates/soft-serve.yaml b/apps/app-repository/apps-unarchived/soft-serve-0.0.1/templates/soft-serve.yaml
new file mode 100644
index 0000000..529986b
--- /dev/null
+++ b/apps/app-repository/apps-unarchived/soft-serve-0.0.1/templates/soft-serve.yaml
@@ -0,0 +1,28 @@
+apiVersion: helm.toolkit.fluxcd.io/v2beta1
+kind: HelmRelease
+metadata:
+  name: soft-serve
+  namespace: {{ .Release.Namespace }}
+spec:
+  chart:
+    spec:
+      chart: charts/soft-serve
+      sourceRef:
+        kind: GitRepository
+        name: pcloud
+        namespace: {{ .Global.Id }}
+  interval: 1m0s
+  values:
+    reservedIP: ""
+    addressPool: {{ .Global.Id }}
+    adminKey: {{ .Values.AdminKey }}
+    {{- if .Values.Network }}
+    ingress:
+      enabled: true # TODO(giolekva): make it configurable
+      ingressClassName: {{ .Values.Network.IngressClass }}
+      certificateIssuer: {{ .Values.Network.CertificateIssuer }}
+      domain: {{ .Values.Subdomain }}.{{ .Values.Network.Domain }}
+      {{- if .Values.SourcePort }}
+      sourcePort: {{ .Values.SourcePort }}
+      {{- end }}
+    {{- end }}