This repository was archived by the owner on Sep 30, 2024. It is now read-only.
This repository was archived by the owner on Sep 30, 2024. It is now read-only.
deployment: incorrect SYMBOLS_CACHE_SIZE_MB setting when using resourceFieldRef #26283
Description
The SYMBOLS_CACHE_SIZE_MB setting in the symbols deployment is incorrectly auto-calculated from an ephemeral storage resource size. The variable expects MB but the requests are provided in bytes.
Adding a divisor will resolve this issue:
resourceFieldRef:
containerName: symbols
resource: requests.ephemeral-storage
divisor: "1M"