diff --git a/stable/pihole/4.0.11/CHANGELOG.md b/stable/pihole/4.0.12/CHANGELOG.md
similarity index 91%
rename from stable/pihole/4.0.11/CHANGELOG.md
rename to stable/pihole/4.0.12/CHANGELOG.md
index d391ce3ee1..6850d22852 100644
--- a/stable/pihole/4.0.11/CHANGELOG.md
+++ b/stable/pihole/4.0.12/CHANGELOG.md
@@ -1,6 +1,15 @@
# Changelog
+
+### [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
+
+
+
### [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))
-
-
-### [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))
-
-
diff --git a/stable/pihole/4.0.11/CONFIG.md b/stable/pihole/4.0.12/CONFIG.md
similarity index 100%
rename from stable/pihole/4.0.11/CONFIG.md
rename to stable/pihole/4.0.12/CONFIG.md
diff --git a/stable/pihole/4.0.11/Chart.lock b/stable/pihole/4.0.12/Chart.lock
similarity index 78%
rename from stable/pihole/4.0.11/Chart.lock
rename to stable/pihole/4.0.12/Chart.lock
index 309fad6f7e..5b33d71a71 100644
--- a/stable/pihole/4.0.11/Chart.lock
+++ b/stable/pihole/4.0.12/Chart.lock
@@ -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"
diff --git a/stable/pihole/4.0.11/Chart.yaml b/stable/pihole/4.0.12/Chart.yaml
similarity index 97%
rename from stable/pihole/4.0.11/Chart.yaml
rename to stable/pihole/4.0.12/Chart.yaml
index 83920c36c1..e6c35101d7 100644
--- a/stable/pihole/4.0.11/Chart.yaml
+++ b/stable/pihole/4.0.12/Chart.yaml
@@ -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
diff --git a/stable/pihole/4.0.11/README.md b/stable/pihole/4.0.12/README.md
similarity index 100%
rename from stable/pihole/4.0.11/README.md
rename to stable/pihole/4.0.12/README.md
diff --git a/stable/pihole/4.0.11/app-readme.md b/stable/pihole/4.0.12/app-readme.md
similarity index 100%
rename from stable/pihole/4.0.11/app-readme.md
rename to stable/pihole/4.0.12/app-readme.md
diff --git a/stable/pihole/4.0.11/charts/common-8.6.3.tgz b/stable/pihole/4.0.12/charts/common-8.6.3.tgz
similarity index 100%
rename from stable/pihole/4.0.11/charts/common-8.6.3.tgz
rename to stable/pihole/4.0.12/charts/common-8.6.3.tgz
diff --git a/stable/pihole/4.0.11/helm-values.md b/stable/pihole/4.0.12/helm-values.md
similarity index 92%
rename from stable/pihole/4.0.11/helm-values.md
rename to stable/pihole/4.0.12/helm-values.md
index 0382d6610d..729e135732 100644
--- a/stable/pihole/4.0.11/helm-values.md
+++ b/stable/pihole/4.0.12/helm-values.md
@@ -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
diff --git a/stable/pihole/4.0.11/ix_values.yaml b/stable/pihole/4.0.12/ix_values.yaml
similarity index 93%
rename from stable/pihole/4.0.11/ix_values.yaml
rename to stable/pihole/4.0.12/ix_values.yaml
index 4be6e8b3ef..ffc73f6dcb 100644
--- a/stable/pihole/4.0.11/ix_values.yaml
+++ b/stable/pihole/4.0.12/ix_values.yaml
@@ -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
diff --git a/stable/pihole/4.0.11/questions.yaml b/stable/pihole/4.0.12/questions.yaml
similarity index 99%
rename from stable/pihole/4.0.11/questions.yaml
rename to stable/pihole/4.0.12/questions.yaml
index f31b5e8879..7f1ff4acc6 100644
--- a/stable/pihole/4.0.11/questions.yaml
+++ b/stable/pihole/4.0.12/questions.yaml
@@ -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
diff --git a/stable/pihole/4.0.11/templates/_configmap.tpl b/stable/pihole/4.0.12/templates/_configmap.tpl
similarity index 100%
rename from stable/pihole/4.0.11/templates/_configmap.tpl
rename to stable/pihole/4.0.12/templates/_configmap.tpl
diff --git a/stable/pihole/4.0.11/templates/common.yaml b/stable/pihole/4.0.12/templates/common.yaml
similarity index 100%
rename from stable/pihole/4.0.11/templates/common.yaml
rename to stable/pihole/4.0.12/templates/common.yaml
diff --git a/stable/pihole/4.0.11/values.yaml b/stable/pihole/4.0.12/values.yaml
similarity index 100%
rename from stable/pihole/4.0.11/values.yaml
rename to stable/pihole/4.0.12/values.yaml