diff --git a/transmission/Chart.yaml b/transmission/Chart.yaml index 39068d5..492f087 100644 --- a/transmission/Chart.yaml +++ b/transmission/Chart.yaml @@ -14,7 +14,7 @@ type: application # 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. -version: 0.1.1 +version: 0.1.2 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. diff --git a/transmission/templates/service.yaml b/transmission/templates/service.yaml index e8a83bc..168827a 100644 --- a/transmission/templates/service.yaml +++ b/transmission/templates/service.yaml @@ -11,7 +11,7 @@ spec: targetPort: 9091 protocol: TCP name: transmission - - port: {{ .Values.service.dht-port }} + - port: {{ .Values.service.tcpPort }} targetPort: 56451 protocol: TCP name: dht-tcp @@ -27,7 +27,7 @@ metadata: spec: type: {{ .Values.service.type }} ports: - - port: {{ .Values.service.udp-port }} + - port: {{ .Values.service.udpPort }} targetPort: 56451 protocol: UDP name: dht-udp diff --git a/transmission/values.yaml b/transmission/values.yaml index 94befd4..127fb8d 100644 --- a/transmission/values.yaml +++ b/transmission/values.yaml @@ -33,8 +33,8 @@ securityContext: service: type: ClusterIP port: 9091 - dht-tcp: 56451 - dht-udp: 56451 + tcpPort: 56451 + udpPort: 56451 ingress: enabled: false