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

Commit 7c06a4b

Browse files
authored
Merge pull request #1 from cloudalchemy/ansible_2.7
[patch] move to ansible 2.7
2 parents 5716dbf + 08a49ba commit 7c06a4b

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
@@ -12,7 +12,7 @@ Deploy prometheus [pushgateway](https://github.com/prometheus/pushgateway) using
1212

1313
## Requirements
1414

15-
- Ansible >= 2.4
15+
- Ansible >= 2.3 (It might work on previous versions, but we cannot guarantee it)
1616

1717
## Role Variables
1818

meta/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ galaxy_info:
44
description: Prometheus Pushgateway
55
license: MIT
66
company: none
7-
min_ansible_version: 2.4
7+
min_ansible_version: 2.5
88
role_name: pushgateway
99
platforms:
1010
- name: Ubuntu

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)