summaryrefslogtreecommitdiff
path: root/gemfeed/examples/conf/f3s/syncthing
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-10-02 11:31:39 +0300
committerPaul Buetow <paul@buetow.org>2025-10-02 11:31:39 +0300
commit100c1e6fd4661293333b689b75b364fc07dc2bf4 (patch)
tree701de616919066d71c664409f50589f8d2e1c936 /gemfeed/examples/conf/f3s/syncthing
parent2b034797107660d4d83f8a7acdc55d32db785b82 (diff)
Update content for md
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/helm-chart/Chart.yaml5
-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
6 files changed, 0 insertions, 144 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/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/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