Skip to content

Commit

Permalink
fix: lint and ports
Browse files Browse the repository at this point in the history
  • Loading branch information
drikqlis committed Oct 30, 2024
1 parent 3c7accc commit 0d553c3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion charts/mumble/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
11 changes: 7 additions & 4 deletions charts/mumble/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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 }}
Expand Down

0 comments on commit 0d553c3

Please sign in to comment.