From 0d553c3ffc4114d1558dfb08c0e4d24934135543 Mon Sep 17 00:00:00 2001 From: drikqlis Date: Thu, 31 Oct 2024 00:36:18 +0100 Subject: [PATCH] fix: lint and ports --- charts/mumble/Chart.yaml | 2 +- charts/mumble/templates/deployment.yaml | 11 +++++++---- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/charts/mumble/Chart.yaml b/charts/mumble/Chart.yaml index 346cb6a..f8c2092 100644 --- a/charts/mumble/Chart.yaml +++ b/charts/mumble/Chart.yaml @@ -15,7 +15,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. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.1.0 +version: 0.1.1 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/mumble/templates/deployment.yaml b/charts/mumble/templates/deployment.yaml index 5e4515d..ec6fc03 100644 --- a/charts/mumble/templates/deployment.yaml +++ b/charts/mumble/templates/deployment.yaml @@ -62,9 +62,12 @@ spec: - name: MUMBLE_REGISTER_NAME value: "{{ .Values.mumble.server_name }}" ports: - - name: http - containerPort: {{ .Values.service.port }} + - name: mumble-tcp + containerPort: 64738 protocol: TCP + - name: mumble-udp + containerPort: 64738 + protocol: UDP livenessProbe: {{- toYaml .Values.livenessProbe | nindent 12 }} readinessProbe: @@ -102,11 +105,11 @@ spec: path: fullchain.pem - key: tls.key path: privkey.pem - {{- end }} + {{- end }} - name: data {{- if .Values.persistence.data.enabled }} persistentVolumeClaim: - claimName: {{ if .Values.persistence.data.existingClaim }}{{ .Values.persistence.data.existingClaim }}{{- else }}{{ template "sonarr.fullname" . }}-data{{- end }} + claimName: {{ if .Values.persistence.data.existingClaim }}{{ .Values.persistence.data.existingClaim }}{{- else }}{{ template "mumble.fullname" . }}-data{{- end }} {{- else }} emptyDir: {} {{- end }}