Added missing folder to Omada (#1963)

* Added missing folder to Omada

Omada-controller needs a /work folder or else it's configurations don't persist after starting/stopping the container

* Update questions.yaml

* Update questions.yaml

* Update charts/incubator/omada-controller/questions.yaml

Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
This commit is contained in:
StevenMcElligott
2022-02-25 05:13:10 -05:00
committed by GitHub
parent a72e302d91
commit 8c7e3e9a47
3 changed files with 47 additions and 1 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ name: omada-controller
sources:
- https://github.com/mbentley/docker-omada-controller
- https://github.com/truecharts/apps/tree/master/charts/omada-controller
version: 4.0.67
version: 4.0.68
annotations:
truecharts.org/catagories: |
- media
@@ -529,6 +529,49 @@ questions:
description: "Default"
- value: "Memory"
description: "Memory"
# Include{persistenceAdvanced}
- variable: work
label: "App working Storage"
description: "Stores the Application data between resets."
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"
# Include{persistenceBasic}
- 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"
# Include{persistenceAdvanced}
# Include{persistenceList}
@@ -61,3 +61,6 @@ persistence:
data:
enabled: true
mountPath: "/data"
work:
enabled: true
mountPath: "/work"