Commit new App releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2021-11-06 18:30:39 +00:00
parent b49fe78937
commit 0d0c151538
12 changed files with 110 additions and 84 deletions

View File

@ -1,6 +1,15 @@
# Changelog<br>
<a name="testrc2-0.0.4"></a>
### [testrc2-0.0.4](https://github.com/truecharts/apps/compare/testrc2-0.0.3...testrc2-0.0.4) (2021-11-06)
#### Feat
* Write new persistence GUI and move persistence into includes
<a name="testrc2-0.0.3"></a>
### [testrc2-0.0.3](https://github.com/truecharts/apps/compare/testrc2-0.0.2...testrc2-0.0.3) (2021-11-06)
@ -88,12 +97,3 @@
### [jackett-9.0.2](https://github.com/truecharts/apps/compare/jackett-9.0.1...jackett-9.0.2) (2021-10-26)
#### Chore
* update non-major deps helm releases ([#1245](https://github.com/truecharts/apps/issues/1245))
<a name="jackett-9.0.1"></a>
### [jackett-9.0.1](https://github.com/truecharts/apps/compare/jackett-9.0.0...jackett-9.0.1) (2021-10-26)
#### Chore

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org
version: 8.5.0
digest: sha256:251255bcca05ea056515cb92dcb3bebe2491b5c0e61c01898e6afd7fb06a2b49
generated: "2021-11-06T17:57:55.65308111Z"
generated: "2021-11-06T18:26:48.905937243Z"

View File

@ -21,7 +21,7 @@ name: testrc2
sources:
- https://github.com/Jackett/Jackett
type: application
version: 0.0.3
version: 0.0.4
annotations:
truecharts.org/catagories: |
- media

View File

@ -593,64 +593,31 @@ questions:
schema:
type: boolean
default: true
hidden: true
- variable: type
label: "(Advanced) Type of Storage"
description: "Sets the persistence type"
label: "Type of Storage"
description: "Sets the persistence type, Anything other than PVC could break rollback!"
schema:
type: string
default: "pvc"
default: "simpleHP"
enum:
- value: "pvc"
description: "pvc"
- value: "simplePVC"
description: "PVC (simple)"
- value: "simpleHP"
description: "HostPath (simple)"
- value: "emptyDir"
description: "emptyDir"
- value: "pvc"
description: "pvc"
- value: "hostPath"
description: "hostPath"
- variable: storageClass
label: "(Advanced) storageClass"
description: " Warning: Anything other than SCALE-ZFS will break rollback!"
- variable: setPermissionsSimple
label: "Automatic Permissions"
description: "Automatically set permissions on install"
schema:
show_if: [["type", "=", "pvc"]]
type: string
default: "SCALE-ZFS"
- variable: labelsList
label: "Labels"
schema:
type: list
default: []
items:
- variable: labelItem
label: "Label"
schema:
type: dict
attrs:
- variable: name
label: "Name"
schema:
type: string
- variable: value
label: "Value"
schema:
type: string
- variable: annotationsList
label: "Annotations"
schema:
type: list
default: []
items:
- variable: annotationItem
label: "Label"
schema:
type: dict
attrs:
- variable: name
label: "Name"
schema:
type: string
- variable: value
label: "Value"
schema:
type: string
show_if: [["type", "=", "simpleHP"]]
type: boolean
default: true
- variable: setPermissions
label: "Automatic Permissions"
description: "Automatically set permissions on install"
@ -663,14 +630,45 @@ questions:
schema:
type: boolean
default: false
- variable: hostPathSimple
label: "hostPath"
description: "Path inside the container the storage is mounted"
schema:
show_if: [["type", "=", "simpleHP"]]
type: hostpath
- variable: hostPath
label: "hostPath"
description: "Path inside the container the storage is mounted"
schema:
show_if: [["type", "=", "hostPath"]]
type: hostpath
- variable: mountPath
label: "mountPath"
description: "Path inside the container the storage is mounted"
schema:
type: string
default: "/config"
editable: false
valid_chars: '^\/([a-zA-Z0-9._-]+\/?)+$'
- 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"
schema:
show_if: [["type", "=", "pvc"]]
type: string
default: "999Gi"
- variable: hostPathType
label: "hostPath Type"
label: "(Advanced) hostPath Type"
schema:
show_if: [["type", "=", "hostPath"]]
type: string
@ -692,27 +690,15 @@ questions:
description: "CharDevice"
- value: "BlockDevice"
description: "BlockDevice"
- variable: mountPath
label: "mountPath"
description: "Path inside the container the storage is mounted"
- variable: storageClass
label: "(Advanced) storageClass"
description: "Warning: Anything other than SCALE-ZFS or empty will break rollback!"
schema:
show_if: [["type", "=", "pvc"]]
type: string
default: "/config"
hidden: true
valid_chars: '^\/([a-zA-Z0-9._-]+\/?)+$'
- variable: medium
label: "EmptyDir Medium"
schema:
show_if: [["type", "=", "emptyDir"]]
type: string
default: ""
enum:
- value: ""
description: "Default"
- value: "Memory"
description: "Memory"
default: "SCALE-ZFS"
- variable: accessMode
label: "Access Mode (Advanced)"
label: "(Advanced) Access Mode"
description: "Allow or disallow multiple PVC's writhing to the same PV"
schema:
show_if: [["type", "=", "pvc"]]
@ -725,12 +711,52 @@ questions:
description: "ReadOnlyMany"
- value: "ReadWriteMany"
description: "ReadWriteMany"
- variable: size
label: "Size quotum of storage"
- variable: advanced
label: "Show Advanced Options"
schema:
show_if: [["type", "=", "pvc"]]
type: string
default: "100Gi"
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: labelsList
label: "Labels"
schema:
type: list
default: []
items:
- variable: labelItem
label: "Label"
schema:
type: dict
attrs:
- variable: name
label: "Name"
schema:
type: string
- variable: value
label: "Value"
schema:
type: string
- variable: annotationsList
label: "Annotations"
schema:
type: list
default: []
items:
- variable: annotationItem
label: "Label"
schema:
type: dict
attrs:
- variable: name
label: "Name"
schema:
type: string
- variable: value
label: "Value"
schema:
type: string
- variable: persistenceList
label: "Additional app storage"
group: "Storage and Persistence"