Commit new App releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
4d5e1f9a31
commit
17e2ba58b3
|
@ -1,6 +1,15 @@
|
|||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="outline-1.0.11"></a>
|
||||
### [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))
|
||||
|
||||
|
||||
|
||||
<a name="outline-1.0.10"></a>
|
||||
### [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 @@
|
|||
|
||||
|
||||
<a name="outline-0.0.1"></a>
|
||||
### outline-0.0.1 (2022-03-22)
|
||||
|
||||
#### Feat
|
||||
|
||||
* Add outline ([#2230](https://github.com/truecharts/apps/issues/2230))
|
|
@ -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"
|
|
@ -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
|
|
@ -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 -}}
|
Loading…
Reference in New Issue