Commit new App releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2022-06-29 21:08:07 +00:00
parent b35ab7cedb
commit 0a7aa825d5
30 changed files with 207 additions and 29 deletions

View File

@ -1,6 +1,15 @@
# Changelog<br>
<a name="emulatorjs-2.0.10"></a>
### [emulatorjs-2.0.10](https://github.com/truecharts/apps/compare/emulatorjs-2.0.9...emulatorjs-2.0.10) (2022-06-29)
#### Chore
* bump linkace ([#3014](https://github.com/truecharts/apps/issues/3014))
<a name="emulatorjs-2.0.9"></a>
### [emulatorjs-2.0.9](https://github.com/truecharts/apps/compare/emulatorjs-2.0.8...emulatorjs-2.0.9) (2022-06-29)
@ -88,12 +97,3 @@
#### Refactor
* BREAKING CHANGE ([#2836](https://github.com/truecharts/apps/issues/2836))
<a name="emulatorjs-2.0.0"></a>
### [emulatorjs-2.0.0](https://github.com/truecharts/apps/compare/emulatorjs-1.0.21...emulatorjs-2.0.0) (2022-06-07)
#### Chore
* sync all apps persistence configuration and always default to PVC

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://library-charts.truecharts.org
version: 10.1.4
digest: sha256:0f159b86b96bd27bd8d967476e26de9a2a6db995faf0c091cbf1281ee4c4e3a2
generated: "2022-06-29T20:09:01.563841166Z"
generated: "2022-06-29T21:00:40.434670922Z"

View File

@ -1,7 +1,7 @@
apiVersion: v2
kubeVersion: ">=1.16.0-0"
name: emulatorjs
version: 2.0.9
version: 2.0.10
appVersion: "1.7.2"
description: Emulatorjs - In browser web based emulation portable to nearly any device for many retro consoles.
type: application

View File

@ -32,6 +32,10 @@ service:
targetPort: 4001
port: 10138
ingress:
front:
autoLink: true
persistence:
data:
enabled: true

View File

@ -1,6 +1,19 @@
# Changelog<br>
<a name="linkace-4.0.12"></a>
### [linkace-4.0.12](https://github.com/truecharts/apps/compare/linkace-4.0.11...linkace-4.0.12) (2022-06-29)
#### Chore
* bump linkace ([#3014](https://github.com/truecharts/apps/issues/3014))
#### Fix
* remove /app storage. ([#3012](https://github.com/truecharts/apps/issues/3012))
<a name="linkace-4.0.11"></a>
### [linkace-4.0.11](https://github.com/truecharts/apps/compare/linkace-4.0.10...linkace-4.0.11) (2022-06-29)
@ -84,16 +97,3 @@
<a name="linkace-4.0.2"></a>
### [linkace-4.0.2](https://github.com/truecharts/apps/compare/linkace-4.0.1...linkace-4.0.2) (2022-06-11)
#### Chore
* update helm general non-major helm releases ([#2854](https://github.com/truecharts/apps/issues/2854))
<a name="linkace-4.0.1"></a>
### [linkace-4.0.1](https://github.com/truecharts/apps/compare/linkace-4.0.0...linkace-4.0.1) (2022-06-11)
#### Chore
* update docker general non-major ([#2848](https://github.com/truecharts/apps/issues/2848))

View File

@ -9,4 +9,4 @@ dependencies:
repository: https://charts.truecharts.org
version: 3.0.18
digest: sha256:7ea59c9d955ac2d5d830ae6bec9856ec0fe75d11ffd1c35c80b8b3991bb7abe8
generated: "2022-06-29T10:56:10.576777335Z"
generated: "2022-06-29T21:00:45.587271323Z"

View File

@ -27,7 +27,7 @@ sources:
- https://www.linkace.org/docs/
- https://github.com/linkace/linkace
- https://hub.docker.com/r/linkace/linkace
version: 4.0.11
version: 4.0.12
annotations:
truecharts.org/catagories: |
- media

View File

@ -82,9 +82,6 @@ service:
targetPort: 80
persistence:
app:
enabled: true
mountPath: "/app"
logs:
enabled: true
mountPath: "/app/storage/logs"

View File

@ -1010,6 +1010,183 @@ questions:
label: "Value"
schema:
type: string
- variable: logs
label: "App Logs Storage"
description: "Stores the Application Logs."
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: "simplePVC"
enum:
- value: "simplePVC"
description: "PVC (simple)"
- value: "simpleHP"
description: "HostPath (simple)"
- value: "emptyDir"
description: "emptyDir"
- value: "pvc"
description: "pvc"
- value: "hostPath"
description: "hostPath"
- 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: setPermissionsSimple
label: "Automatic Permissions"
description: "Automatically set permissions on install"
schema:
show_if: [["type", "=", "simpleHP"]]
type: boolean
default: true
- variable: setPermissions
label: "Automatic Permissions"
description: "Automatically set permissions on install"
schema:
show_if: [["type", "=", "hostPath"]]
type: boolean
default: true
- variable: readOnly
label: "readOnly"
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: 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: "(Advanced) hostPath Type"
schema:
show_if: [["type", "=", "hostPath"]]
type: string
default: ""
enum:
- value: ""
description: "Default"
- value: "DirectoryOrCreate"
description: "DirectoryOrCreate"
- value: "Directory"
description: "Directory"
- value: "FileOrCreate"
description: "FileOrCreate"
- value: "File"
description: "File"
- value: "Socket"
description: "Socket"
- value: "CharDevice"
description: "CharDevice"
- value: "BlockDevice"
description: "BlockDevice"
- 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: "SCALE-ZFS"
- variable: accessMode
label: "(Advanced) Access Mode"
description: "Allow or disallow multiple PVC's writhing to the same PV"
schema:
show_if: [["type", "=", "pvc"]]
type: string
default: "ReadWriteOnce"
enum:
- value: "ReadWriteOnce"
description: "ReadWriteOnce"
- value: "ReadOnlyMany"
description: "ReadOnlyMany"
- value: "ReadWriteMany"
description: "ReadWriteMany"
- variable: advanced
label: "Show Advanced Options"
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: labelsList
label: "Labels"
schema:
type: list
default: []
items:
- variable: labelItem
label: "Label"
schema:
additional_attrs: true
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:
additional_attrs: true
type: dict
attrs:
- variable: name
label: "Name"
schema:
type: string
- variable: value
label: "Value"
schema:
type: string
- variable: persistenceList
label: "Additional app storage"