monitoring: Add option to disable rendering service
This commit is contained in:
parent
ae6c8360b7
commit
a630b8d778
2 changed files with 3 additions and 0 deletions
|
@ -46,6 +46,7 @@ monitoring_grafana_image_version: "{{ monitoring_grafana_version }}"
|
||||||
|
|
||||||
# Additional plugins, that should be installed (see https://grafana.com/docs/grafana/latest/installation/docker/)
|
# Additional plugins, that should be installed (see https://grafana.com/docs/grafana/latest/installation/docker/)
|
||||||
monitoring_grafana_plugins: []
|
monitoring_grafana_plugins: []
|
||||||
|
monitoring_grafana_renderer_enabled: true
|
||||||
|
|
||||||
# OAuth settings for grafana
|
# OAuth settings for grafana
|
||||||
monitoring_grafana_oauth:
|
monitoring_grafana_oauth:
|
||||||
|
|
|
@ -77,6 +77,7 @@ services:
|
||||||
volumes:
|
volumes:
|
||||||
- "{{ monitoring_grafana_location }}:/var/lib/grafana"
|
- "{{ monitoring_grafana_location }}:/var/lib/grafana"
|
||||||
|
|
||||||
|
{% if monitoring_grafana_renderer_enabled %}
|
||||||
renderer:
|
renderer:
|
||||||
image: docker.io/grafana/grafana-image-renderer:latest
|
image: docker.io/grafana/grafana-image-renderer:latest
|
||||||
mem_limit: 512mb
|
mem_limit: 512mb
|
||||||
|
@ -88,6 +89,7 @@ services:
|
||||||
- no-new-privileges
|
- no-new-privileges
|
||||||
networks:
|
networks:
|
||||||
grafana:
|
grafana:
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
influxdb:
|
influxdb:
|
||||||
image: docker.io/library/influxdb:{{ monitoring_influxdb_image_version }}
|
image: docker.io/library/influxdb:{{ monitoring_influxdb_image_version }}
|
||||||
|
|
Loading…
Add table
Reference in a new issue