Help on indexStorageSetting in K8s helm chart

Hi
I want to make the change in the Helm chart to use Standard GSI as default index storage before spin up the POD . What should be the value I can change here ?

cluster:
indexStorageSetting: memory_optimized

thanks

Query Indexes use Standard GSI by default, the values here are for setting the GSI storage mode to either memory_optimized or plasma:
https://docs.couchbase.com/server/current/rest-api/post-settings-indexes.html

Default is memory_optimized, if you wanted to override with plasma try:

helm install \
 --set couchbaseCluster.cluster.indexStorageSetting=plasma \
     couchbase/couchbase/cluster

Or custom yaml

couchbaseCluster:
   cluster:
     indexStorageSettings: plasma

Thank you @tommie … Appreciate it and it works … I wish this was clear in documentation for CB Cluster setup with Autonomous operator
thanks …