skip to main content
ICE-Kubespray Installation > Appendix D: Storage specification samples
Appendix D: Storage specification samples
Specify an appropriate amount of storage space based on the size of your ICE deployment (more is always better). Refer to the JSON samples below and also consult the documentation for your virtualization platform and hardware for specific configuration recommendations.
Storage type
Small
Medium
Large
instantConnectEnterprise
10Gb
30Gb
50Gb
iceElasticsearch
30Gb
100Gb
200Gb
iceMinio
70Gb
150Gb
270Gb
Small Server:
{
"charts": {
"instantConnectEnterprise": {
"values": {
"config": {
"cassandra": {
"dataCapacity": "10Gi"
}
}
}
},
"iceElasticsearch": {
"values": {
"elasticsearch": {
"storage": "30Gi"
}
}
},
"iceMinio": {
"values": {
"config": {
"size": "70Gi"
}
}
}
}
}
Medium
{
"charts": {
"instantConnectEnterprise": {
"values": {
"config": {
"cassandra": {
"dataCapacity": "30Gi"
}
}
}
},
"iceElasticsearch": {
"values": {
"elasticsearch": {
"storage": "100Gi"
}
}
},
"iceMinio": {
"values": {
"config": {
"size": "150Gi"
}
}
}
}
}
Large
{
"charts": {
"instantConnectEnterprise": {
"values": {
"config": {
"cassandra": {
"dataCapacity": "50Gi"
}
}
}
},
"iceElasticsearch": {
"values": {
"elasticsearch": {
"storage": "200Gi"
}
}
},
"iceMinio": {
"values": {
"config": {
"size": "270Gi"
}
}
}
}
}