Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-06-05 07:11:53 +00:00
parent 9c3c0a1a86
commit d5680364b7
16 changed files with 27 additions and 22 deletions

View File

@ -1,9 +0,0 @@
## [blocky-5.0.36](https://github.com/truecharts/charts/compare/blocky-5.0.35...blocky-5.0.36) (2023-06-04)
### Chore
- update helm general non-major ([#9393](https://github.com/truecharts/charts/issues/9393))

View File

@ -4,6 +4,15 @@
## [blocky-5.0.37](https://github.com/truecharts/charts/compare/blocky-5.0.36...blocky-5.0.37) (2023-06-05)
### Fix
- fix tpl ([#9396](https://github.com/truecharts/charts/issues/9396))
## [blocky-5.0.36](https://github.com/truecharts/charts/compare/blocky-5.0.35...blocky-5.0.36) (2023-06-04)
### Chore
@ -88,12 +97,3 @@
## [blocky-5.0.27](https://github.com/truecharts/charts/compare/blocky-5.0.26...blocky-5.0.27) (2023-05-03)
### Chore
- update helm general non-major ([#8739](https://github.com/truecharts/charts/issues/8739))
## [blocky-5.0.26](https://github.com/truecharts/charts/compare/blocky-5.0.25...blocky-5.0.26) (2023-04-25)
### Chore

View File

@ -25,7 +25,7 @@ sources:
- https://0xerr0r.github.io/blocky/
- https://github.com/0xERR0R/blocky
- https://github.com/Mozart409/blocky-frontend
version: 5.0.36
version: 5.0.37
annotations:
truecharts.org/catagories: |
- network

View File

@ -0,0 +1,9 @@
## [blocky-5.0.37](https://github.com/truecharts/charts/compare/blocky-5.0.36...blocky-5.0.37) (2023-06-05)
### Fix
- fix tpl ([#9396](https://github.com/truecharts/charts/issues/9396))

View File

@ -38,7 +38,7 @@ Create the matchable regex from domain
{{- $fqdn := ( include "tc.v1.common.lib.chart.names.fqdn" . ) }}
enabled: true
data:
Corefile: |-
Corefile: |
.:{{ .Values.service.k8sgateway.ports.k8sgateway.targetPort }} {
errors
log
@ -48,9 +48,15 @@ data:
ready
{{- range .Values.k8sgateway.domains }}
{{- if .dnsChallenge.enabled }}
{{- if not .dnsChallenge.domain -}}
{{- fail "DNS01 challenge domain is mandatory" -}}
{{- end }}
template IN ANY {{ required "Delegated domain ('domain') is mandatory" .domain }} {
match "_acme-challenge[.](.*)[.]{{ include "k8sgateway.configmap.regex" . }}"
answer "{{ "{{" }} .Name {{ "}}" }} 5 IN CNAME {{ "{{" }} index .Match 1 {{ "}}" }}.{{ required "DNS01 challenge domain is mandatory" .dnsChallenge.domain }}"
{{- $name := "{{ \"{{ .Name }}\" }}" }}
{{- $index := "{{ \"{{ index .Match 1 }}\" }}" }}
answer "{{ $name }} 5 IN CNAME {{ $index }}.{{ .dnsChallenge.domain }}"
fallthrough
}
{{- end }}

View File

@ -4,7 +4,6 @@
{{- end }}
{{- include "tc.v1.common.loader.init" . }}
{{/* Render configmap for blocky */}}
{{- $configmapFile := include "blocky.configmap" . | fromYaml -}}
{{- if $configmapFile -}}