2022-06-05 14:59:11 +00:00
|
|
|
- variable: type
|
2022-08-08 21:25:02 +00:00
|
|
|
label: Type of Storage
|
|
|
|
description: Sets the persistence type, Anything other than PVC could break rollback!
|
2022-06-05 14:59:11 +00:00
|
|
|
schema:
|
|
|
|
type: string
|
2022-11-10 15:46:44 +00:00
|
|
|
default: pvc
|
2022-06-05 14:59:11 +00:00
|
|
|
enum:
|
2022-08-08 21:25:02 +00:00
|
|
|
- value: pvc
|
|
|
|
description: PVC
|
|
|
|
- value: hostPath
|
|
|
|
description: Host Path
|
2022-11-10 15:46:44 +00:00
|
|
|
- value: emptyDir
|
|
|
|
description: emptyDir
|
2022-08-08 21:25:02 +00:00
|
|
|
- value: nfs
|
|
|
|
description: NFS Share
|
2022-06-05 14:59:11 +00:00
|
|
|
- variable: server
|
2022-08-08 21:25:02 +00:00
|
|
|
label: NFS Server
|
2022-06-05 14:59:11 +00:00
|
|
|
schema:
|
|
|
|
show_if: [["type", "=", "nfs"]]
|
|
|
|
type: string
|
|
|
|
default: ""
|
|
|
|
- variable: path
|
2022-08-08 21:25:02 +00:00
|
|
|
label: Path on NFS Server
|
2022-06-05 14:59:11 +00:00
|
|
|
schema:
|
|
|
|
show_if: [["type", "=", "nfs"]]
|
|
|
|
type: string
|
|
|
|
default: ""
|
2021-11-06 18:23:24 +00:00
|
|
|
- variable: setPermissions
|
2022-08-08 21:25:02 +00:00
|
|
|
label: Automatic Permissions
|
|
|
|
description: Automatically set permissions on install
|
2021-11-06 18:23:24 +00:00
|
|
|
schema:
|
|
|
|
show_if: [["type", "=", "hostPath"]]
|
|
|
|
type: boolean
|
2022-08-12 21:04:16 +00:00
|
|
|
default: false
|
2021-11-06 18:23:24 +00:00
|
|
|
- variable: readOnly
|
2022-08-11 07:51:45 +00:00
|
|
|
label: Read Only
|
2021-11-06 18:23:24 +00:00
|
|
|
schema:
|
|
|
|
type: boolean
|
|
|
|
default: false
|
2022-06-05 14:59:11 +00:00
|
|
|
- variable: hostPath
|
2022-08-08 21:25:02 +00:00
|
|
|
label: Host Path
|
|
|
|
description: Path inside the container the storage is mounted
|
2022-06-05 14:59:11 +00:00
|
|
|
schema:
|
|
|
|
show_if: [["type", "=", "hostPath"]]
|
|
|
|
type: hostpath
|
|
|
|
- variable: medium
|
2022-08-08 21:25:02 +00:00
|
|
|
label: EmptyDir Medium
|
2022-06-05 14:59:11 +00:00
|
|
|
schema:
|
|
|
|
show_if: [["type", "=", "emptyDir"]]
|
|
|
|
type: string
|
|
|
|
default: ""
|
|
|
|
enum:
|
|
|
|
- value: ""
|
2022-08-08 21:25:02 +00:00
|
|
|
description: Default
|
|
|
|
- value: Memory
|
|
|
|
description: Memory
|
2022-11-10 15:46:44 +00:00
|
|
|
- variable: size
|
2022-11-11 12:54:11 +00:00
|
|
|
label: Size quotum of Storage (Do NOT REDUCE after installation)
|
|
|
|
description: This value can ONLY be INCREASED after the installation
|
2022-11-10 15:46:44 +00:00
|
|
|
schema:
|
|
|
|
show_if: [["type", "=", "pvc"]]
|
|
|
|
type: string
|
|
|
|
default: 256Gi
|