Image renderer via sidecar example

This example configures the Grafana image rendering service for use in alerting & reporting.

For production use, ensure that the image renderer has enough resources. Refer to the recommendations in the official documentation for more information.

---
apiVersion: grafana.integreatly.org/v1beta1
kind: Grafana
metadata:
  labels:
    instance: image-renderer
  name: image-renderer
  namespace: default
spec:
  # enterprise image if you need to enable the reporting functionality
  version: docker.io/grafana/grafana-enterprise:12.2.0
  config:
    rendering:
      server_url: http://localhost:8081/render
  deployment:
    spec:
      template:
        spec:
          containers:
          - name: image-renderer
            image: 'grafana/grafana-image-renderer:latest'
            resources:
              requests:
                memory: '16Gi'