diff --git a/charts/plex-media-server/Chart.yaml b/charts/plex-media-server/Chart.yaml index 7e1389ab..50ffdcfd 100644 --- a/charts/plex-media-server/Chart.yaml +++ b/charts/plex-media-server/Chart.yaml @@ -22,7 +22,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.7.2 +version: 0.8.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 diff --git a/charts/plex-media-server/templates/ingress.yaml b/charts/plex-media-server/templates/ingress.yaml index 9c458cfd..9e3d77d8 100644 --- a/charts/plex-media-server/templates/ingress.yaml +++ b/charts/plex-media-server/templates/ingress.yaml @@ -28,5 +28,5 @@ spec: tls: - hosts: - {{ trimPrefix "https://" .Values.ingress.url }} - secretName: {{ include "pms-chart.fullname" . }}-ingress-lets-encrypt + secretName: {{ .Values.ingress.certificateSecret | default (printf "%s-ingress-lets-encrypt" (include "pms-chart.fullname" .)) }} {{- end -}} diff --git a/charts/plex-media-server/values.yaml b/charts/plex-media-server/values.yaml index abd48b38..42ba6e58 100644 --- a/charts/plex-media-server/values.yaml +++ b/charts/plex-media-server/values.yaml @@ -22,6 +22,10 @@ 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 + # using an existing SSL certificate + certificateSecret: "" + # -- Custom annotations to put on the ingress resource annotations: {}