Grafana mount paths for kubernetes

Hi All,

I am trying to deploy the Grafana in Kubernetes (GKE) platform. What I am looking is to create the mount points with PVC to persist the data across restarts of the POD.

Initially I started mount only the “/var/lib/grafana” and it all worked as expected.

volumeMounts:
          - name: grafana-storage
            mountPath: /var/lib/grafana

Now I am looking to mount all the below paths using the single PVC.

When I try to do that, container is failing to start with error “/run.sh: line 80: exec: grafana: not found

If you are running Grafana in Kubernetes what is your suggestion on this ? . I wanted to make sure the updates to any of the settings in above paths should be persisted.

Thank you in advance