test: add support debian 12
This commit is contained in:
parent
c43442b7a0
commit
9b7ee14b13
4 changed files with 16 additions and 14 deletions
|
@ -10,6 +10,11 @@ Which is based on [Keep A Changelog](http://keepachangelog.com/)
|
|||
- add support alpn in bind option
|
||||
- add error files
|
||||
- use multiple ssl certificates on one frontend
|
||||
- test: add support debian 12
|
||||
|
||||
### Removed
|
||||
|
||||
- test: remove support debian 10
|
||||
|
||||
## v1.1.0 - 2021-08-15
|
||||
|
||||
|
|
|
@ -7,10 +7,10 @@ Install and configure haproxy
|
|||
|
||||
## Requirements
|
||||
|
||||
* Ansible >= 2.9
|
||||
* Ansible >= 2.10
|
||||
* Debian
|
||||
* Buster
|
||||
* Bullseye
|
||||
* Bookworm
|
||||
|
||||
## Role variables
|
||||
|
||||
|
|
|
@ -7,13 +7,13 @@ galaxy_info:
|
|||
company: Adrien Waksberg
|
||||
license: Apache2
|
||||
|
||||
min_ansible_version: 2.9
|
||||
min_ansible_version: "2.10"
|
||||
|
||||
platforms:
|
||||
- name: Debian
|
||||
versions:
|
||||
- 10
|
||||
- 11
|
||||
- Bullseye
|
||||
- Bookworm
|
||||
|
||||
galaxy_tags:
|
||||
- haproxy
|
||||
|
|
|
@ -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:
|
||||
debian10:
|
||||
haproxy_apt_release: '{{ ansible_distribution_release }}-backports'
|
||||
lint: |
|
||||
set -e
|
||||
yamllint .
|
||||
|
|
Loading…
Reference in a new issue