How to mount secrets in helm tempo

I am having issues mounting certs(cert and key) files on to grafana/tempo pod using helm. There is no volumes section in values.yaml , but there is extra volume mounts section. Below is the configuration for mounting my secret for grafana in helm.Same i wanted to use for tempo , i can only see extraVolumemounts section but no volumes/extravolumes section in values.yaml of tempo.

extraContainerVolumes:

  • name: grafana-certs
    secret:
    secretName: grafana-certs
  • name: grafana-keys
    secret:
    secretName: grafana-keys

extraVolumemounts:
- name: grafana-certs
mountPath: /etc/grafana/cert
readOnly: true
- name: grafana-keys
mountPath: /etc/grafana/key
readOnly: true