Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
7fd1c1271e
commit
c9ee706a48
|
@ -1,4 +0,0 @@
|
|||
|
||||
|
||||
## [blocky-5.0.15](https://github.com/truecharts/charts/compare/blocky-5.0.14...blocky-5.0.15) (2023-04-14)
|
||||
|
|
@ -4,6 +4,15 @@
|
|||
|
||||
|
||||
|
||||
## [blocky-5.0.16](https://github.com/truecharts/charts/compare/blocky-5.0.15...blocky-5.0.16) (2023-04-15)
|
||||
|
||||
### Fix
|
||||
|
||||
- fix additional bootstap dns ([#8029](https://github.com/truecharts/charts/issues/8029))
|
||||
|
||||
|
||||
|
||||
|
||||
## [blocky-5.0.15](https://github.com/truecharts/charts/compare/blocky-5.0.14...blocky-5.0.15) (2023-04-14)
|
||||
|
||||
|
||||
|
@ -88,12 +97,3 @@
|
|||
## [blocky-5.0.6](https://github.com/truecharts/charts/compare/blocky-5.0.5...blocky-5.0.6) (2023-03-06)
|
||||
|
||||
|
||||
|
||||
|
||||
## [blocky-5.0.5](https://github.com/truecharts/charts/compare/blocky-5.0.4...blocky-5.0.5) (2023-03-06)
|
||||
|
||||
|
||||
|
||||
|
||||
## [blocky-5.0.4](https://github.com/truecharts/charts/compare/blocky-5.0.3...blocky-5.0.4) (2023-03-06)
|
||||
|
|
@ -25,7 +25,7 @@ sources:
|
|||
- https://0xerr0r.github.io/blocky/
|
||||
- https://github.com/0xERR0R/blocky
|
||||
- https://github.com/Mozart409/blocky-frontend
|
||||
version: 5.0.15
|
||||
version: 5.0.16
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- network
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
|
||||
## [blocky-5.0.16](https://github.com/truecharts/charts/compare/blocky-5.0.15...blocky-5.0.16) (2023-04-15)
|
||||
|
||||
### Fix
|
||||
|
||||
- fix additional bootstap dns ([#8029](https://github.com/truecharts/charts/issues/8029))
|
||||
|
||||
|
|
@ -207,8 +207,8 @@ blocking:
|
|||
downloadAttempts: 3
|
||||
# -- Sets the block download cooldown
|
||||
downloadCooldown: 2s
|
||||
# -- Set to fail start of lists cannot be downloaded
|
||||
failStartOnListError: false
|
||||
# -- Set the start strategy (blocking | failOnError | fast)
|
||||
startStrategy: blocking
|
||||
# -- Sets how many list-groups can be processed at the same time
|
||||
processingConcurrency: 4
|
||||
# -- Add blocky whitelists
|
|
@ -564,12 +564,22 @@ questions:
|
|||
schema:
|
||||
type: string
|
||||
default: 2s
|
||||
- variable: failStartOnListError
|
||||
label: Fail Start on List Error
|
||||
description: Fail to start if at least one list can't be downloaded or opened
|
||||
- variable: startStrategy
|
||||
label: Start Strategy
|
||||
description: |
|
||||
blocking: all blocking lists will be loaded before DNS resolution starts.</br>
|
||||
failOnError: like blocking but blocky will shut down if any download fails.</br>
|
||||
fast: DNS resolution starts immediately without blocking which will be enabled after list load is completed
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
type: string
|
||||
default: blocking
|
||||
enum:
|
||||
- value: blocking
|
||||
description: Blocking
|
||||
- value: failOnError
|
||||
description: Fail On Error
|
||||
- value: fast
|
||||
description: Fast
|
||||
- variable: processingConcurrency
|
||||
label: Processing Concurrency
|
||||
description: Sets how many list-groups can be processed at the same time
|
||||
|
@ -1263,15 +1273,15 @@ questions:
|
|||
label: Port Type
|
||||
schema:
|
||||
type: string
|
||||
default: TCP
|
||||
default: tcp
|
||||
enum:
|
||||
- value: HTTP
|
||||
- value: http
|
||||
description: HTTP
|
||||
- value: HTTPS
|
||||
- value: https
|
||||
description: HTTPS
|
||||
- value: TCP
|
||||
- value: tcp
|
||||
description: TCP
|
||||
- value: UDP
|
||||
- value: udp
|
||||
description: UDP
|
||||
- variable: targetPort
|
||||
label: Target Port
|
||||
|
@ -2502,6 +2512,7 @@ questions:
|
|||
description: Authentication Credentials
|
||||
schema:
|
||||
type: string
|
||||
show_if: [["username", "!=", ""]]
|
||||
default: ""
|
||||
required: true
|
||||
- variable: tailscale
|
|
@ -113,9 +113,11 @@ bootstrapDns:
|
|||
{{- with .upstream }}
|
||||
- upstream: {{ . }}
|
||||
{{- end }}
|
||||
{{- range $id, $value := .ips }}
|
||||
{{- if .ips }}
|
||||
ips:
|
||||
{{- range $id, $value := .ips }}
|
||||
- {{ $value }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
|
@ -204,7 +206,7 @@ blocking:
|
|||
downloadTimeout: {{ .Values.blocking.downloadTimeout }}
|
||||
downloadAttempts: {{ .Values.blocking.downloadAttempts }}
|
||||
downloadCooldown: {{ .Values.blocking.downloadCooldown }}
|
||||
failStartOnListError: {{ .Values.blocking.failStartOnListError }}
|
||||
startStrategy: {{ .Values.blocking.startStrategy }}
|
||||
processingConcurrency: {{ .Values.blocking.processingConcurrency }}
|
||||
{{- if .Values.blocking.whitelist }}
|
||||
whiteLists:
|
Loading…
Reference in New Issue