# This file is managed by ansible, don't make changes here - they will be # overwritten. [Unit] Description=grafana-server {% if container_binary == 'docker' %} After=docker.service network-online.target local-fs.target time-sync.target Requires=docker.service {% else %} After=network-online.target local-fs.target time-sync.target {% endif %} Wants=network-online.target local-fs.target time-sync.target [Service] EnvironmentFile=-/etc/environment {% if container_binary == 'podman' %} ExecStartPre=-/usr/bin/rm -f /%t/%n-pid /%t/%n-cid ExecStartPre=-/usr/bin/{{ container_binary }} rm --storage grafana-server {% else %} ExecStartPre=-/usr/bin/{{ container_binary }} stop grafana-server {% endif %} ExecStartPre=-/usr/bin/{{ container_binary }} rm grafana-server ExecStart=/usr/bin/{{ container_binary }} run --rm --name=grafana-server \ {% if container_binary == 'podman' %} -d --log-driver journald --conmon-pidfile /%t/%n-pid --cidfile /%t/%n-cid \ {% endif %} --pids-limit={{ 0 if container_binary == 'podman' else -1 }} \ -v /etc/grafana:/etc/grafana:Z \ -v /var/lib/grafana:/var/lib/grafana:Z \ --net=host \ --cpu-period={{ grafana_container_cpu_period }} \ --cpu-quota={{ grafana_container_cpu_period * grafana_container_cpu_cores }} \ --memory={{ grafana_container_memory }}GB \ --memory-swap={{ grafana_container_memory * 2 }}GB \ -e GF_INSTALL_PLUGINS={{ grafana_plugins|join(',') }} \ {% if ceph_docker_http_proxy is defined %} -e http_proxy={{ ceph_docker_http_proxy }} \ {% endif %} {% if ceph_docker_https_proxy is defined %} -e https_proxy={{ ceph_docker_https_proxy }} \ {% endif %} {% if ceph_docker_no_proxy is defined %} -e no_proxy={{ ceph_docker_no_proxy }} \ {% endif %} {{ grafana_container_image }} {% if container_binary == 'podman' %} ExecStop=-/usr/bin/sh -c "/usr/bin/{{ container_binary }} rm -f `cat /%t/%n-cid`" {% else %} ExecStop=-/usr/bin/{{ container_binary }} stop grafana-server {% endif %} KillMode=none Restart=always RestartSec=10s TimeoutStartSec=120 TimeoutStopSec=15 {% if container_binary == 'podman' %} Type=forking PIDFile=/%t/%n-pid {% endif %} [Install] WantedBy=multi-user.target