chore(apps): cleanup questions by removing hidden dicts (#1558)

* chore(apps): cleanup questions by removing hidden dicts

* persistence cleanup pt1

* persistence cleanup pt2

* persistence cleanup pt3

* persistence cleanup pt4

* persistence cleanup pt5

* remove gui for staticfiles for recipes

* make mountPath visible and read-only field

* make mountPath visible and read-only field

* bump patch

* remove trailing `/` on paths and fix freerad

* enable udev (scrutiny)

* also cleanup vCT

* move mountPath under advanced

* update mountPath label

* bump patch dep train
This commit is contained in:
Stavros Kois
2021-12-18 20:25:00 +01:00
committed by GitHub
parent 82298852f4
commit cf1485a0b7
444 changed files with 2153 additions and 3490 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ sources:
- https://github.com/causefx/Organizr
- https://hub.docker.com/r/organizr/organizr
type: application
version: 9.0.23
version: 9.0.24
annotations:
truecharts.org/catagories: |
- organizers
+16 -28
View File
@@ -183,12 +183,6 @@ questions:
schema:
type: dict
attrs:
- variable: enabled
label: "Enable the storage"
schema:
type: boolean
default: true
hidden: true
- variable: type
label: "Type of Storage"
description: "Sets the persistence type, Anything other than PVC could break rollback!"
@@ -213,14 +207,6 @@ questions:
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"
hidden: true
valid_chars: '^\/([a-zA-Z0-9._-]+(\s?[a-zA-Z0-9._-]+|\/?))+$'
- variable: medium
label: "EmptyDir Medium"
schema:
@@ -233,18 +219,20 @@ questions:
- value: "Memory"
description: "Memory"
# Include{persistenceAdvanced}
- variable: mountPath
label: "mountPath (Non-editable"
description: "Path inside the container the storage is mounted"
schema:
type: string
default: "/config"
editable: false
valid_chars: '^\/([a-zA-Z0-9._-]+(\s?[a-zA-Z0-9._-]+|\/?))+$'
- variable: data
label: "App Data Storage"
description: "Stores the Application Data."
schema:
type: dict
attrs:
- variable: enabled
label: "Enable the storage"
schema:
type: boolean
default: true
hidden: true
- variable: type
label: "Type of Storage"
description: "Sets the persistence type, Anything other than PVC could break rollback!"
@@ -269,14 +257,6 @@ questions:
schema:
show_if: [["type", "=", "hostPath"]]
type: hostpath
- variable: mountPath
label: "mountPath"
description: "Path inside the container the storage is mounted"
schema:
type: string
default: "/data"
hidden: true
valid_chars: '^\/([a-zA-Z0-9._-]+(\s?[a-zA-Z0-9._-]+|\/?))+$'
- variable: medium
label: "EmptyDir Medium"
schema:
@@ -289,6 +269,14 @@ questions:
- value: "Memory"
description: "Memory"
# Include{persistenceAdvanced}
- variable: mountPath
label: "mountPath (Non-editable"
description: "Path inside the container the storage is mounted"
schema:
type: string
default: "/data"
editable: false
valid_chars: '^\/([a-zA-Z0-9._-]+(\s?[a-zA-Z0-9._-]+|\/?))+$'
# Include{persistenceList}
- variable: ingress
+3
View File
@@ -25,3 +25,6 @@ persistence:
config:
enabled: true
mountPath: "/config"
data:
enabled: true
mountPath: "/data"