summaryrefslogtreecommitdiff
path: root/gemfeed/examples/conf/f3s/syncthing
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-10-02 11:31:38 +0300
committerPaul Buetow <paul@buetow.org>2025-10-02 11:31:38 +0300
commitff9f3a641fec256e1f4b01fcd95590451f656f0a (patch)
tree04f4b0d8d370006bd2cc22e35c4ce76f7ba134d6 /gemfeed/examples/conf/f3s/syncthing
parentc0f9ecf5e0b075db8e54ef1235ec80878e418398 (diff)
Update content for html
Diffstat (limited to 'gemfeed/examples/conf/f3s/syncthing')
-rw-r--r--gemfeed/examples/conf/f3s/syncthing/Justfile12
-rw-r--r--gemfeed/examples/conf/f3s/syncthing/README.md20
-rw-r--r--gemfeed/examples/conf/f3s/syncthing/helm-chart/Chart.yaml5
-rw-r--r--gemfeed/examples/conf/f3s/syncthing/helm-chart/README.md11
-rw-r--r--gemfeed/examples/conf/f3s/syncthing/helm-chart/templates/deployment.yaml33
-rw-r--r--gemfeed/examples/conf/f3s/syncthing/helm-chart/templates/ingress.yaml20
-rw-r--r--gemfeed/examples/conf/f3s/syncthing/helm-chart/templates/persistent-volume.yaml55
-rw-r--r--gemfeed/examples/conf/f3s/syncthing/helm-chart/templates/service.yaml19
8 files changed, 0 insertions, 175 deletions
diff --git a/gemfeed/examples/conf/f3s/syncthing/Justfile b/gemfeed/examples/conf/f3s/syncthing/Justfile
deleted file mode 100644
index 4be94ee2..00000000
--- a/gemfeed/examples/conf/f3s/syncthing/Justfile
+++ /dev/null
@@ -1,12 +0,0 @@
-NAMESPACE := "services"
-RELEASE_NAME := "syncthing"
-CHART_PATH := "./helm-chart"
-
-install:
- helm install {{RELEASE_NAME}} {{CHART_PATH}} --namespace {{NAMESPACE}} --create-namespace
-
-upgrade:
- helm upgrade {{RELEASE_NAME}} {{CHART_PATH}} --namespace {{NAMESPACE}}
-
-delete:
- helm uninstall {{RELEASE_NAME}} --namespace {{NAMESPACE}}
diff --git a/gemfeed/examples/conf/f3s/syncthing/README.md b/gemfeed/examples/conf/f3s/syncthing/README.md
deleted file mode 100644
index 3e2344ab..00000000
--- a/gemfeed/examples/conf/f3s/syncthing/README.md
+++ /dev/null
@@ -1,20 +0,0 @@
-# Syncthing Kubernetes Deployment
-
-This directory contains the Kubernetes configuration for deploying Syncthing.
-
-## Deployment
-
-To deploy Syncthing, apply the Kubernetes manifests in this directory:
-
-```bash
-make apply
-```
-
-## Configuration
-
-The deployment uses two persistent volumes:
-- `syncthing-config-pv`: for the syncthing configuration. Mapped to `/data/nfs/k3svolumes/syncthing/config` on the host.
-- `syncthing-data-pv`: for the syncthing data. Mapped to `/data/nfs/k3svolumes/syncthing/data` on the host.
-
-The web UI is available at http://syncthing.f3s.buetow.org.
-The data port is exposed on port 22000.
diff --git a/gemfeed/examples/conf/f3s/syncthing/helm-chart/Chart.yaml b/gemfeed/examples/conf/f3s/syncthing/helm-chart/Chart.yaml
deleted file mode 100644
index 2b982524..00000000
--- a/gemfeed/examples/conf/f3s/syncthing/helm-chart/Chart.yaml
+++ /dev/null
@@ -1,5 +0,0 @@
-apiVersion: v2
-name: syncthing
-description: A Helm chart for deploying Syncthing.
-version: 0.1.0
-appVersion: "latest"
diff --git a/gemfeed/examples/conf/f3s/syncthing/helm-chart/README.md b/gemfeed/examples/conf/f3s/syncthing/helm-chart/README.md
deleted file mode 100644
index 0cc23919..00000000
--- a/gemfeed/examples/conf/f3s/syncthing/helm-chart/README.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# Syncthing Helm Chart
-
-This chart deploys Syncthing.
-
-## Installing the Chart
-
-To install the chart with the release name `my-release`, run the following command:
-
-```bash
-helm install syncthing . --namespace services --create-namespace
-```
diff --git a/gemfeed/examples/conf/f3s/syncthing/helm-chart/templates/deployment.yaml b/gemfeed/examples/conf/f3s/syncthing/helm-chart/templates/deployment.yaml
deleted file mode 100644
index 9a85a174..00000000
--- a/gemfeed/examples/conf/f3s/syncthing/helm-chart/templates/deployment.yaml
+++ /dev/null
@@ -1,33 +0,0 @@
-apiVersion: apps/v1
-kind: Deployment
-metadata:
- name: syncthing
- namespace: services
-spec:
- replicas: 1
- selector:
- matchLabels:
- app: syncthing
- template:
- metadata:
- labels:
- app: syncthing
- spec:
- containers:
- - name: syncthing
- image: lscr.io/linuxserver/syncthing:latest
- ports:
- - containerPort: 8384
- - containerPort: 22000
- volumeMounts:
- - name: syncthing-config
- mountPath: /config
- - name: syncthing-data
- mountPath: /data
- volumes:
- - name: syncthing-config
- persistentVolumeClaim:
- claimName: syncthing-config-pvc
- - name: syncthing-data
- persistentVolumeClaim:
- claimName: syncthing-data-pvc
diff --git a/gemfeed/examples/conf/f3s/syncthing/helm-chart/templates/ingress.yaml b/gemfeed/examples/conf/f3s/syncthing/helm-chart/templates/ingress.yaml
deleted file mode 100644
index b1e68e1f..00000000
--- a/gemfeed/examples/conf/f3s/syncthing/helm-chart/templates/ingress.yaml
+++ /dev/null
@@ -1,20 +0,0 @@
-apiVersion: networking.k8s.io/v1
-kind: Ingress
-metadata:
- name: syncthing-ingress
- namespace: services
- annotations:
- spec.ingressClassName: traefik
- traefik.ingress.kubernetes.io/router.entrypoints: web
-spec:
- rules:
- - host: syncthing.f3s.buetow.org
- http:
- paths:
- - path: /
- pathType: Prefix
- backend:
- service:
- name: syncthing-service
- port:
- number: 8384
diff --git a/gemfeed/examples/conf/f3s/syncthing/helm-chart/templates/persistent-volume.yaml b/gemfeed/examples/conf/f3s/syncthing/helm-chart/templates/persistent-volume.yaml
deleted file mode 100644
index 793ae608..00000000
--- a/gemfeed/examples/conf/f3s/syncthing/helm-chart/templates/persistent-volume.yaml
+++ /dev/null
@@ -1,55 +0,0 @@
-apiVersion: v1
-kind: PersistentVolume
-metadata:
- name: syncthing-config-pv
-spec:
- capacity:
- storage: 1Gi
- volumeMode: Filesystem
- accessModes:
- - ReadWriteOnce
- persistentVolumeReclaimPolicy: Retain
- hostPath:
- path: /data/nfs/k3svolumes/syncthing/config
- type: Directory
----
-apiVersion: v1
-kind: PersistentVolumeClaim
-metadata:
- name: syncthing-config-pvc
- namespace: services
-spec:
- storageClassName: ""
- accessModes:
- - ReadWriteOnce
- resources:
- requests:
- storage: 1Gi
----
-apiVersion: v1
-kind: PersistentVolume
-metadata:
- name: syncthing-data-pv
-spec:
- capacity:
- storage: 300Gi
- volumeMode: Filesystem
- accessModes:
- - ReadWriteOnce
- persistentVolumeReclaimPolicy: Retain
- hostPath:
- path: /data/nfs/k3svolumes/syncthing/data
- type: Directory
----
-apiVersion: v1
-kind: PersistentVolumeClaim
-metadata:
- name: syncthing-data-pvc
- namespace: services
-spec:
- storageClassName: ""
- accessModes:
- - ReadWriteOnce
- resources:
- requests:
- storage: 300Gi \ No newline at end of file
diff --git a/gemfeed/examples/conf/f3s/syncthing/helm-chart/templates/service.yaml b/gemfeed/examples/conf/f3s/syncthing/helm-chart/templates/service.yaml
deleted file mode 100644
index 74bf5ed4..00000000
--- a/gemfeed/examples/conf/f3s/syncthing/helm-chart/templates/service.yaml
+++ /dev/null
@@ -1,19 +0,0 @@
-apiVersion: v1
-kind: Service
-metadata:
- labels:
- app: syncthing
- name: syncthing-service
- namespace: services
-spec:
- ports:
- - name: web
- port: 8384
- protocol: TCP
- targetPort: 8384
- - name: data
- port: 22000
- protocol: TCP
- targetPort: 22000
- selector:
- app: syncthing