Skip to content

Commit

Permalink
Fixed invalid port references for Transmission
Browse files Browse the repository at this point in the history
  • Loading branch information
kenmccann committed Jan 2, 2022
1 parent 016deea commit f61a40e
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ spec:
selector:
app: transmission
---
{{ if .Values.transmission.service.extraLBService }}
{{ if .Values.transmission.service.utp.extraLBService }}
apiVersion: v1
kind: Service
metadata:
Expand All @@ -252,6 +252,8 @@ spec:
selector:
app: transmission
---
{{ end }}
{{ if .Values.transmission.service.peer.extraLBService }}
apiVersion: v1
kind: Service
metadata:
Expand All @@ -262,7 +264,7 @@ spec:
type: LoadBalancer
ports:
- port: {{ .Values.transmission.service.peer.port }}
targetPort: {{ .Values.transmission.container.peer.port }}
targetPort: {{ .Values.transmission.container.port.peer }}
protocol: TCP
name: trans-peer-tcp
selector:
Expand All @@ -278,7 +280,7 @@ spec:
type: LoadBalancer
ports:
- port: {{ .Values.transmission.service.peer.port }}
targetPort: {{ .Values.transmission.container.peer.port }}
targetPort: {{ .Values.transmission.container.port.peer }}
protocol: UDP
name: trans-peer-udp
selector:
Expand Down

0 comments on commit f61a40e

Please sign in to comment.