diff --git a/incubator/firezone/0.2.0/app-changelog.md b/incubator/firezone/0.2.0/app-changelog.md deleted file mode 100644 index f99b3be4a6..0000000000 --- a/incubator/firezone/0.2.0/app-changelog.md +++ /dev/null @@ -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) - diff --git a/incubator/firezone/0.2.0/CHANGELOG.md b/incubator/firezone/0.2.1/CHANGELOG.md similarity index 94% rename from incubator/firezone/0.2.0/CHANGELOG.md rename to incubator/firezone/0.2.1/CHANGELOG.md index 711512a7ab..9b88b258e1 100644 --- a/incubator/firezone/0.2.0/CHANGELOG.md +++ b/incubator/firezone/0.2.1/CHANGELOG.md @@ -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) diff --git a/incubator/firezone/0.2.0/Chart.yaml b/incubator/firezone/0.2.1/Chart.yaml similarity index 98% rename from incubator/firezone/0.2.0/Chart.yaml rename to incubator/firezone/0.2.1/Chart.yaml index c8cadfac92..c109344934 100644 --- a/incubator/firezone/0.2.0/Chart.yaml +++ b/incubator/firezone/0.2.1/Chart.yaml @@ -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 diff --git a/incubator/firezone/0.2.0/README.md b/incubator/firezone/0.2.1/README.md similarity index 100% rename from incubator/firezone/0.2.0/README.md rename to incubator/firezone/0.2.1/README.md diff --git a/incubator/firezone/0.2.1/app-changelog.md b/incubator/firezone/0.2.1/app-changelog.md new file mode 100644 index 0000000000..1b975a6b80 --- /dev/null +++ b/incubator/firezone/0.2.1/app-changelog.md @@ -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) + diff --git a/incubator/firezone/0.2.0/app-readme.md b/incubator/firezone/0.2.1/app-readme.md similarity index 100% rename from incubator/firezone/0.2.0/app-readme.md rename to incubator/firezone/0.2.1/app-readme.md diff --git a/incubator/firezone/0.2.0/charts/common-14.0.3.tgz b/incubator/firezone/0.2.1/charts/common-14.0.3.tgz similarity index 100% rename from incubator/firezone/0.2.0/charts/common-14.0.3.tgz rename to incubator/firezone/0.2.1/charts/common-14.0.3.tgz diff --git a/incubator/firezone/0.2.0/ix_values.yaml b/incubator/firezone/0.2.1/ix_values.yaml similarity index 100% rename from incubator/firezone/0.2.0/ix_values.yaml rename to incubator/firezone/0.2.1/ix_values.yaml diff --git a/incubator/firezone/0.2.0/questions.yaml b/incubator/firezone/0.2.1/questions.yaml similarity index 99% rename from incubator/firezone/0.2.0/questions.yaml rename to incubator/firezone/0.2.1/questions.yaml index 64584b6766..c7cca411c2 100644 --- a/incubator/firezone/0.2.0/questions.yaml +++ b/incubator/firezone/0.2.1/questions.yaml @@ -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 diff --git a/incubator/firezone/0.2.0/templates/NOTES.txt b/incubator/firezone/0.2.1/templates/NOTES.txt similarity index 100% rename from incubator/firezone/0.2.0/templates/NOTES.txt rename to incubator/firezone/0.2.1/templates/NOTES.txt diff --git a/incubator/firezone/0.2.0/templates/_secrets.tpl b/incubator/firezone/0.2.1/templates/_secrets.tpl similarity index 78% rename from incubator/firezone/0.2.0/templates/_secrets.tpl rename to incubator/firezone/0.2.1/templates/_secrets.tpl index 9414aa9eb6..5a29df5acc 100644 --- a/incubator/firezone/0.2.0/templates/_secrets.tpl +++ b/incubator/firezone/0.2.1/templates/_secrets.tpl @@ -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 -}} diff --git a/incubator/firezone/0.2.0/templates/common.yaml b/incubator/firezone/0.2.1/templates/common.yaml similarity index 100% rename from incubator/firezone/0.2.0/templates/common.yaml rename to incubator/firezone/0.2.1/templates/common.yaml diff --git a/incubator/firezone/0.2.0/values.yaml b/incubator/firezone/0.2.1/values.yaml similarity index 100% rename from incubator/firezone/0.2.0/values.yaml rename to incubator/firezone/0.2.1/values.yaml