Increasing Log Volume Size in Kafka-Broker to Prevent POD Crashes

Original Slack Thread

Hello, How do I increase the log volume size in kafka-broker? Facing a problem where POD is crashing due to increased logs volume. I did set logs retention to 3 hours and its working but want to understand how to increase the log volume storage as well. Tried few things from here https://github.com/bitnami/charts/blob/main/bitnami/kafka/values.yaml#L807 but not affecting anything
prerequisites-kafka-broker has this. How do I increase it to 16Gi or 32 Gi ?

  - apiVersion: v1
    kind: PersistentVolumeClaim
    metadata:
      creationTimestamp: null
      name: data
    spec:
      accessModes:
      - ReadWriteOnce
      resources:
        requests:
          storage: 8Gi
      volumeMode: Filesystem
    status:
      phase: Pending```

found this and it worked.
broker:
replicaCount: 1
persistence:
size: 64Gi