feat(NextPVR): Add missing UDP ports (#6961)
* feat(NextPVR): Add missing UDP ports * Update charts/stable/nextpvr/Chart.yaml Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com> --------- Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com> Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
This commit is contained in:
co-authored by
Stavros Kois
parent
8c6f99a81e
commit
196c5c5507
@@ -20,7 +20,7 @@ sources:
|
|||||||
- https://github.com/truecharts/charts/tree/master/charts/stable/nextpvr
|
- https://github.com/truecharts/charts/tree/master/charts/stable/nextpvr
|
||||||
- https://hub.docker.com/nextpvr/nextpvr_amd64
|
- https://hub.docker.com/nextpvr/nextpvr_amd64
|
||||||
- https://github.com/sub3/NextPVR/wiki/Install-Docker
|
- https://github.com/sub3/NextPVR/wiki/Install-Docker
|
||||||
version: 4.0.7
|
version: 4.1.0
|
||||||
annotations:
|
annotations:
|
||||||
truecharts.org/catagories: |
|
truecharts.org/catagories: |
|
||||||
- media
|
- media
|
||||||
|
|||||||
@@ -45,6 +45,43 @@ questions:
|
|||||||
type: int
|
type: int
|
||||||
default: 10183
|
default: 10183
|
||||||
required: true
|
required: true
|
||||||
|
- variable: nextpvr-udp
|
||||||
|
label: NextPVR UDP Ports
|
||||||
|
description: Additional UDP Ports that may be required
|
||||||
|
schema:
|
||||||
|
additional_attrs: true
|
||||||
|
type: dict
|
||||||
|
attrs:
|
||||||
|
# Include{serviceSelectorLoadBalancer}
|
||||||
|
# Include{serviceSelectorExtras}
|
||||||
|
- variable: nextpvr-udp1
|
||||||
|
label: NextPVR Standard UDP Port
|
||||||
|
description: Used with certain devices (HomeRUNHD Tuner)
|
||||||
|
schema:
|
||||||
|
additional_attrs: true
|
||||||
|
type: dict
|
||||||
|
attrs:
|
||||||
|
- variable: port
|
||||||
|
label: Port
|
||||||
|
description: This port exposes the container port on the service
|
||||||
|
schema:
|
||||||
|
type: int
|
||||||
|
default: 16891
|
||||||
|
required: true
|
||||||
|
- variable: nextpvr-udp2
|
||||||
|
label: NextPVR Legacy UDP Port
|
||||||
|
description: Used with certain legacy devices (HomeRUNHD Tuner)
|
||||||
|
schema:
|
||||||
|
additional_attrs: true
|
||||||
|
type: dict
|
||||||
|
attrs:
|
||||||
|
- variable: port
|
||||||
|
label: Port
|
||||||
|
description: This port exposes the container port on the service
|
||||||
|
schema:
|
||||||
|
type: int
|
||||||
|
default: 8026
|
||||||
|
required: true
|
||||||
# Include{serviceExpertRoot}
|
# Include{serviceExpertRoot}
|
||||||
default: false
|
default: false
|
||||||
# Include{serviceExpert}
|
# Include{serviceExpert}
|
||||||
|
|||||||
@@ -12,6 +12,19 @@ service:
|
|||||||
main:
|
main:
|
||||||
port: 10183
|
port: 10183
|
||||||
targetPort: 8866
|
targetPort: 8866
|
||||||
|
nextpvr-udp:
|
||||||
|
enabled: true
|
||||||
|
ports:
|
||||||
|
nextpvr-udp1:
|
||||||
|
enabled: true
|
||||||
|
protocol: UDP
|
||||||
|
port: 16891
|
||||||
|
targetPort: 16891
|
||||||
|
nextpvr-udp2:
|
||||||
|
enabled: true
|
||||||
|
protocol: UDP
|
||||||
|
port: 8026
|
||||||
|
targetPort: 8026
|
||||||
|
|
||||||
persistence:
|
persistence:
|
||||||
config:
|
config:
|
||||||
|
|||||||
Reference in New Issue
Block a user