Commit new App releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2021-11-19 20:11:15 +00:00
parent 20aa80db4c
commit 73eb568e2d
13 changed files with 18 additions and 18 deletions

View File

@ -1,6 +1,15 @@
# Changelog<br>
<a name="pihole-4.0.12"></a>
### [pihole-4.0.12](https://github.com/truecharts/apps/compare/pihole-4.0.11...pihole-4.0.12) (2021-11-19)
#### Fix
* use port protocol, not port type as default and change default webui port
<a name="pihole-4.0.11"></a>
### [pihole-4.0.11](https://github.com/truecharts/apps/compare/pihole-4.0.10...pihole-4.0.11) (2021-11-16)
@ -88,12 +97,3 @@
* update non-major deps helm releases ([#1267](https://github.com/truecharts/apps/issues/1267))
<a name="pihole-4.0.3"></a>
### [pihole-4.0.3](https://github.com/truecharts/apps/compare/pihole-4.0.2...pihole-4.0.3) (2021-11-01)
#### Chore
* update non-major deps helm releases ([#1264](https://github.com/truecharts/apps/issues/1264))

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org
version: 8.6.3
digest: sha256:9d695d9ecf86a5131e60cd13963618e0bbe6fa61a94250c4e95f7f377273947f
generated: "2021-11-16T22:38:27.722273857Z"
generated: "2021-11-19T20:08:48.057381375Z"

View File

@ -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

View File

@ -30,15 +30,15 @@ You will, however, be able to use all values referenced in the common chart here
| service.dns-tcp.enabled | bool | `true` | |
| service.dns-tcp.ports.dns-tcp.enabled | bool | `true` | |
| service.dns-tcp.ports.dns-tcp.port | int | `53` | |
| service.dns-tcp.ports.dns-tcp.protocol | string | `"TCP"` | |
| service.dns-tcp.ports.dns-tcp.targetPort | int | `53` | |
| service.dns-tcp.ports.dns-tcp.type | string | `"TCP"` | |
| service.dns.enabled | bool | `true` | |
| service.dns.ports.dns.enabled | bool | `true` | |
| service.dns.ports.dns.port | int | `53` | |
| service.dns.ports.dns.protocol | string | `"UDP"` | |
| service.dns.ports.dns.targetPort | int | `53` | |
| service.dns.ports.dns.type | string | `"UDP"` | |
| service.main.enabled | bool | `true` | |
| service.main.ports.main.port | int | `80` | |
| service.main.ports.main.port | int | `9089` | |
| service.main.ports.main.targetPort | int | `80` | |
All Rights Reserved - The TrueCharts Project

View File

@ -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

View File

@ -378,7 +378,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