14 Commits

Author SHA1 Message Date
084df32f10 Another attempt to make it work (2) 2025-02-07 17:40:26 +01:00
1c6c4b02fb Another attempt to make it work 2025-02-07 17:33:28 +01:00
2088fc7001 Another Attempt to make it work 2025-02-07 17:24:27 +01:00
1f142bd1a5 Attempt to make it work 2025-02-07 17:18:41 +01:00
dc3825add5 Using envs properly 2025-02-07 17:05:36 +01:00
6552bb02fc Updating dependency versions for ci job as well 2025-02-06 20:14:48 +01:00
b10164589d Upgrading as older version for pipeline job doesn't seem to work anymore 2025-02-06 20:13:24 +01:00
0c7f32937f Updated CHANGELOG.md on "2024-12-04 07:28:29" 2024-12-04 07:28:29 +00:00
2f2619580b Bump ansible-core from 2.18.0 to 2.18.1 (#192)
Bumps [ansible-core](https://github.com/ansible/ansible) from 2.18.0 to 2.18.1.
- [Release notes](https://github.com/ansible/ansible/releases)
- [Commits](https://github.com/ansible/ansible/compare/v2.18.0...v2.18.1)

---
updated-dependencies:
- dependency-name: ansible-core
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-04 08:27:47 +01:00
9363cfd04b Updated CHANGELOG.md on "2024-11-26 14:21:50" 2024-11-26 14:21:50 +00:00
ff77201873 Bump ansible-core from 2.16.8 to 2.18.0 (#191)
Bumps [ansible-core](https://github.com/ansible/ansible) from 2.16.8 to 2.18.0.
- [Release notes](https://github.com/ansible/ansible/releases)
- [Commits](https://github.com/ansible/ansible/compare/v2.16.8...v2.18.0)

---
updated-dependencies:
- dependency-name: ansible-core
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-11-26 15:21:13 +01:00
9febe3fa4c Updated CHANGELOG.md on "2024-11-26 13:22:27" 2024-11-26 13:22:27 +00:00
45ad4915eb Updating CHANGELOG.md file for release 0.14.2 2024-11-26 14:21:56 +01:00
b798c93a6a Updating CONTRIBUTORS file for release 0.14.2 2024-11-26 14:21:23 +01:00
6 changed files with 49 additions and 32 deletions

View File

@ -27,46 +27,49 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
molecule_distro: molecule_distro:
- container: rocky8 # - container: rocky8
image: geerlingguy/docker-rockylinux8-ansible # image: geerlingguy/docker-rockylinux8-ansible
- container: rocky9 - container: rocky9
image: geerlingguy/docker-rockylinux9-ansible image: geerlingguy/docker-rockylinux9-ansible
- container: ubuntu2204 - container: ubuntu2204
image: geerlingguy/docker-ubuntu2204-ansible:latest image: geerlingguy/docker-ubuntu2204-ansible:latest
- container: ubuntu2004 - container: ubuntu2004
image: geerlingguy/docker-ubuntu2004-ansible:latest image: geerlingguy/docker-ubuntu2004-ansible:latest
- container: ubuntu1804 # - container: ubuntu1804
image: geerlingguy/docker-ubuntu1804-ansible:latest # image: geerlingguy/docker-ubuntu1804-ansible:latest
- container: debian10 - container: debian10
image: geerlingguy/docker-debian10-ansible:latest image: geerlingguy/docker-debian10-ansible:latest
- container: debian11 - container: debian11
image: geerlingguy/docker-debian11-ansible:latest image: geerlingguy/docker-debian11-ansible:latest
steps: steps:
- name: Check out code - name: Check out code
uses: actions/checkout@v1 uses: actions/checkout@v4
- name: Set up Python 3.11 - name: Set up Python 3.11
uses: actions/setup-python@v1 uses: actions/setup-python@v5
with: with:
python-version: 3.11.10 python-version: 3.11.11
- name: Install dependencies # - name: Install dependencies
run: | # run: |
python -m pip install --upgrade pip # python -m pip install --upgrade pip
pip install -r requirements.txt # pip install -r requirements.txt
- name: Install test dependencies.
run: pip3 install ansible molecule molecule-plugins[docker] docker pytest testinfra
- name: Run role tests on empty systems in check-mode - name: Run role tests on empty systems in check-mode
run: >- env:
MY_MOLECULE_CONTAINER=${{ matrix.molecule_distro.container }} MY_MOLECULE_CONTAINER: ${{ matrix.molecule_distro.container }}
MY_MOLECULE_IMAGE=${{ matrix.molecule_distro.image }} MY_MOLECULE_IMAGE: ${{ matrix.molecule_distro.image }}
MY_MOLECULE_GROUP=${{ matrix.molecule_distro.group }} MY_MOLECULE_GROUP: ${{ matrix.molecule_distro.group }}
MY_MOLECULE_DOCKER_COMMAND=${{ matrix.molecule_distro.command }} MY_MOLECULE_DOCKER_COMMAND: ${{ matrix.molecule_distro.command }}
molecule test -s empty-checkmode run: molecule test -s empty-checkmode
- name: Run role tests - name: Run role tests
run: >- env:
MY_MOLECULE_CONTAINER=${{ matrix.molecule_distro.container }} MY_MOLECULE_CONTAINER: ${{ matrix.molecule_distro.container }}
MY_MOLECULE_IMAGE=${{ matrix.molecule_distro.image }} MY_MOLECULE_IMAGE: ${{ matrix.molecule_distro.image }}
MY_MOLECULE_GROUP=${{ matrix.molecule_distro.group }} MY_MOLECULE_GROUP: ${{ matrix.molecule_distro.group }}
MY_MOLECULE_DOCKER_COMMAND=${{ matrix.molecule_distro.command }} MY_MOLECULE_DOCKER_COMMAND: ${{ matrix.molecule_distro.command }}
molecule test run: molecule test

View File

@ -2,7 +2,16 @@
## [Unreleased](https://github.com/dj-wasabi/ansible-telegraf/tree/HEAD) ## [Unreleased](https://github.com/dj-wasabi/ansible-telegraf/tree/HEAD)
[Full Changelog](https://github.com/dj-wasabi/ansible-telegraf/compare/0.14.1...HEAD) [Full Changelog](https://github.com/dj-wasabi/ansible-telegraf/compare/0.14.2...HEAD)
**Merged pull requests:**
- Bump ansible-core from 2.18.0 to 2.18.1 [\#192](https://github.com/dj-wasabi/ansible-telegraf/pull/192) ([dependabot[bot]](https://github.com/apps/dependabot))
- Bump ansible-core from 2.16.8 to 2.18.0 [\#191](https://github.com/dj-wasabi/ansible-telegraf/pull/191) ([dependabot[bot]](https://github.com/apps/dependabot))
## [0.14.2](https://github.com/dj-wasabi/ansible-telegraf/tree/0.14.2) (2024-11-26)
[Full Changelog](https://github.com/dj-wasabi/ansible-telegraf/compare/0.14.1...0.14.2)
**Implemented enhancements:** **Implemented enhancements:**

View File

@ -10,6 +10,7 @@
Diego Nava Diego Nava
Emerson Knapp Emerson Knapp
Farshad Nematdoust Farshad Nematdoust
Frank Villaro-Dixon
Greg Greg
Harald Kraemer Harald Kraemer
Heckel, Robert J Heckel, Robert J
@ -26,6 +27,8 @@
Markus Langer Markus Langer
Matt Matt
Max Nasonov Max Nasonov
Michał Lisowski
Mira
Miro Prasil Miro Prasil
Miroslav Prasil Miroslav Prasil
NotDead NotDead
@ -40,6 +43,7 @@
Romain BUREAU Romain BUREAU
Ryan Conway Ryan Conway
Simo Tuomisto Simo Tuomisto
Simon
Slawomir Skowron Slawomir Skowron
Steve Durrheimer Steve Durrheimer
Steven Wirges Steven Wirges
@ -47,6 +51,7 @@
Thomas Szymanski Thomas Szymanski
ThorstenHeck ThorstenHeck
Troy Jendra Troy Jendra
Vinicius Freitas
Werner Dijkerman Werner Dijkerman
Werner Dijkerman [GH bot] Werner Dijkerman [GH bot]
aroglian aroglian

View File

@ -1,4 +1,4 @@
--- ---
- hosts: telegraf - hosts: telegraf
roles: roles:
- role: ansible-telegraf - role: ../../ansible-telegraf

View File

@ -1,4 +1,4 @@
--- ---
- hosts: telegraf - hosts: telegraf
roles: roles:
- role: ansible-telegraf - role: ../../../ansible-telegraf

View File

@ -1,11 +1,11 @@
ansible==9.7.0 ansible==11.2.0
ansible-compat==24.10.0 ansible-compat==25.1.2
ansible-core==2.16.8 ansible-core==2.18.2
docker==7.1.0 docker==7.1.0
molecule==6.0.3 molecule==25.2.0
molecule-docker==2.1.0 molecule-docker==2.1.0
molecule-plugins==23.5.3 molecule-plugins==23.7.0
netaddr==1.3.0 netaddr==1.3.0
pytest==8.3.3 pytest==8.3.4
pytest-testinfra==10.1.1 pytest-testinfra==10.1.1
testinfra==6.0.0 testinfra==6.0.0