Fixed ports

This commit is contained in:
Jonathan Ervine 2020-07-28 21:05:09 +08:00
parent 8728857c7a
commit 842197f5d1
3 changed files with 5 additions and 5 deletions

View File

@ -14,7 +14,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes # This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version. # to the chart and its templates, including the app version.
version: 0.1.1 version: 0.1.2
# This is the version number of the application being deployed. This version number should be # This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. # incremented each time you make changes to the application.

View File

@ -11,7 +11,7 @@ spec:
targetPort: 9091 targetPort: 9091
protocol: TCP protocol: TCP
name: transmission name: transmission
- port: {{ .Values.service.dht-port }} - port: {{ .Values.service.tcpPort }}
targetPort: 56451 targetPort: 56451
protocol: TCP protocol: TCP
name: dht-tcp name: dht-tcp
@ -27,7 +27,7 @@ metadata:
spec: spec:
type: {{ .Values.service.type }} type: {{ .Values.service.type }}
ports: ports:
- port: {{ .Values.service.udp-port }} - port: {{ .Values.service.udpPort }}
targetPort: 56451 targetPort: 56451
protocol: UDP protocol: UDP
name: dht-udp name: dht-udp

View File

@ -33,8 +33,8 @@ securityContext:
service: service:
type: ClusterIP type: ClusterIP
port: 9091 port: 9091
dht-tcp: 56451 tcpPort: 56451
dht-udp: 56451 udpPort: 56451
ingress: ingress:
enabled: false enabled: false