sidecarConfiguration.resources in helm chart is ignored
mng1dev opened this issue · 2 comments
mng1dev commented
Hello,
I am trying to use the operator and I am installing it via helm chart.
I am passing the following values.yaml
file, but it doesn't seem to affect the default properties of the flagd
sidecar.
Am I doing anything wrong?
sidecarConfiguration:
resources:
requests:
cpu: 10m
memory: 16M
limits:
cpu: 50m
memory: 32M
toddbaert commented
USER-SUPPLIED VALUES:
sidecarConfiguration:
port: 8078
resources:
limits:
memory: 72M
COMPUTED VALUES:
controllerManager:
...
resources:
limits:
memory: 72M
...
The helm template seems to be working, but the flagd sidecar doesn't seem to use these resources. The other customizations from the sidecarConfiguration
seem to work (port, etc), so I think there's a bug here. I'm still investigating.