Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2022-09-26 01:42:01 +00:00
parent a3d83e56fd
commit e20bf1271a
16 changed files with 42 additions and 29 deletions

View File

@ -2,6 +2,20 @@
## [blocky-1.0.6](https://github.com/truecharts/charts/compare/blocky-1.0.5...blocky-1.0.6) (2022-09-25)
### Chore
- Auto-update chart README [skip ci]
- bump version
### Fix
- allow port changes, allow dot, fix prometheus and fix api access ([#3899](https://github.com/truecharts/charts/issues/3899))
## [blocky-1.0.5](https://github.com/truecharts/charts/compare/blocky-1.0.4...blocky-1.0.5) (2022-09-25)
### Chore
@ -83,17 +97,3 @@
- Finish up UI ([#3866](https://github.com/truecharts/charts/issues/3866))
## [blocky-0.0.3](https://github.com/truecharts/charts/compare/blocky-0.0.2...blocky-0.0.3) (2022-09-24)
### Chore
- Auto-update chart README [skip ci]
- update docker general non-major ([#3860](https://github.com/truecharts/charts/issues/3860))
## [blocky-0.0.2](https://github.com/truecharts/charts/compare/blocky-0.0.1...blocky-0.0.2) (2022-09-23)

View File

@ -6,4 +6,4 @@ dependencies:
repository: https://charts.truecharts.org
version: 3.0.84
digest: sha256:e7db3724e7831eba4fe882122ff84908440a55b7e932b4a006fb08272d198db4
generated: "2022-09-25T13:50:08.110031027Z"
generated: "2022-09-26T01:39:53.828846073Z"

View File

@ -26,7 +26,7 @@ sources:
- https://github.com/0xERR0R/blocky
- https://github.com/Mozart409/blocky-frontend
- https://hub.docker.com/r/spx01/blocky
version: 1.0.5
version: 1.0.6
annotations:
truecharts.org/catagories: |
- network

View File

@ -77,17 +77,17 @@ service:
port: 10315
protocol: HTTP
targetPort: 80
dns-tcp:
dnstcp:
enabled: true
ports:
dns-tcp:
dnstcp:
enabled: true
port: 53
targetPort: 53
dns-udp:
dnsudp:
enabled: true
ports:
dns-udp:
dnsudp:
enabled: true
port: 53
protocol: UDP
@ -338,9 +338,6 @@ k8sgateway:
- name: tls_servername
value: cloudflare-dns.com
unbound:
enabled: false
redis:
enabled: true
existingSecret: "rediscreds"

View File

@ -1020,7 +1020,7 @@ questions:
schema:
type: int
default: 80
- variable: dns-tcp
- variable: dnstcp
label: DNS TCP Service
description: The DNS TCP service
schema:
@ -1101,7 +1101,7 @@ questions:
additional_attrs: true
type: dict
attrs:
- variable: dns-tcp
- variable: dnstcp
label: DNS TCP Port Configuration
schema:
additional_attrs: true
@ -1154,7 +1154,7 @@ questions:
schema:
type: int
default: 53
- variable: dns-udp
- variable: dnsudp
label: DNS UDP Service
description: The DNS UDP service
schema:
@ -1235,7 +1235,7 @@ questions:
additional_attrs: true
type: dict
attrs:
- variable: dns-udp
- variable: dnsudp
label: DNS UDP Port Configuration
schema:
additional_attrs: true
@ -3491,7 +3491,7 @@ questions:
default: true
- variable: donateNag
group: Documentation
label: Please consider supporting TrueCharts, see https://truecharts.org/docs/about/sponsor
label: Please consider supporting TrueCharts, see https://truecharts.org/sponsor
description: Please consider supporting TrueCharts, see
<br /><a href="https://truecharts.org/sponsor">https://truecharts.org/sponsor</a>
schema:

View File

@ -35,6 +35,22 @@ upstream:
{{- $value.dnsservers | toYaml | nindent 8 }}
{{- end }}
{{- if .Values.service.dnsudp.enabled }}
port: {{ .Values.service.dnsudp.ports.dnsudp.targetPort }}
{{- end }}
{{- if .Values.service.dot.enabled }}
tlsPort: {{ .Values.service.dot.ports.dot.targetPort }}
{{- end }}
{{- if .Values.service.http.enabled }}
httpPort: {{ .Values.service.http.ports.http.targetPort }}
{{- end }}
{{- if .Values.service.https.enabled }}
httpsPort: {{ .Values.service.https.ports.https.targetPort }}
{{- end }}
{{- if .Values.certFile }}
certFile: {{ .Values.certFile }}
{{- end }}

View File

@ -34,7 +34,7 @@ volumeSpec:
{{- $_ := set .Values.podAnnotations "prometheus.io/scrape" "true" -}}
{{- $_ := set .Values.podAnnotations "prometheus.io/path" "/metrics" -}}
{{- $_ := set .Values.podAnnotations "prometheus.io/port" (.Values.service.main.ports.main.targetPort | quote) -}}
{{- $_ := set .Values.podAnnotations "prometheus.io/port" (.Values.service.http.ports.http.targetPort | toString) -}}
{{- if .Values.blocky.enableWebUI -}}
{{- $_ := set .Values.additionalContainers "frontend" (include "blocky.frontend" . | fromYaml) -}}