Hello, I am super new to aerospike. We have it running on EKS and I am tasked with updating filesize. My CR consists on this block.
namespaces:
- name: test
memory-size: 7000000000
replication-factor: 2
nsup-period: 60
storage-engine:
type: device
files:
- /opt/aerospike/data/event_collection.dat
filesize: 10000000000
data-in-memory: true
When I change filesize to anything besides what it currently is (like down to 9000000000 or up 11000000000), I get this error why doing kubectl apply
“Resource: “asdb.aerospike.com/v1beta1, Resource=aerospikeclusters”, GroupVersionKind: “asdb.aerospike.com/v1beta1, Kind=AerospikeCluster” Name: “aerocluster”, Namespace: “aerospike” for: “aerospike-cluster4.yaml”: admission webhook “vaerospikecluster.kb.io” denied the request: storage-engine config cannot be changed.”
Do you know what I am doing wrong?