test: add support debian 12
This commit is contained in:
parent
6819a4b3ac
commit
d02a152f4b
4 changed files with 14 additions and 12 deletions
|
@ -8,6 +8,11 @@ Which is based on [Keep A Changelog](http://keepachangelog.com/)
|
|||
### Added
|
||||
|
||||
- feat: add gitlab_registry_url variable
|
||||
- test: add support debian 12
|
||||
|
||||
### Removed
|
||||
|
||||
- test: remove support debian 10
|
||||
|
||||
## v1.1.0 - 2021-08-24
|
||||
|
||||
|
|
|
@ -9,8 +9,8 @@ Install and configure a Gitlab server
|
|||
|
||||
* Ansible >= 2.9
|
||||
* Debian
|
||||
* Buster
|
||||
* Bullseye
|
||||
* Bookworm
|
||||
|
||||
## Role variables
|
||||
|
||||
|
|
|
@ -6,13 +6,13 @@ galaxy_info:
|
|||
company: Adrien Waksberg
|
||||
description: Install and configure gitlab server
|
||||
license: Apache2
|
||||
min_ansible_version: 2.9
|
||||
min_ansible_version: "2.9"
|
||||
|
||||
platforms:
|
||||
- name: Debian
|
||||
versions:
|
||||
- buster
|
||||
- bullseye
|
||||
- bookworm
|
||||
|
||||
galaxy_tags:
|
||||
- git
|
||||
|
|
|
@ -2,11 +2,12 @@
|
|||
driver:
|
||||
name: docker
|
||||
platforms:
|
||||
- name: debian10
|
||||
image: nishiki/debian10:molecule
|
||||
- name: debian12
|
||||
image: nishiki/debian12: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
|
||||
|
@ -14,15 +15,11 @@ platforms:
|
|||
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
|
||||
provisioner:
|
||||
inventory:
|
||||
host_vars:
|
||||
debian11:
|
||||
gitlab_repository: deb https://packages.gitlab.com/gitlab/gitlab-ce/debian/ buster main
|
||||
lint: |
|
||||
set -e
|
||||
yamllint .
|
||||
|
|
Loading…
Reference in a new issue