diff --git a/stable/outline/1.0.10/CHANGELOG.md b/stable/outline/1.0.11/CHANGELOG.md similarity index 90% rename from stable/outline/1.0.10/CHANGELOG.md rename to stable/outline/1.0.11/CHANGELOG.md index 9d253b6c80e..c59358bea2a 100644 --- a/stable/outline/1.0.10/CHANGELOG.md +++ b/stable/outline/1.0.11/CHANGELOG.md @@ -1,6 +1,15 @@ # Changelog
+ +### [outline-1.0.11](https://github.com/truecharts/apps/compare/outline-1.0.10...outline-1.0.11) (2022-04-02) + +#### Fix + +* don't b64enc secret ([#2394](https://github.com/truecharts/apps/issues/2394)) + + + ### [outline-1.0.10](https://github.com/truecharts/apps/compare/outline-1.0.9...outline-1.0.10) (2022-04-02) @@ -88,8 +97,3 @@ -### outline-0.0.1 (2022-03-22) - -#### Feat - -* Add outline ([#2230](https://github.com/truecharts/apps/issues/2230)) diff --git a/stable/outline/1.0.10/CONFIG.md b/stable/outline/1.0.11/CONFIG.md similarity index 100% rename from stable/outline/1.0.10/CONFIG.md rename to stable/outline/1.0.11/CONFIG.md diff --git a/stable/outline/1.0.10/Chart.lock b/stable/outline/1.0.11/Chart.lock similarity index 88% rename from stable/outline/1.0.10/Chart.lock rename to stable/outline/1.0.11/Chart.lock index bba703bb351..923df3652dd 100644 --- a/stable/outline/1.0.10/Chart.lock +++ b/stable/outline/1.0.11/Chart.lock @@ -9,4 +9,4 @@ dependencies: repository: https://charts.truecharts.org version: 2.0.23 digest: sha256:9bb2955e213f4574812c315a578a0cff8801b7e5962141499229ef682f0d6606 -generated: "2022-04-02T10:11:27.745609258Z" +generated: "2022-04-02T15:43:42.229152164Z" diff --git a/stable/outline/1.0.10/Chart.yaml b/stable/outline/1.0.11/Chart.yaml similarity index 98% rename from stable/outline/1.0.10/Chart.yaml rename to stable/outline/1.0.11/Chart.yaml index cc20d86c580..f6773d5b048 100644 --- a/stable/outline/1.0.10/Chart.yaml +++ b/stable/outline/1.0.11/Chart.yaml @@ -28,7 +28,7 @@ name: outline sources: - https://github.com/outline/outline type: application -version: 1.0.10 +version: 1.0.11 annotations: truecharts.org/catagories: | - productivity diff --git a/stable/outline/1.0.10/README.md b/stable/outline/1.0.11/README.md similarity index 100% rename from stable/outline/1.0.10/README.md rename to stable/outline/1.0.11/README.md diff --git a/stable/outline/1.0.10/app-readme.md b/stable/outline/1.0.11/app-readme.md similarity index 100% rename from stable/outline/1.0.10/app-readme.md rename to stable/outline/1.0.11/app-readme.md diff --git a/stable/outline/1.0.10/charts/common-9.2.6.tgz b/stable/outline/1.0.11/charts/common-9.2.6.tgz similarity index 100% rename from stable/outline/1.0.10/charts/common-9.2.6.tgz rename to stable/outline/1.0.11/charts/common-9.2.6.tgz diff --git a/stable/outline/1.0.10/charts/postgresql-7.0.27.tgz b/stable/outline/1.0.11/charts/postgresql-7.0.27.tgz similarity index 100% rename from stable/outline/1.0.10/charts/postgresql-7.0.27.tgz rename to stable/outline/1.0.11/charts/postgresql-7.0.27.tgz diff --git a/stable/outline/1.0.10/charts/redis-2.0.23.tgz b/stable/outline/1.0.11/charts/redis-2.0.23.tgz similarity index 100% rename from stable/outline/1.0.10/charts/redis-2.0.23.tgz rename to stable/outline/1.0.11/charts/redis-2.0.23.tgz diff --git a/stable/outline/1.0.10/helm-values.md b/stable/outline/1.0.11/helm-values.md similarity index 100% rename from stable/outline/1.0.10/helm-values.md rename to stable/outline/1.0.11/helm-values.md diff --git a/stable/outline/1.0.10/ix_values.yaml b/stable/outline/1.0.11/ix_values.yaml similarity index 100% rename from stable/outline/1.0.10/ix_values.yaml rename to stable/outline/1.0.11/ix_values.yaml diff --git a/stable/outline/1.0.10/questions.yaml b/stable/outline/1.0.11/questions.yaml similarity index 100% rename from stable/outline/1.0.10/questions.yaml rename to stable/outline/1.0.11/questions.yaml diff --git a/stable/outline/1.0.10/security.md b/stable/outline/1.0.11/security.md similarity index 100% rename from stable/outline/1.0.10/security.md rename to stable/outline/1.0.11/security.md diff --git a/stable/outline/1.0.10/templates/_secrets.tpl b/stable/outline/1.0.11/templates/_secrets.tpl similarity index 80% rename from stable/outline/1.0.10/templates/_secrets.tpl rename to stable/outline/1.0.11/templates/_secrets.tpl index f49132e7512..8da77a3cbb8 100644 --- a/stable/outline/1.0.10/templates/_secrets.tpl +++ b/stable/outline/1.0.11/templates/_secrets.tpl @@ -17,8 +17,9 @@ data: {{- else }} {{- $secret_key := randAlphaNum 64 }} {{- $utils_secret := randAlphaNum 64 }} - SECRET_KEY: {{ $secret_key | b64enc }} - UTILS_SECRET: {{ $utils_secret | b64enc }} + {{/* Outline does the b64enc itself, so we pass them clear */}} + SECRET_KEY: {{ $secret_key }} + UTILS_SECRET: {{ $utils_secret }} {{- end }} {{- end -}} diff --git a/stable/outline/1.0.10/templates/common.yaml b/stable/outline/1.0.11/templates/common.yaml similarity index 100% rename from stable/outline/1.0.10/templates/common.yaml rename to stable/outline/1.0.11/templates/common.yaml diff --git a/stable/outline/1.0.10/values.yaml b/stable/outline/1.0.11/values.yaml similarity index 100% rename from stable/outline/1.0.10/values.yaml rename to stable/outline/1.0.11/values.yaml