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
2 changes: 1 addition & 1 deletion charts/plex-media-server/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: 1.5.0
version: 1.6.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 Down
3 changes: 2 additions & 1 deletion charts/plex-media-server/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# plex-media-server

![Version: 1.5.0](https://img.shields.io/badge/Version-1.5.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.43.0](https://img.shields.io/badge/AppVersion-1.43.0-informational?style=flat-square)
![Version: 1.6.0](https://img.shields.io/badge/Version-1.6.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.43.0](https://img.shields.io/badge/AppVersion-1.43.0-informational?style=flat-square)

**Homepage:** <https://www.plex.tv>

Expand Down Expand Up @@ -114,6 +114,7 @@ Before contributing, please read the [Code of Conduct](../../CODE_OF_CONDUCT.md)
| httpRoute.annotations | object | `{}` | Custom annotations to put on the HTTPRoute resource |
| httpRoute.enabled | bool | `false` | Specify if an HTTPRoute resource for the pms server should be created or not |
| httpRoute.hostnames | list | `[]` | Hostnames to match for the HTTPRoute |
| httpRoute.labels | object | `{}` | Custom labels to put on the HTTPRoute resource |
| httpRoute.parentRefs | list | `[]` | Gateway API parent references (required when enabled) |
| image | object | `{"pullPolicy":"IfNotPresent","registry":"index.docker.io","repository":"plexinc/pms-docker","sha":"","tag":"1.43.0.10492-121068a07"}` | The docker image information for the pms application |
| image.registry | string | `"index.docker.io"` | The public dockerhub registry |
Expand Down
7 changes: 5 additions & 2 deletions charts/plex-media-server/templates/httproute.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,14 @@ kind: HTTPRoute
metadata:
name: {{ include "pms-chart.fullname" . }}
namespace: {{ .Release.Namespace }}
labels: {{ include "pms-chart.labels" . | nindent 4 }}
labels:
{{- include "pms-chart.labels" . | nindent 4 }}
{{- with .Values.httpRoute.labels }}
{{- toYaml . | nindent 4 }}
{{- end }}
{{- with .Values.httpRoute.annotations }}
annotations: {{ toYaml . | nindent 4 }}
{{- end }}

spec:
{{- with .Values.httpRoute.parentRefs }}
parentRefs: {{ toYaml . | nindent 4 }}
Expand Down
3 changes: 3 additions & 0 deletions charts/plex-media-server/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,9 @@ httpRoute:
# -- Custom annotations to put on the HTTPRoute resource
annotations: {}

# -- Custom labels to put on the HTTPRoute resource
labels: {}

pms:
# -- The storage class to use when provisioning the pms config volume
# this needs to be created manually, null will use the default
Expand Down
Loading