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.8.0
version: 1.9.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.8.0](https://img.shields.io/badge/Version-1.8.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.9.0](https://img.shields.io/badge/Version-1.9.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 @@ -106,6 +106,7 @@ Before contributing, please read the [Code of Conduct](../../CODE_OF_CONDUCT.md)
| extraContainers | list | `[]` | |
| extraEnv | object | `{}` | |
| extraInitContainers | object | `{}` | |
| extraManifests | list | `[]` | Extra manifests to deploy with the release, for objects this chart does not render (Gateway API policies, NetworkPolicy, ServiceMonitor, ExternalSecret, ...) so they are owned by the release rather than applied by hand beside it. May be a list or a map. Each entry is either a YAML object or a string; both are passed through `tpl`, so entries can use the release's values and the chart's named templates. |
| extraVolumeMounts | list | `[]` | Optionally specify additional volume mounts for the PMS and init containers. |
| extraVolumes | list | `[]` | Optionally specify additional volumes for the pod. |
| fullnameOverride | string | `""` | |
Expand Down
13 changes: 13 additions & 0 deletions charts/plex-media-server/templates/extra-manifests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{{- /*
Renders arbitrary manifests supplied in .Values.extraManifests, so objects the
chart does not template (Gateway API policies, NetworkPolicy, ServiceMonitor,
ExternalSecret, ...) can be owned by this release.
*/ -}}
{{- range $manifest := .Values.extraManifests }}
---
{{- if kindIs "string" $manifest }}
Comment thread
cilindrox marked this conversation as resolved.
{{ tpl $manifest $ }}
{{- else }}
{{ tpl (toYaml $manifest) $ }}
{{- end }}
{{- end }}
41 changes: 41 additions & 0 deletions charts/plex-media-server/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -361,3 +361,44 @@ extraContainers: []
# memory: 128Mi
# volumeMounts:
# - ...

# -- Extra manifests to deploy with the release, for objects this chart does not
# render (Gateway API policies, NetworkPolicy, ServiceMonitor, ExternalSecret,
# ...) so they are owned by the release rather than applied by hand beside it.
# May be a list or a map. Each entry is either a YAML object or a string; both
# are passed through `tpl`, so entries can use the release's values and the
# chart's named templates.
extraManifests: []
# extraManifests:
# # A config claim the release owns, with a name of its own choosing, kept
# # across a `helm uninstall`. Point 'pms.configExistingClaim' at the same name
# # so the StatefulSet mounts it instead of a volumeClaimTemplate.
# - |
# apiVersion: v1
# kind: PersistentVolumeClaim
# metadata:
# name: {{ .Values.pms.configExistingClaim }}
# labels:
# {{- include "pms-chart.labels" . | nindent 4 }}
# annotations:
# helm.sh/resource-policy: keep
# spec:
# accessModes:
# - ReadWriteOnce
# resources:
# requests:
# storage: {{ .Values.pms.configStorage }}
# # An entry given as an object rather than a string. Quote any value that
# # starts with a template - a bare `{{` is not valid YAML.
# - apiVersion: gateway.envoyproxy.io/v1alpha1
# kind: BackendTrafficPolicy
# metadata:
# name: '{{ include "pms-chart.fullname" . }}-compression'
# spec:
# targetRefs:
# - group: gateway.networking.k8s.io
# kind: HTTPRoute
# name: '{{ include "pms-chart.fullname" . }}'
# compressor:
# - type: Gzip
# gzip: {}
Loading