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:
@@ -23,7 +23,7 @@ sources:
|
||||
- https://github.com/jp-gouin/helm-openldap
|
||||
- https://github.com/osixia/docker-openldap
|
||||
type: application
|
||||
version: 5.0.4
|
||||
version: 5.0.5
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- cloud
|
||||
|
||||
@@ -359,12 +359,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!"
|
||||
@@ -383,14 +377,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: "/var/lib/ldap/"
|
||||
hidden: true
|
||||
valid_chars: '^\/([a-zA-Z0-9._-]+(\s?[a-zA-Z0-9._-]+|\/?))+$'
|
||||
- variable: medium
|
||||
label: "EmptyDir Medium"
|
||||
schema:
|
||||
@@ -403,18 +389,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: "/var/lib/ldap"
|
||||
editable: false
|
||||
valid_chars: '^\/([a-zA-Z0-9._-]+(\s?[a-zA-Z0-9._-]+|\/?))+$'
|
||||
- variable: slapd
|
||||
label: "App slapd Storage"
|
||||
description: "Stores the Application slapd."
|
||||
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!"
|
||||
@@ -433,14 +421,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: "/etc/ldap/slapd.d/"
|
||||
hidden: true
|
||||
valid_chars: '^\/([a-zA-Z0-9._-]+(\s?[a-zA-Z0-9._-]+|\/?))+$'
|
||||
- variable: medium
|
||||
label: "EmptyDir Medium"
|
||||
schema:
|
||||
@@ -453,6 +433,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: "/etc/ldap/slapd.d"
|
||||
editable: false
|
||||
valid_chars: '^\/([a-zA-Z0-9._-]+(\s?[a-zA-Z0-9._-]+|\/?))+$'
|
||||
|
||||
# Include{persistenceList}
|
||||
- variable: advancedSecurity
|
||||
|
||||
@@ -93,7 +93,7 @@ envFrom:
|
||||
volumeClaimTemplates:
|
||||
data:
|
||||
enabled: true
|
||||
mountPath: "/var/lib/ldap/"
|
||||
mountPath: "/var/lib/ldap"
|
||||
slapd:
|
||||
enabled: true
|
||||
mountPath: "/etc/ldap/slapd.d/"
|
||||
mountPath: "/etc/ldap/slapd.d"
|
||||
|
||||
Reference in New Issue
Block a user