Skip to content

Commit 70e84ce

Browse files
committed
Consul 1.2.2 and more
- Consul 1.2.2 - Update remaining deprecated tests (thanks @viruzzo) - Added handler to reload configuration on Linux (thanks @viruzzo) - Add support for Oracle Linux (thanks @TheLastChosenOne) - Fix generate `consul_acl_master_token` when not provided (thanks @abarbare) - Update CONTRIBUTORS
1 parent 870d29a commit 70e84ce

File tree

7 files changed

+14
-10
lines changed

7 files changed

+14
-10
lines changed

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
1-
## v2.0.4 (UNRELEASED)
1+
## v2.0.4
22

3+
- Consul 1.2.2
34
- Update remaining deprecated tests (thanks @viruzzo)
5+
- Added handler to reload configuration on Linux (thanks @viruzzo)
46
- Add support for Oracle Linux (thanks @TheLastChosenOne)
5-
- Update CONTRIBBUTORS
7+
- Fix generate `consul_acl_master_token` when not provided (thanks @abarbare)
8+
- Update CONTRIBUTORS
69

710
## v2.0.3
811

CONTRIBUTORS.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,9 @@ Thank you to all these fine folks for helping with ansible-consul!
4040
- [@soloradish](https://github.com/soloradish)
4141
- [@coughlanio)](https://github.com/coughlanio)
4242
- [@Logan2211](https://github.com/Logan2211)
43-
- [viruzzo](https://github.com/viruzzo)
44-
- [TheLastChosenOne](https://github.com/TheLastChosenOne)
43+
- [@viruzzo](https://github.com/viruzzo)
44+
- [@TheLastChosenOne](https://github.com/TheLastChosenOne)
45+
- [@abarbare](https://github.com/abarbare)
4546

4647
If you have contributed but do not appear here, please fear not and accept
4748
apologies for the omission. Contact `brian <at> brianshumate <dot> com` and

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ This role requires a FreeBSD, Debian, or RHEL based Linux distribution or
2525
Windows Server 2012 R2. It might work with other software versions, but is
2626
definitely known to work with the following specific software versions:
2727

28-
* Consul: 1.2.0
28+
* Consul: 1.2.2
2929
* Ansible: 2.6.1
3030
* CentOS: 7
3131
* Debian: 9
@@ -53,7 +53,7 @@ the variables are named and described below:
5353
### `consul_version`
5454

5555
- Version to install
56-
- Default value: *1.2.0*
56+
- Default value: *1.2.2*
5757

5858
### `consul_architecture_map`
5959

defaults/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ is_virtualenv: "{{ lookup('env','VIRTUAL_ENV') | default('', true) }}"
77
consul_install_dependencies: yes
88

99
### Package
10-
consul_version: "{{ lookup('env','CONSUL_VERSION') | default('1.2.0', true) }}"
10+
consul_version: "{{ lookup('env','CONSUL_VERSION') | default('1.2.2', true) }}"
1111
consul_architecture_map:
1212
# this first entry seems redundant
1313
# (but it's required for reasons)

examples/README_VAGRANT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ BOX_NAME=freebsd/FreeBSD-11.0-STABLE CONSUL_IFACE=em1 vagrant up
9090
## Notes
9191
9292
1. This project functions with the following software versions:
93-
* Consul version 1.2.0
93+
* Consul version 1.2.2
9494
* Ansible: 2.6.1
9595
* VirtualBox version 5.2.12
9696
* Vagrant version 2.1.2

tests/test_vars.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ consul_debug: no
2121
is_virtualenv: "{{ lookup('env','VIRTUAL_ENV') | default('', true) }}"
2222

2323
### Package
24-
consul_version: "{{ lookup('env','CONSUL_VERSION') | default('1.2.0', true) }}"
24+
consul_version: "{{ lookup('env','CONSUL_VERSION') | default('1.2.2', true) }}"
2525
consul_architecture_map:
2626
# this first entry seems redundant
2727
# (but it's required for reasons)

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v2.0.3
1+
v2.0.4

0 commit comments

Comments
 (0)