Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions charts/plex-media-server/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# 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.11.0
version: 1.0.0

# 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 All @@ -31,4 +31,4 @@
appVersion: "1.41.6"

sources:
- https://github.com/plexinc/pms-docker
- https://github.com/plexinc/pms-docker

Check failure on line 34 in charts/plex-media-server/Chart.yaml

View workflow job for this annotation

GitHub Actions / lint-test

34:40 [new-line-at-end-of-file] no new line character at the end of file
16 changes: 12 additions & 4 deletions charts/plex-media-server/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,16 @@ spec:
name: {{ include "pms-chart.fullname" . }}
port:
number: 32400
tls:
- hosts:
- {{ trimPrefix "https://" .Values.ingress.url }}
secretName: {{ .Values.ingress.certificateSecret | default (printf "%s-ingress-lets-encrypt" (include "pms-chart.fullname" .)) }}
{{- if .Values.ingress.tls }}
tls:
{{- range .Values.ingress.tls }}
- hosts:
{{- range .hosts }}
- {{ tpl . $ | quote }}
{{- end }}
{{- with .secretName }}
secretName: {{ tpl . $ }}
{{- end }}
{{- end }}
{{- end }}
{{- end -}}
7 changes: 5 additions & 2 deletions charts/plex-media-server/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,12 @@ ingress:
# -- The url to use for the ingress reverse proxy to point at this pms instance
url: ""

# -- Optional secret name to provide valid https connections
# -- Optional TLS configuration to provide valid https connections
# using an existing SSL certificate
certificateSecret: ""
tls: []
# - hosts:
# - plex.example.com
# secretName: cert-example-com

# -- Custom annotations to put on the ingress resource
annotations: {}
Expand Down
Loading