Skip to content

Commit 571746b

Browse files
committed
feat(workflow): add storage csi support
1 parent 456940b commit 571746b

2 files changed

Lines changed: 20 additions & 5 deletions

File tree

_scripts/install.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -369,6 +369,17 @@ storage:
369369
enabled: true
370370
size: ${STORAGE_PERSISTENCE_SIZE:-20Gi}
371371
storageClass: ${STORAGE_PERSISTENCE_STORAGE_CLASS:-""}
372+
meta:
373+
pd:
374+
persistence:
375+
enabled: true
376+
size: ${STORAGE_META_PD_PERSISTENCE_SIZE:-10Gi}
377+
storageClass: ${STORAGE_META_PD_PERSISTENCE_STORAGE_CLASS:-""}
378+
tikv:
379+
persistence:
380+
enabled: true
381+
size: ${STORAGE_META_TIKV_PERSISTENCE_SIZE:-10Gi}
382+
storageClass: ${STORAGE_META_TIKV_PERSISTENCE_STORAGE_CLASS:-""}
372383
373384
rabbitmq:
374385
imageRegistry: ${DRYCC_REGISTRY}

src/quickstart/install-workflow.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -199,11 +199,15 @@ INSTALL_DRYCC_MIRROR | Specify the accelerated mirror loca
199199
CONTROLLER_APP_STORAGE_CLASS | StorageClass allocated by `drycc volumes`; default storageClass is used by default
200200
REDIS_PERSISTENCE_SIZE | The size of the persistence space allocated to `redis`, which is `5Gi` by default
201201
REDIS_PERSISTENCE_STORAGE_CLASS | StorangeClass of `redis`; default storangeclass is used by default
202-
STORAGE_ZONE | Storage number of zones, capacity expansion through the number of zones
203-
STORAGE_DRIVES | Storage number of drives per node, after the cluster is initialized, it cannot be changed
204-
STORAGE_REPLICAS | Storage number of nodes, after the cluster is initialized, it cannot be changed
205-
STORAGE_PERSISTENCE_SIZE | The size of the persistence space allocated to `storage`, which is `20Gi` by default
206-
STORAGE_PERSISTENCE_STORAGE_CLASS | StorangeClass of `storage`; default storangeclass is used by default
202+
STORAGE_ZONE | Storage number of zones, capacity expansion through the number of zones
203+
STORAGE_DRIVES | Storage number of drives per node, after the cluster is initialized, it cannot be changed
204+
STORAGE_REPLICAS | Storage number of nodes, after the cluster is initialized, it cannot be changed
205+
STORAGE_PERSISTENCE_SIZE | The size of the persistence space allocated to `storage`, which is `20Gi` by default
206+
STORAGE_PERSISTENCE_STORAGE_CLASS | StorangeClass of `storage`; default storangeclass is used by default
207+
STORAGE_META_PD_PERSISTENCE_SIZE | The size of the persistence space allocated to `storage meta pd`, which is `10Gi` by default
208+
STORAGE_META_PD_PERSISTENCE_STORAGE_CLASS | StorangeClass of `storage meta pd`; default storangeclass is used by default
209+
STORAGE_META_TIKV_PERSISTENCE_SIZE | The size of the persistence space allocated to `storage meta tikv`, which is `10Gi` by default
210+
STORAGE_META_TIKV_PERSISTENCE_STORAGE_CLASS| StorangeClass of `storage meta tikv`; default storangeclass is used by default
207211
MONITOR_GRAFANA_PERSISTENCE_SIZE | The size of the persistence space allocated to `monitor.grafana`, which is `5Gi` by default
208212
MONITOR_GRAFANA_PERSISTENCE_STORAGE_CLASS | StorangeClass of `monitor` grafana; default storangeclass is used by default
209213
INFLUXDB_PERSISTENCE_SIZE | The size of the persistence space allocated to `influxdb`, which is `5Gi` by default

0 commit comments

Comments
 (0)