Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-09-09 20:16:54 +00:00
parent b9d98654da
commit 8602e49674
13 changed files with 21 additions and 14 deletions

View File

@ -1,4 +0,0 @@
## [firezone-0.2.0](https://github.com/truecharts/charts/compare/firezone-0.1.0...firezone-0.2.0) (2023-09-09)

View File

@ -4,6 +4,11 @@
## [firezone-0.2.1](https://github.com/truecharts/charts/compare/firezone-0.2.0...firezone-0.2.1) (2023-09-09)
## [firezone-0.2.0](https://github.com/truecharts/charts/compare/firezone-0.1.0...firezone-0.2.0) (2023-09-09)

View File

@ -22,7 +22,7 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/firezone
- https://github.com/firezone/firezone
type: application
version: 0.2.0
version: 0.2.1
annotations:
truecharts.org/catagories: |
- vpn

View File

@ -0,0 +1,4 @@
## [firezone-0.2.1](https://github.com/truecharts/charts/compare/firezone-0.2.0...firezone-0.2.1) (2023-09-09)

View File

@ -294,10 +294,12 @@ questions:
description: Configures the default AllowedIPs setting for devices.
schema:
type: list
default: []
empty: false
default:
- 0.0.0.0/0
items:
- variable: dns
label: DNS
- variable: ip
label: IP
schema:
type: string
required: true

View File

@ -4,12 +4,12 @@
# firezone requires all these keys to be in base 64 | b64enc format presented in the container, so this b64enc here is intentional
# https://www.firezone.dev/docs/reference/env-vars#secrets-and-encryption
{{- $keyGuardian := randAlphaNum 64 | b64enc -}}
{{- $keyDatabase := randAlphaNum 64 | b64enc -}}
{{- $keySecret := randAlphaNum 64 | b64enc -}}
{{- $keyLive := randAlphaNum 64 | b64enc -}}
{{- $keyCookieSigning := randAlphaNum 64 | b64enc -}}
{{- $keyCookieEncrypt := randAlphaNum 64 | b64enc -}}
{{- $keyGuardian := randAlphaNum 48 | b64enc -}}
{{- $keyDatabase := randAlphaNum 32 | b64enc -}}
{{- $keySecret := randAlphaNum 48 | b64enc -}}
{{- $keyLive := randAlphaNum 24 | b64enc -}}
{{- $keyCookieSigning := randAlphaNum 6 | b64enc -}}
{{- $keyCookieEncrypt := randAlphaNum 6 | b64enc -}}
{{- with (lookup "v1" "Secret" .Release.Namespace $secretName) -}}
{{- $keyGuardian = index .data "GUARDIAN_SECRET_KEY" | b64dec -}}
{{- $keyDatabase = index .data "DATABASE_ENCRYPTION_KEY" | b64dec -}}