test: add support debian 12
This commit is contained in:
parent
f2e0fc4c0e
commit
b240f61f50
3 changed files with 21 additions and 3 deletions
|
@ -5,6 +5,14 @@ Which is based on [Keep A Changelog](http://keepachangelog.com/)
|
|||
|
||||
## Unreleased
|
||||
|
||||
### Added
|
||||
|
||||
- test: add support debian 12
|
||||
|
||||
### Removed
|
||||
|
||||
- test: removed support debian 10
|
||||
|
||||
### Fixed
|
||||
|
||||
- new grafana repository
|
||||
|
|
|
@ -6,13 +6,13 @@ galaxy_info:
|
|||
company: Adrien Waksberg
|
||||
description: Install and configure Grafana
|
||||
license: Apache2
|
||||
min_ansible_version: 2.9
|
||||
min_ansible_version: "2.9"
|
||||
|
||||
platforms:
|
||||
- name: Debian
|
||||
versions:
|
||||
- buster
|
||||
- bullseye
|
||||
- bookworm
|
||||
|
||||
galaxy_tags:
|
||||
- dashboard
|
||||
|
|
|
@ -2,11 +2,21 @@
|
|||
driver:
|
||||
name: docker
|
||||
platforms:
|
||||
- name: debian12
|
||||
image: nishiki/debian12:molecule
|
||||
privileged: true
|
||||
volumes:
|
||||
- /sys/fs/cgroup:/sys/fs/cgroup:rw
|
||||
cgroupns_mode: host
|
||||
command: /bin/systemd
|
||||
capabilities:
|
||||
- SYS_ADMIN
|
||||
- name: debian11
|
||||
image: nishiki/debian11:molecule
|
||||
privileged: true
|
||||
volumes:
|
||||
- /sys/fs/cgroup:/sys/fs/cgroup:ro
|
||||
- /sys/fs/cgroup:/sys/fs/cgroup:rw
|
||||
cgroupns_mode: host
|
||||
command: /bin/systemd
|
||||
capabilities:
|
||||
- SYS_ADMIN
|
||||
|
|
Loading…
Reference in a new issue