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-08-08 21:25:02 +00:00
|
|
|
default: simplePVC
|
2022-06-05 14:59:11 +00:00
|
|
|
enum:
|
2022-08-08 21:25:02 +00:00
|
|
|
- value: simplePVC
|
|
|
|
description: PVC (simple)
|
|
|
|
- value: simpleHP
|
|
|
|
description: Host Path (simple)
|
|
|
|
- value: emptyDir
|
|
|
|
description: emptyDir
|
|
|
|
- value: pvc
|
|
|
|
description: PVC
|
|
|
|
- value: hostPath
|
|
|
|
description: Host Path
|
|
|
|
- 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: setPermissionsSimple
|
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", "=", "simpleHP"]]
|
|
|
|
type: boolean
|
|
|
|
default: true
|
|
|
|
- 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
|
|
|
|
default: true
|
|
|
|
- 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
|
|
|
|
- variable: hostPathSimple
|
2022-08-08 21:25:02 +00:00
|
|
|
label: Host Path
|
|
|
|
description: Path inside the container the storage is mounted
|
2021-11-06 18:23:24 +00:00
|
|
|
schema:
|
|
|
|
show_if: [["type", "=", "simpleHP"]]
|
|
|
|
type: hostpath
|
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
|