Hello, I am trying to figure out how is the SpiceDBCluster when using the SpiceDB operator allocating memory to pods. I have a cluster definition with the following defined at the cluster level
Resources:
Limits:
Cpu: 4000m
Memory: 4Gi
Requests:
Cpu: 1000m
Memory: 4Gi
and replicas = 6
However when the Pods are being created byt the opertor they are created with the correct replica count but the resources are not being distributed across the pods. I see the following on each pod.
Limits:
cpu: 100m
memory: 351198544
Requests:
cpu: 25m
memory: 351198544
In the above example I should observe that 4Gi is divided equally between 6 pods, but that does not seem to be the case. Am I missing something here?