I have deployed mongodb to my kubernetes cluster with the community operator.
I can modify the size of the data-volumes in the config, which is good.
But my goal is to disable the “logs-volume”, because I am collecting the logs using Loki anyways
this is the relevant part of the config:
volumeClaimTemplates:
- metadata:
name: data-volume
spec:
resources:
requests:
storage: 20Gi
- metadata:
name: logs-volume
spec:
resources:
requests:
storage: 2Gi