Grafana Dashboard Provisioning failing through Helm

Hey All,

I’m working to deploy the latest version of Grafana into our Kubernetes cluster. At this time, I’ve been able to automate the datasource creation and configure the dashboard providers section. This has been done through a custom values.yaml file that Helm reads during the deployment. (as documented here: https://github.com/helm/charts/blob/master/stable/grafana/values.yaml)

However, my next goal is to automatically provision a locally developed dashboard. When attempting to implement the configuration see on line 292.

## Configure grafana dashboard to import
## NOTE: To use dashboards you must also enable/configure dashboardProviders
## ref: https://grafana.com/dashboards
##
## dashboards per provider, use provider name as key.
##
dashboards: {}
** # default:**
** # some-dashboard:**
** # json: |**
** # $RAW_JSON**
** # custom-dashboard:**
# file: dashboards/custom-dashboard.json

Helm is able to launch the pod, but the container goes into an init-loopbackCrash.

I’d appreciate any insight or guidance.
Thanks,