Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
9c3c0a1a86
commit
d5680364b7
|
@ -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))
|
||||
|
||||
|
|
@ -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
|
|
@ -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
|
|
@ -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))
|
||||
|
||||
|
|
@ -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 }}
|
|
@ -4,7 +4,6 @@
|
|||
{{- end }}
|
||||
{{- include "tc.v1.common.loader.init" . }}
|
||||
|
||||
|
||||
{{/* Render configmap for blocky */}}
|
||||
{{- $configmapFile := include "blocky.configmap" . | fromYaml -}}
|
||||
{{- if $configmapFile -}}
|
Loading…
Reference in New Issue