Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
ad652c1443
commit
5ee71e9dc8
|
@ -0,0 +1,13 @@
|
|||
**Important:**
|
||||
*for the complete changelog, please refer to the website*
|
||||
|
||||
|
||||
|
||||
|
||||
## [ghostfolio-0.0.1]ghostfolio-0.0.1 (2023-07-01)
|
||||
|
||||
### Feat
|
||||
|
||||
- Add ghostfolio ([#9476](https://github.com/truecharts/charts/issues/9476))
|
||||
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
apiVersion: v2
|
||||
appVersion: "1.277.0"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 12.14.6
|
||||
- name: redis
|
||||
repository: https://deps.truecharts.org
|
||||
version: 6.0.58
|
||||
deprecated: false
|
||||
description: Ghostfolio is a privacy-first, open source dashboard for your personal finances. Break down your asset allocation, know your net worth and make solid, data-driven investment decisions.
|
||||
home: https://truecharts.org/charts/incubator/ghostfolio
|
||||
icon: https://truecharts.org/img/hotlink-ok/chart-icons/ghostfolio.png
|
||||
keywords:
|
||||
- ghostfolio
|
||||
- finance
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
maintainers:
|
||||
- email: info@truecharts.org
|
||||
name: TrueCharts
|
||||
url: https://truecharts.org
|
||||
name: ghostfolio
|
||||
sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/incubator/ghostfolio
|
||||
- https://github.com/ghostfolio/ghostfolio
|
||||
- https://ghostfol.io/
|
||||
type: application
|
||||
version: 0.0.1
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- finance
|
||||
truecharts.org/SCALE-support: "true"
|
|
@ -0,0 +1 @@
|
|||
# README
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
|
||||
## [ghostfolio-0.0.1]ghostfolio-0.0.1 (2023-07-01)
|
||||
|
||||
### Feat
|
||||
|
||||
- Add ghostfolio ([#9476](https://github.com/truecharts/charts/issues/9476))
|
||||
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
Ghostfolio is a privacy-first, open source dashboard for your personal finances. Break down your asset allocation, know your net worth and make solid, data-driven investment decisions.
|
||||
|
||||
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/incubator/ghostfolio](https://truecharts.org/charts/incubator/ghostfolio)
|
||||
|
||||
---
|
||||
|
||||
TrueCharts can only exist due to the incredible effort of our staff.
|
||||
Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can!
|
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,73 @@
|
|||
image:
|
||||
repository: tccr.io/truecharts/ghostfolio
|
||||
pullPolicy: IfNotPresent
|
||||
tag: v1.283.5
|
||||
|
||||
workload:
|
||||
main:
|
||||
podSpec:
|
||||
containers:
|
||||
main:
|
||||
probes:
|
||||
liveness:
|
||||
path: "/"
|
||||
type: http
|
||||
readiness:
|
||||
path: "/"
|
||||
type: http
|
||||
startup:
|
||||
path: "/"
|
||||
type: http
|
||||
env:
|
||||
ALPHA_VANTAGE_API_KEY: ""
|
||||
ACCESS_TOKEN_SALT:
|
||||
secretKeyRef:
|
||||
name: secrets
|
||||
key: ACCESS_TOKEN_SALT
|
||||
JWT_SECRET_KEY:
|
||||
secretKeyRef:
|
||||
name: secrets
|
||||
key: JWT_SECRET_KEY
|
||||
DATABASE_URL:
|
||||
secretKeyRef:
|
||||
name: secrets
|
||||
key: DATABASE_URL
|
||||
REDIS_HOST:
|
||||
secretKeyRef:
|
||||
expandObjectName: false
|
||||
name: '{{ printf "%s-%s" .Release.Name "rediscreds" }}'
|
||||
key: plainhost
|
||||
REDIS_PASSWORD:
|
||||
secretKeyRef:
|
||||
expandObjectName: false
|
||||
name: '{{ printf "%s-%s" .Release.Name "rediscreds" }}'
|
||||
key: redis-password
|
||||
REDIS_PORT: "6379"
|
||||
|
||||
service:
|
||||
main:
|
||||
ports:
|
||||
main:
|
||||
port: 3333
|
||||
targetPort: 3333
|
||||
|
||||
cnpg:
|
||||
main:
|
||||
enabled: true
|
||||
user: ghostfolio
|
||||
database: ghostfolio
|
||||
|
||||
redis:
|
||||
enabled: true
|
||||
|
||||
securityContext:
|
||||
container:
|
||||
runAsNonRoot: false
|
||||
readOnlyRootFilesystem: false
|
||||
runAsUser: 0
|
||||
runAsGroup: 0
|
||||
fsGroup: 568
|
||||
|
||||
portal:
|
||||
open:
|
||||
enabled: true
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1 @@
|
|||
{{- include "tc.v1.common.lib.chart.notes" $ -}}
|
|
@ -0,0 +1,20 @@
|
|||
{{/* Define the secrets */}}
|
||||
{{- define "ghostfolio.secrets" -}}
|
||||
{{- $secretName := (printf "%s-ghostfolio-secrets" (include "tc.v1.common.lib.chart.names.fullname" $)) -}}
|
||||
|
||||
{{/* Initialize all keys */}}
|
||||
{{- $accesstokensalt := randAlphaNum 50 }}
|
||||
{{- $jwtsecret := randAlphaNum 50 }}
|
||||
|
||||
{{- with (lookup "v1" "Secret" .Release.Namespace $secretName) -}}
|
||||
{{/* Get previous values and decode */}}
|
||||
{{- $accesstokensalt = (index .data "ACCESS_TOKEN_SALT") | b64dec -}}
|
||||
{{- $jwtsecret = (index .data "JWT_SECRET_KEY") | b64dec -}}
|
||||
{{- end }}
|
||||
|
||||
enabled: true
|
||||
data:
|
||||
ACCESS_TOKEN_SALT: {{ $accesstokensalt }}
|
||||
JWT_SECRET_KEY: {{ $jwtsecret }}
|
||||
DATABASE_URL: {{ (printf "%s?client_encoding=utf8" (.Values.cnpg.main.creds.std | trimAll "\"")) | quote }}
|
||||
{{- end -}}
|
|
@ -0,0 +1,11 @@
|
|||
{{/* Make sure all variables are set properly */}}
|
||||
{{- include "tc.v1.common.loader.init" . }}
|
||||
|
||||
{{/* Render secrets for ghostfolio */}}
|
||||
{{- $secrets := include "ghostfolio.secrets" . | fromYaml -}}
|
||||
{{- if $secrets -}}
|
||||
{{- $_ := set .Values.secret "secrets" $secrets -}}
|
||||
{{- end -}}
|
||||
|
||||
{{/* Render the templates */}}
|
||||
{{ include "tc.v1.common.loader.apply" . }}
|
|
@ -0,0 +1,5 @@
|
|||
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/ghostfolio.png
|
||||
categories:
|
||||
- finance
|
||||
|
||||
screenshots: []
|
Loading…
Reference in New Issue