feat: Add PVC Storage option for Master data and logs.

This commit is contained in:
Kaiwalya Joshi
2022-07-26 03:27:41 -07:00
parent 53e3536975
commit 1f99bb4e4e
3 changed files with 68 additions and 12 deletions

View File

@@ -58,6 +58,21 @@ master:
# Disable http request, only gRpc operations are allowed
disableHttp: false
# can use ANY storage-class , example with local-path-provisioner
# data:
# type: "persistentVolumeClaim"
# size: "24Ti"
# storageClass: "local-path-provisioner"
data:
type: "hostPath"
size: ""
storageClass: ""
logs:
type: "hostPath"
size: ""
storageClass: ""
extraVolumes: ""
extraVolumeMounts: ""