Change memory requests/limits from G/M to Gi/Mi
What does this MR do and why?
We go from Gigabytes/Megabytes to Gibibytes/Mebibytes (https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#meaning-of-memory).
This is done because GCP is using GiB/MiB in their graphs, and we would like the limits we declare to the be same in the graphs we look at.
It's slightly increasing the requests/limits, as 1Mib = 2**20
= 1'048'576 bytes > 1Mb = 10**6
= 1'000'000 bytes
MR acceptance checklist
This checklist encourages us to confirm any changes have been analyzed to reduce risks in quality, performance, reliability, security, and maintainability.
-
I have evaluated the MR acceptance checklist for this MR.