* no message * add test for discovery port/service * add discovery service and port to questions.yaml * fix questions.yaml not enabling ports on Syncthing * Increase syncthing version number * fix serviceports not being enabled on all other apps too. * fix a small unrelated UI glitch/bug related to hostPathMounts * bump patch versions for other apps * adapt docs accordingly * fix nzbget httpGet probe (or at least try to)
42 lines
656 B
YAML
42 lines
656 B
YAML
# Default values for Syncthing.
|
|
|
|
image:
|
|
repository: syncthing/syncthing
|
|
pullPolicy: IfNotPresent
|
|
tag: "1.16"
|
|
|
|
strategy:
|
|
type: Recreate
|
|
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 8384
|
|
listeners:
|
|
ports:
|
|
tcp:
|
|
enabled: true
|
|
port: 22000
|
|
protocol: TCP
|
|
udp:
|
|
enabled: true
|
|
port: 22000
|
|
protocol: UDP
|
|
discovery:
|
|
ports:
|
|
discovery:
|
|
enabled: true
|
|
port: 21027
|
|
protocol: UDP
|
|
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
emptyDir:
|
|
enabled: true
|
|
accessMode: ReadWriteOnce
|
|
size: 1Gi
|
|
storageClass: ""
|
|
mountPath: "/var/syncthing/"
|