fix(emulatorjs): add config persistence (#3095)
* fix(emulatorjs): add config persistence * bump
This commit is contained in:
parent
2d9f7f7490
commit
56a32df16b
|
@ -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
|
||||
|
|
|
@ -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."
|
||||
|
|
|
@ -37,6 +37,9 @@ ingress:
|
|||
autoLink: true
|
||||
|
||||
persistence:
|
||||
config:
|
||||
enabled: true
|
||||
mountPath: "/config"
|
||||
data:
|
||||
enabled: true
|
||||
mountPath: "/data"
|
||||
|
|
Loading…
Reference in New Issue