feat(plex): disable GDM by default (#3597)
* feat(plex): disable GDM by default * Update charts/stable/plex/Chart.yaml
This commit is contained in:
@@ -21,7 +21,7 @@ sources:
|
|||||||
- https://github.com/truecharts/charts/tree/master/charts/stable/plex
|
- https://github.com/truecharts/charts/tree/master/charts/stable/plex
|
||||||
- https://github.com/k8s-at-home/container-images/pkgs/container/plex
|
- https://github.com/k8s-at-home/container-images/pkgs/container/plex
|
||||||
type: application
|
type: application
|
||||||
version: 10.1.3
|
version: 10.2.0
|
||||||
annotations:
|
annotations:
|
||||||
truecharts.org/catagories: |
|
truecharts.org/catagories: |
|
||||||
- media
|
- media
|
||||||
|
|||||||
@@ -35,6 +35,12 @@ questions:
|
|||||||
type: string
|
type: string
|
||||||
valid_chars: '^$|^(http(s)?:\/\/([a-zA-Z0-9.-]*)(:\d{0,5})?,?)*$'
|
valid_chars: '^$|^(http(s)?:\/\/([a-zA-Z0-9.-]*)(:\d{0,5})?,?)*$'
|
||||||
default: ""
|
default: ""
|
||||||
|
- variable: disableGDM
|
||||||
|
label: "Disable GDM"
|
||||||
|
description: "Recommended to keep this to true. Disables legacy local network discovery. Keeping it enabled might break discovery for some Plex Clients"
|
||||||
|
schema:
|
||||||
|
type: boolean
|
||||||
|
default: true
|
||||||
- variable: env
|
- variable: env
|
||||||
group: "Container Configuration"
|
group: "Container Configuration"
|
||||||
label: "Image Environment"
|
label: "Image Environment"
|
||||||
|
|||||||
@@ -23,9 +23,11 @@ plex:
|
|||||||
# User Defined
|
# User Defined
|
||||||
serverIP: "127.0.0.1"
|
serverIP: "127.0.0.1"
|
||||||
additionalAdvertiseURL: ""
|
additionalAdvertiseURL: ""
|
||||||
|
disableGDM: true
|
||||||
|
|
||||||
env:
|
env:
|
||||||
ADVERTISE_IP: "{{ tpl (.Values.plex.serverURL) .}}{{ tpl (.Values.plex.serverIngressURL) . }}{{ tpl (.Values.plex.serverIngressURLPort) . }}{{ with .Values.plex.additionalAdvertiseURL }},{{ . }}{{ end }}"
|
ADVERTISE_IP: "{{ tpl (.Values.plex.serverURL) .}}{{ tpl (.Values.plex.serverIngressURL) . }}{{ tpl (.Values.plex.serverIngressURLPort) . }}{{ with .Values.plex.additionalAdvertiseURL }},{{ . }}{{ end }}"
|
||||||
|
PLEX_PREFERENCE_GDM: 'GdmEnabled="{{ ternary "0" "1" .Values.plex.disableGDM }}"'
|
||||||
# User Defined
|
# User Defined
|
||||||
ALLOWED_NETWORKS: "172.16.0.0/12,10.0.0.0/8,192.168.0.0/16"
|
ALLOWED_NETWORKS: "172.16.0.0/12,10.0.0.0/8,192.168.0.0/16"
|
||||||
PLEX_CLAIM: ""
|
PLEX_CLAIM: ""
|
||||||
|
|||||||
Reference in New Issue
Block a user