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 @@ name: loki
|
||||
sources:
|
||||
- https://github.com/grafana/loki
|
||||
type: application
|
||||
version: 2.0.10
|
||||
version: 2.0.11
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- logs
|
||||
|
||||
@@ -238,12 +238,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!"
|
||||
@@ -268,14 +262,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:
|
||||
@@ -288,6 +274,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
|
||||
|
||||
@@ -137,7 +137,7 @@ persistence:
|
||||
# -- Specify the name of the configmap object to be mounted
|
||||
objectName: '{{ include "common.names.fullname" . -}}-config'
|
||||
# -- Where to mount the volume in the main container.
|
||||
mountPath: /etc/loki
|
||||
mountPath: "/etc/loki"
|
||||
|
||||
volumeClaimTemplates:
|
||||
data:
|
||||
|
||||
Reference in New Issue
Block a user