test: use personal docker registry

This commit is contained in:
Adrien Waksberg 2024-05-08 10:33:38 +02:00
parent 5b724251ed
commit fe419e8da8
3 changed files with 49 additions and 45 deletions

View file

@ -10,6 +10,10 @@ Which is based on [Keep A Changelog](http://keepachangelog.com/)
- test: add support debian 12
- feat: manage logging config
### Changed
- test: use personal docker registry
### Removed
- test: remove support debian 10

View file

@ -1,27 +1,27 @@
# Ansible role: Logstash
[![Version](https://img.shields.io/badge/latest_version-1.1.0-green.svg)](https://git.yaegashi.fr/nishiki/ansible-role-logstash/releases)
[![License](https://img.shields.io/badge/license-Apache--2.0-blue.svg)](https://git.yaegashi.fr/nishiki/ansible-role-logstash/src/branch/master/LICENSE)
[![Version](https://img.shields.io/badge/latest_version-1.1.0-green.svg)](https://code.waks.be/nishiki/ansible-role-logstash/releases)
[![License](https://img.shields.io/badge/license-Apache--2.0-blue.svg)](https://code.waks.be/nishiki/ansible-role-logstash/src/branch/main/LICENSE)
Install and configure logstash
## Requirements
* Ansible >= 2.9
* Debian
* Bookworm
- Ansible >= 2.9
- Debian
- Bookworm
## Role variables
* `logstash_major_version` set major version to install- (default: `7`)
* `logstash_plugins` - array with the plugins to install
- `logstash_major_version` set major version to install- (default: `7`)
- `logstash_plugins` - array with the plugins to install
```
- name: logstash-output-influxdb
state: present
```
* `logstash_config` - hash with the configuration (see [logstash documentation](https://www.elastic.co/guide/en/logstash/current/configuration.html))
- `logstash_config` - hash with the configuration (see [logstash documentation](https://www.elastic.co/guide/en/logstash/current/configuration.html))
```
path.data: /var/lib/logstash
@ -115,10 +115,10 @@ Install and configure logstash
### Test with molecule and docker
* install [docker](https://docs.docker.com/engine/installation/)
* install `python3` and `python3-pip`
* install molecule and dependencies `pip3 install molecule molecule-docker docker ansible-lint pytest-testinfra yamllint`
* run `molecule test`
- install [docker](https://docs.docker.com/engine/installation/)
- install `python3` and `python3-pip`
- install molecule and dependencies `pip3 install molecule molecule-docker docker ansible-lint pytest-testinfra yamllint`
- run `molecule test`
## License

View file

@ -3,7 +3,7 @@ driver:
name: docker
platforms:
- name: debian12
image: nishiki/debian12:molecule
image: code.waks.be/nishiki/molecule:debian12
privileged: true
volumes:
- /sys/fs/cgroup:/sys/fs/cgroup:rw