I have self hosted agents in a kubernetes cluster, however, noticing that the memory is not being cleared/reducing after pipelines have finished running (seems to be coming from the docker build commands and a few other tasks like cypress testing)
In my yaml definition, I have set limits and requests:
resources:
limits:
cpu: "4"
memory: 8Gi
requests:
cpu: "1.5"
memory: 2Gi
Any ideas?