Syncthing is a continuous file synchronization program. It synchronizes files between two or more computers in real time, safely protected from prying eyes. Your data is your data alone and you deserve to choose where it is stored, whether it is shared with some third party, and how it’s transmitted over the internet.
---repositories:-name:sysbeeurl:https://charts.sysbee.io/stable/sysbeereleases:-name:syncthingnamespace:appschart:sysbee/kubedeploydisableValidationOnInstall:trueversion:1.1.0installed:truevalues:# one replica should be enough-replicaCount:1# We wish to preserve Synthing data over restarts-deploymentMode:Statefulset-image:repository:syncthing/syncthingtag:latestpullPolicy:Always-ports:# Admin UI pot-name:httpcontainerPort:8384protocol:TCP# Sync ports-name:syncthingtcpcontainerPort:22000protocol:TCP-name:syncthingudpcontainerPort:22000protocol:UDP# Enable healtchecks for automatic container restart if it stops responding-healthcheck:enabled:trueprobes:livenessProbe:tcpSocket:port:httpreadinessProbe:tcpSocket:port:http# Define service as NodePort, each Syncthing pod will need direct communication# with other peers. We explicitly skip opening Admin UI port via service-service:enabled:truetype:NodePortports:-port:22000targetPort:syncthingtcpprotocol:TCPname:syncthingtcp-port:22000targetPort:syncthingudpprotocol:UDPname:syncthingudp# Configure persistent volume for Syncthing data-persistency:# enable persistent volumeenabled:truecapacity:storage:10GimountPath:"/var/syncthing"