All checks were successful
ci/woodpecker/push/linting Pipeline was successful
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [cr.simoncor.net/dockerhub/grafana/grafana-oss](https://github.com/grafana/grafana) | major | `12.4.3` → `13.0.1` | --- ### Release Notes <details> <summary>grafana/grafana (cr.simoncor.net/dockerhub/grafana/grafana-oss)</summary> ### [`v13.0.1`](https://github.com/grafana/grafana/blob/HEAD/CHANGELOG.md#1301security-01-2026-05-12) [Compare Source](https://github.com/grafana/grafana/compare/v12.4.3...v13.0.1) ##### Bug fixes - **Security**: CVE-2026-28374 - **Security**: CVE-2026-28376 - **Security**: CVE-2026-28383 - **Security**: CVE-2026-28380 - **Security**: CVE-2026-33376 - **Security**: CVE-2026-28379 - **Security**: CVE-2026-33377 - **Security**: CVE-2026-33378 - **Security**: CVE-2026-33381 - **Security**: CVE-2026-33380 <!-- 13.0.1+security-01 END --> <!-- 12.4.3+security-02 START --> </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xOTEuMiIsInVwZGF0ZWRJblZlciI6IjQzLjE5MS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Reviewed-on: #2
48 lines
981 B
YAML
48 lines
981 B
YAML
---
|
|
|
|
# create directories
|
|
- name: "create grafana data directory"
|
|
ansible.builtin.file:
|
|
path: "/mnt/grafana"
|
|
state: "directory"
|
|
mode: "0775"
|
|
|
|
# run grafana
|
|
- name: "run grafana"
|
|
community.docker.docker_container:
|
|
|
|
# docker defaults
|
|
auto_remove: "no"
|
|
container_default_behavior: "no_defaults"
|
|
detach: "yes"
|
|
init: "no"
|
|
interactive: "no"
|
|
log_driver: "json-file"
|
|
log_options:
|
|
max-size: "5m"
|
|
max-file: "3"
|
|
memory: "0"
|
|
paused: "no"
|
|
privileged: "no"
|
|
pull: "always"
|
|
read_only: "no"
|
|
state: "started"
|
|
tty: "no"
|
|
|
|
# run grafana
|
|
name: "grafana"
|
|
image: "cr.simoncor.net/dockerhub/grafana/grafana-oss:13.0.1"
|
|
image_name_mismatch: "recreate"
|
|
restart_policy: "unless-stopped"
|
|
network_mode: "host"
|
|
|
|
volumes:
|
|
- "/mnt/grafana:/var/lib/grafana"
|
|
|
|
env:
|
|
|
|
# grafana
|
|
GF_SECURITY_ADMIN_PASSWORD: "{{ grafana_admin_password }}"
|
|
|
|
# global
|
|
TZ: "{{ timezone }}"
|