From 2d033bf069cae349852e6e2e77c7d0286eb0c93b Mon Sep 17 00:00:00 2001 From: momothereal Date: Sun, 27 Oct 2019 00:04:40 -0400 Subject: [PATCH] TS: Open file-transfer port; Increase CPU limit --- teamspeak/chart/teamspeak/templates/service.yaml | 5 +++++ teamspeak/chart/teamspeak/values.yaml | 5 +++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/teamspeak/chart/teamspeak/templates/service.yaml b/teamspeak/chart/teamspeak/templates/service.yaml index de60541..7322e43 100644 --- a/teamspeak/chart/teamspeak/templates/service.yaml +++ b/teamspeak/chart/teamspeak/templates/service.yaml @@ -15,6 +15,11 @@ spec: protocol: UDP name: teamspeak-voice port: 9987 + - nodePort: {{ .Values.service.filePort }} + targetPort: 30033 + protocol: TCP + name: teamspeak-file + port: 30033 selector: app: teamspeak release: {{ .Release.Name }} diff --git a/teamspeak/chart/teamspeak/values.yaml b/teamspeak/chart/teamspeak/values.yaml index 783b377..88560b0 100644 --- a/teamspeak/chart/teamspeak/values.yaml +++ b/teamspeak/chart/teamspeak/values.yaml @@ -7,11 +7,12 @@ podAnnotations: {} service: type: NodePort - nodePort: 30987 + voicePort: 30987 + filePort: 30033 resources: limits: - cpu: 250m + cpu: 500m memory: 512Mi requests: cpu: 100m