From 53dc196f804eae971cb596b13e6b36ee9eee70ad Mon Sep 17 00:00:00 2001 From: trivernis Date: Thu, 23 Nov 2023 11:11:01 +0100 Subject: [PATCH] Change nodeport mapping to explicit syncthing port --- apps/syncthing/app/release.yaml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/apps/syncthing/app/release.yaml b/apps/syncthing/app/release.yaml index 5c29f43..4b4b790 100644 --- a/apps/syncthing/app/release.yaml +++ b/apps/syncthing/app/release.yaml @@ -23,3 +23,31 @@ spec: storageClass: ebs-hdd accessMode: ReadWriteOnce size: 200Gi + + service: + main: + ports: + http: + port: 8384 + listen: + enabled: true + type: NodePort + externalTrafficPolicy: Local + ports: + listen: + enabled: true + port: 22000 + protocol: TCP + targetPort: 22000 + nodePort: 22000 + discovery: + enabled: true + type: NodePort + externalTrafficPolicy: Local + ports: + discovery: + enabled: true + port: 21027 + protocol: UDP + targetPort: 21027 + nodePort: 21027