fix(emulatorjs): add config persistence (#3095)

* fix(emulatorjs): add config persistence

* bump
This commit is contained in:
Stavros Kois 2022-07-07 22:31:40 +03:00 committed by GitHub
parent 2d9f7f7490
commit 56a32df16b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 1 deletions

View File

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

View File

@ -293,6 +293,15 @@ questions:
additional_attrs: true
type: dict
attrs:
- variable: config
label: "App Config Storage"
description: "Stores the Application Configuration."
schema:
additional_attrs: true
type: dict
attrs:
# Include{persistenceBasic}
# Include{persistenceAdvanced}
- variable: data
label: "App Data Storage"
description: "Stores the Application Data."

View File

@ -37,6 +37,9 @@ ingress:
autoLink: true
persistence:
config:
enabled: true
mountPath: "/config"
data:
enabled: true
mountPath: "/data"