-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
546 additions
and
248 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
* Wed Oct 25 2017 Dylan Cochran <[email protected]> - 0.5.0 | ||
- (SIMP-3445) Add acceptance test for consul configuration and bootstrap | ||
- (SIMP-3629) libkv::atomic_put returns false for a successful put on consul >0.9.0 | ||
|
||
* Thu Aug 24 2017 Dylan Cochran <[email protected]> - 0.4.3 | ||
- (SIMP-3623) libkv::lookup_key backend should turn softfail on by default | ||
- Add fix for 0.9.x consul installations | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
26 changes: 17 additions & 9 deletions
26
...eptance/nodesets/centos-combined-x64.yaml → spec/acceptance/nodesets/default.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,30 @@ | ||
# This nodeset spins up a simple one-host test VM for both EL6 and EL7 | ||
HOSTS: | ||
el7: | ||
el7server: | ||
roles: | ||
- server | ||
- default | ||
- master | ||
platform: el-7-x86_64 | ||
box: centos/7 | ||
hypervisor: vagrant | ||
el6: | ||
el6server: | ||
roles: | ||
- agent | ||
- client | ||
- default | ||
- server | ||
platform: el-6-x86_64 | ||
box: centos/6 | ||
hypervisor: vagrant | ||
el7agent: | ||
roles: | ||
- agent | ||
platform: el-7-x86_64 | ||
box: centos/7 | ||
hypervisor: vagrant | ||
el6agent: | ||
roles: | ||
- agent | ||
platform: el-6-x86_64 | ||
box: centos/6 | ||
hypervisor: vagrant | ||
CONFIG: | ||
log_level: verbose | ||
type: aio | ||
vagrant_memsize: 256 | ||
vagrant_memsize: 3072 | ||
## vb_gui: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
include libkv::consul |
Oops, something went wrong.