Skip to content
This repository was archived by the owner on Mar 6, 2023. It is now read-only.

Commit 88cfcd8

Browse files
authored
move to ansible 2.7 (#58)
[Ansible 2.7 was just released](https://github.com/ansible/ansible/releases/tag/v2.7.0) 🎉. This PR deprecates support for ansible 2.4 and introduces testing on ansible 2.7 Merging this will result in a [patch] version release.
1 parent 625fb37 commit 88cfcd8

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ cache: pip
55
services:
66
- docker
77
env:
8-
- ANSIBLE=2.4
98
- ANSIBLE=2.5
109
- ANSIBLE=2.6
10+
- ANSIBLE=2.7
1111
matrix:
1212
fast_finish: true
1313
install:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Deploy prometheus [node exporter](https://github.com/prometheus/node_exporter) u
1414

1515
## Requirements
1616

17-
- Ansible >= 2.4
17+
- Ansible >= 2.5 (It might work on previous versions, but we cannot guarantee it)
1818

1919
## Role Variables
2020

meta/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ galaxy_info:
33
author: Roman Demachkovych, Pawel Krupa
44
description: Prometheus Node Exporter
55
license: MIT
6-
min_ansible_version: 2.4
6+
min_ansible_version: 2.5
77
platforms:
88
- name: Ubuntu
99
versions:

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
[tox]
22
minversion = 1.8
3-
envlist = py{27}-ansible{24,25,26}
3+
envlist = py{27}-ansible{25,26,27}
44
skipsdist = true
55

66
[travis:env]
77
ANSIBLE=
8-
2.4: ansible24
98
2.5: ansible25
109
2.6: ansible26
10+
2.7: ansible27
1111

1212
[testenv]
1313
passenv = *
1414
deps =
1515
-rtest-requirements.txt
16-
ansible24: ansible<2.5
1716
ansible25: ansible<2.6
1817
ansible26: ansible<2.7
18+
ansible27: ansible<2.8
1919
commands =
2020
{posargs:molecule test --all --destroy always}

0 commit comments

Comments
 (0)