Skip to content

Commit 4bac996

Browse files
committed
Consul v1.3.1 and more
- Consul v1.3.1 - Configuration and documentation for gRPC (thanks @RavisMsk) - Consistent boolean use - Fix Consul restart handler reference (thanks @blaet) - Write gossip key on all hosts (thanks @danielkucera) - Protect local consul cluster key file (thanks @blaet) - Support Amazon Linux (thanks @soloradish) - Quite ACL replication token retrieval (thanks @jpiron) - disable_keyring_file configuration option (thanks @vincepii) - Update tests - Update documentation
1 parent e11ba27 commit 4bac996

File tree

6 files changed

+17
-17
lines changed

6 files changed

+17
-17
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
## v2.1.1 (UNRELEASED)
1+
## v2.1.1
22

3-
- Consul v1.4.0
3+
- Consul v1.3.1
44
- Configuration and documentation for gRPC (thanks @RavisMsk)
55
- Consistent boolean use
66
- Fix Consul restart handler reference (thanks @blaet)
@@ -9,7 +9,7 @@
99
- Support Amazon Linux (thanks @soloradish)
1010
- Quite ACL replication token retrieval (thanks @jpiron)
1111
- disable_keyring_file configuration option (thanks @vincepii)
12-
12+
- Update tests
1313
- Update documentation
1414

1515
## v2.1.0

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.3.0
28+
* Consul: 1.3.1
2929
* Ansible: 2.6.4
3030
* Alpine Linux: 3.8
3131
* CentOS: 7
@@ -59,7 +59,7 @@ the variables are named and described below:
5959
### `consul_version`
6060

6161
- Version to install
62-
- Default value: *1.3.0*
62+
- Default value: *1.3.1*
6363

6464
### `consul_architecture_map`
6565

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: true
88

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

examples/README_VAGRANT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,9 @@ 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.3.0
93+
* Consul version 1.3.1
9494
* Ansible: 2.6.4
95-
* VirtualBox version 5.2.18
95+
* VirtualBox version 5.2.22
9696
* Vagrant version 2.1.5
9797
* Vagrant Hosts plugin version 2.8.1
9898
2. This project uses Debian 9 (Stretch) by default, but you can choose another OS distribution with the *BOX_NAME* environment variable

tests/test_vars.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ansible_default_ipv4:
44
interface: eth0
55
ansible_eth0:
66
ipv4:
7-
address: "1.1.1.1"
7+
address: "1.1.1.1"
88
ansible_system: ubuntu
99
consul_raw_key: consul_raw_key
1010
_consul_lan_servers:
@@ -17,11 +17,11 @@ item:
1717
config_version: bootstrap
1818

1919
## Core
20-
consul_debug: no
20+
consul_debug: false
2121
is_virtualenv: "{{ lookup('env','VIRTUAL_ENV') | default('', true) }}"
2222

2323
### Package
24-
consul_version: "{{ lookup('env','CONSUL_VERSION') | default('1.3.0', true) }}"
24+
consul_version: "{{ lookup('env','CONSUL_VERSION') | default('1.3.1', true) }}"
2525
consul_architecture_map:
2626
# this first entry seems redundant
2727
# (but it's required for reasons)
@@ -58,9 +58,9 @@ consul_run_path: "/var/run/consul"
5858
consul_binary: "{{ consul_bin_path }}/consul"
5959

6060
### System user and group
61-
consul_manage_user: yes
61+
consul_manage_user: true
6262
consul_user: "consul"
63-
consul_manage_group: no
63+
consul_manage_group: false
6464
consul_group: "bin"
6565

6666
### Consul settings
@@ -81,8 +81,8 @@ consul_node_role: "{{ lookup('env','CONSUL_NODE_ROLE') | default('client', true)
8181
consul_recursors: "{{ lookup('env','CONSUL_RECURSORS') | default('[]', true) }}"
8282
consul_bootstrap_expect: "{{ lookup('env','CONSUL_BOOTSTRAP_EXPECT') | default(false, true) }}"
8383
consul_ui: "{{ lookup('env', 'CONSUL_UI') | default(true, true) }}"
84-
consul_disable_update_check: no
85-
consul_enable_script_checks: no
84+
consul_disable_update_check: false
85+
consul_enable_script_checks: false
8686
consul_raft_protocol: "\
8787
{% if consul_version is version_compare('0.7.0', '<=') %}\
8888
1\
@@ -141,7 +141,7 @@ consul_servers: "\
141141
{% endif %}\
142142
{% endfor %}\
143143
{{ _consul_servers }}"
144-
consul_gather_server_facts: no
144+
consul_gather_server_facts: false
145145

146146
## ACL
147147
consul_acl_policy: false

version.txt

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

0 commit comments

Comments
 (0)