Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
@@ -1,9 +0,0 @@
|
||||
|
||||
|
||||
## [ghostfolio-0.0.37](https://github.com/truecharts/charts/compare/ghostfolio-0.0.36...ghostfolio-0.0.37) (2023-11-11)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/ghostfolio to v2.22.0 ([#14587](https://github.com/truecharts/charts/issues/14587))
|
||||
|
||||
|
||||
@@ -4,6 +4,15 @@
|
||||
|
||||
|
||||
|
||||
## [ghostfolio-0.0.38](https://github.com/truecharts/charts/compare/ghostfolio-0.0.37...ghostfolio-0.0.38) (2023-11-16)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/ghostfolio to v2.23.0 ([#14697](https://github.com/truecharts/charts/issues/14697))
|
||||
|
||||
|
||||
|
||||
|
||||
## [ghostfolio-0.0.37](https://github.com/truecharts/charts/compare/ghostfolio-0.0.36...ghostfolio-0.0.37) (2023-11-11)
|
||||
|
||||
### Chore
|
||||
@@ -88,12 +97,3 @@
|
||||
|
||||
## [ghostfolio-0.0.28](https://github.com/truecharts/charts/compare/ghostfolio-0.0.27...ghostfolio-0.0.28) (2023-10-29)
|
||||
|
||||
### Chore
|
||||
|
||||
- Fix typo in categories and make them singular ([#13693](https://github.com/truecharts/charts/issues/13693))
|
||||
- update container image tccr.io/truecharts/ghostfolio to v2.16.0 ([#14086](https://github.com/truecharts/charts/issues/14086))
|
||||
|
||||
|
||||
|
||||
|
||||
## [ghostfolio-0.0.27](https://github.com/truecharts/charts/compare/ghostfolio-0.0.26...ghostfolio-0.0.27) (2023-10-27)
|
||||
@@ -1,5 +1,5 @@
|
||||
apiVersion: v2
|
||||
appVersion: "2.22.0"
|
||||
appVersion: "2.23.0"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
@@ -25,7 +25,7 @@ sources:
|
||||
- https://github.com/ghostfolio/ghostfolio
|
||||
- https://ghostfol.io/
|
||||
type: application
|
||||
version: 0.0.37
|
||||
version: 0.0.38
|
||||
annotations:
|
||||
truecharts.org/category: finance
|
||||
truecharts.org/SCALE-support: "true"
|
||||
9
stable/ghostfolio/0.0.38/app-changelog.md
Normal file
9
stable/ghostfolio/0.0.38/app-changelog.md
Normal file
@@ -0,0 +1,9 @@
|
||||
|
||||
|
||||
## [ghostfolio-0.0.38](https://github.com/truecharts/charts/compare/ghostfolio-0.0.37...ghostfolio-0.0.38) (2023-11-16)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/ghostfolio to v2.23.0 ([#14697](https://github.com/truecharts/charts/issues/14697))
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
image:
|
||||
repository: tccr.io/truecharts/ghostfolio
|
||||
pullPolicy: IfNotPresent
|
||||
tag: v2.22.0@sha256:d05afcbeed356dd6a025b44b3932e12d63f6b19e60180e10ddca8745a31e38b6
|
||||
tag: v2.23.0@sha256:a320f014471bd0f7d5ff5774cc221872b809c25ed237635f3f8972bb494d59dc
|
||||
|
||||
securityContext:
|
||||
container:
|
||||
@@ -569,6 +569,99 @@ questions:
|
||||
show_if: [["type", "=", "pvc"]]
|
||||
type: string
|
||||
default: 256Gi
|
||||
- variable: storageClass
|
||||
label: 'storageClass (Advanced)'
|
||||
description: 'sets the storageClass to something other than iX default. Only for advanced usecases!'
|
||||
schema:
|
||||
show_if: [["type", "=", "pvc"]]
|
||||
type: string
|
||||
default: ""
|
||||
- variable: static
|
||||
label: 'Static Fixed PVC Bindings (Experimental)'
|
||||
description: Link a PVC to a specific storage location
|
||||
schema:
|
||||
show_if: [["type", "=", "pvc"]]
|
||||
type: dict
|
||||
additional_attrs: true
|
||||
attrs:
|
||||
- variable: mode
|
||||
label: mode
|
||||
description: |
|
||||
disabled: use normal dynamic PVCs
|
||||
smb: connect to an SMB share
|
||||
nfs: connect to an NFS share
|
||||
schema:
|
||||
type: string
|
||||
default: "disabled"
|
||||
enum:
|
||||
- value: "disabled"
|
||||
description: disabled
|
||||
- value: smb
|
||||
description: smb
|
||||
- value: nfs
|
||||
description: nfs
|
||||
- variable: server
|
||||
label: Server
|
||||
description: server to connect to
|
||||
schema:
|
||||
type: string
|
||||
show_if: [["mode", "!=", "disabled"]]
|
||||
default: "myserver"
|
||||
- variable: share
|
||||
label: Share
|
||||
description: share to connect to
|
||||
schema:
|
||||
type: string
|
||||
show_if: [["mode", "!=", "disabled"]]
|
||||
default: "/myshare"
|
||||
- variable: user
|
||||
label: User
|
||||
description: connecting user
|
||||
schema:
|
||||
type: string
|
||||
show_if: [["mode", "=", "smb"]]
|
||||
default: "myuser"
|
||||
- variable: domain
|
||||
label: Domain
|
||||
description: user domain
|
||||
schema:
|
||||
type: string
|
||||
show_if: [["mode", "=", "smb"]]
|
||||
default: ""
|
||||
- variable: password
|
||||
label: Password
|
||||
description: connecting password
|
||||
schema:
|
||||
type: string
|
||||
show_if: [["mode", "=", "smb"]]
|
||||
default: ""
|
||||
- variable: volumeSnapshots
|
||||
label: 'Volume Snapshots (Experimental)'
|
||||
description: Add an entry to the list to force creation of a volumeSnapshot of this PVC
|
||||
schema:
|
||||
show_if: [["type", "=", "pvc"]]
|
||||
type: list
|
||||
default: []
|
||||
items:
|
||||
- variable: volumeSnapshotEntry
|
||||
label: Custom volumeSnapshot
|
||||
schema:
|
||||
additional_attrs: true
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: name
|
||||
label: Name
|
||||
description: 'WARNING: renaming this, means deletion of the snapshot with the old name!'
|
||||
schema:
|
||||
type: string
|
||||
default: "mysnapshot"
|
||||
required: true
|
||||
- variable: volumeSnapshotClassName
|
||||
label: 'volumeSnapshot Class Name (Advanced)'
|
||||
description: For use with PVCs using a non-default storageClass
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: ingress
|
||||
label: ""
|
||||
group: Ingress
|
||||
Reference in New Issue
Block a user