Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-07-03 20:15:46 +00:00
parent 6fca92355f
commit ae63d558a0
15 changed files with 51 additions and 127 deletions

View File

@ -1 +0,0 @@
# README

View File

@ -1,9 +0,0 @@
## [ghostfolio-0.0.3](https://github.com/truecharts/charts/compare/ghostfolio-0.0.2...ghostfolio-0.0.3) (2023-07-01)
### Fix
- Fix broken q's ([#10073](https://github.com/truecharts/charts/issues/10073))

View File

@ -4,6 +4,11 @@
## [ghostfolio-0.0.4](https://github.com/truecharts/charts/compare/ghostfolio-0.0.3...ghostfolio-0.0.4) (2023-07-03)
## [ghostfolio-0.0.3](https://github.com/truecharts/charts/compare/ghostfolio-0.0.2...ghostfolio-0.0.3) (2023-07-01)
### Fix

View File

@ -25,7 +25,7 @@ sources:
- https://github.com/ghostfolio/ghostfolio
- https://ghostfol.io/
type: application
version: 0.0.3
version: 0.0.4
annotations:
truecharts.org/catagories: |
- finance

View File

@ -0,0 +1,27 @@
# README
## General Info
TrueCharts can be installed as both *normal* Helm Charts or as Apps on TrueNAS SCALE.
However only installations using the TrueNAS SCALE Apps system are supported.
For more information about this App, please check the docs on the TrueCharts [website](https://truecharts.org/charts/incubator/)
**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/charts/issues/new/choose)**
## Support
- Please check our [quick-start guides for TrueNAS SCALE](https://truecharts.org/manual/SCALE/guides/scale-intro).
- See the [Website](https://truecharts.org)
- Check our [Discord](https://discord.gg/tVsPTHWTtr)
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
---
## Sponsor TrueCharts
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!
*All Rights Reserved - The TrueCharts Project*

View File

@ -0,0 +1,4 @@
## [ghostfolio-0.0.4](https://github.com/truecharts/charts/compare/ghostfolio-0.0.3...ghostfolio-0.0.4) (2023-07-03)

View File

@ -3,6 +3,20 @@ image:
pullPolicy: IfNotPresent
tag: v1.283.5@sha256:06a3ff744e4571695bf3185710c7addfa74a0318f4d6d53d3e7da7df6ade4516
securityContext:
container:
runAsNonRoot: false
readOnlyRootFilesystem: false
runAsUser: 0
runAsGroup: 0
service:
main:
ports:
main:
port: 3333
targetPort: 3333
workload:
main:
podSpec:
@ -44,13 +58,6 @@ workload:
key: redis-password
REDIS_PORT: "6379"
service:
main:
ports:
main:
port: 3333
targetPort: 3333
cnpg:
main:
enabled: true
@ -60,14 +67,6 @@ cnpg:
redis:
enabled: true
securityContext:
container:
runAsNonRoot: false
readOnlyRootFilesystem: false
runAsUser: 0
runAsGroup: 0
fsGroup: 568
portal:
open:
enabled: true

View File

@ -449,107 +449,6 @@ questions:
schema:
type: int
required: true
- variable: persistence
label: Integrated Persistent Storage
description: Integrated Persistent Storage
group: Storage and Persistence
schema:
additional_attrs: true
type: dict
attrs:
- variable: type
label: Type of Storage
description: Sets the persistence type, Anything other than PVC could break rollback!
schema:
type: string
default: pvc
enum:
- value: pvc
description: PVC
- value: hostPath
description: Host Path
- value: emptyDir
description: emptyDir
- value: nfs
description: NFS Share
- variable: server
label: NFS Server
schema:
show_if: [["type", "=", "nfs"]]
type: string
default: ""
- variable: path
label: Path on NFS Server
schema:
show_if: [["type", "=", "nfs"]]
type: string
default: ""
- variable: setPermissions
label: Automatic Permissions
description: Automatically set permissions on install
schema:
show_if: [["type", "=", "hostPath"]]
hidden: true
type: boolean
default: false
- variable: autoPermissions
label: Automatic Permissions Configuration
description: Automatically set permissions
schema:
show_if: [["type", "!=", "pvc"]]
type: dict
additional_attrs: true
attrs:
- variable: chown
label: Run CHOWN
description: |
It will run CHOWN on the path with the given fsGroup
schema:
type: boolean
default: false
- variable: chmod
label: Run CHMOD
description: |
It will run CHMOD on the path with the given value
schema:
type: string
default: "775"
- variable: recursive
label: Recursive
description: |
It will run CHOWN and CHMOD recursively
schema:
type: boolean
default: false
- variable: readOnly
label: Read Only
schema:
type: boolean
default: false
- variable: hostPath
label: Host Path
description: Path inside the container the storage is mounted
schema:
show_if: [["type", "=", "hostPath"]]
type: hostpath
- variable: medium
label: EmptyDir Medium
schema:
show_if: [["type", "=", "emptyDir"]]
type: string
default: ""
enum:
- value: ""
description: Default
- value: Memory
description: Memory
- variable: size
label: Size quotum of Storage (Do NOT REDUCE after installation)
description: This value can ONLY be INCREASED after the installation
schema:
show_if: [["type", "=", "pvc"]]
type: string
default: 256Gi
- variable: persistenceList
label: Additional App Storage
group: Storage and Persistence