fix(pihole): use port protocol, not port type as default and change default webui port
This commit is contained in:
parent
9310b0d925
commit
f922000eed
|
@ -21,7 +21,7 @@ sources:
|
|||
- https://github.com/pi-hole
|
||||
- https://github.com/pi-hole/docker-pi-hole
|
||||
type: application
|
||||
version: 4.0.11
|
||||
version: 4.0.12
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- networking
|
||||
|
|
|
@ -143,7 +143,7 @@ questions:
|
|||
description: "This port exposes the container port on the service"
|
||||
schema:
|
||||
type: int
|
||||
default: 80
|
||||
default: 9089
|
||||
editable: true
|
||||
required: true
|
||||
- variable: advanced
|
||||
|
|
|
@ -23,13 +23,13 @@ service:
|
|||
enabled: true
|
||||
ports:
|
||||
main:
|
||||
port: 80
|
||||
port: 9089
|
||||
targetPort: 80
|
||||
dns-tcp:
|
||||
enabled: true
|
||||
ports:
|
||||
dns-tcp:
|
||||
type: TCP
|
||||
protocol: TCP
|
||||
enabled: true
|
||||
port: 53
|
||||
targetPort: 53
|
||||
|
@ -37,7 +37,7 @@ service:
|
|||
enabled: true
|
||||
ports:
|
||||
dns:
|
||||
type: UDP
|
||||
protocol: UDP
|
||||
enabled: true
|
||||
port: 53
|
||||
targetPort: 53
|
||||
|
|
Loading…
Reference in New Issue