forked from simp/rubygem-simp-beaker-helpers
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(SIMP-MAINT) Add Windows 2016 and 2019 nodesets
* Also added a missing requirement to the Gemfile * Requires the following PRs to function: * voxpupuli/beaker-vagrant#26 * puppetlabs/beaker-puppet#129
- Loading branch information
1 parent
9d4d17c
commit 59655fb
Showing
5 changed files
with
114 additions
and
41 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
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,35 @@ | ||
<% | ||
if ENV['BEAKER_HYPERVISOR'] | ||
hypervisor = ENV['BEAKER_HYPERVISOR'] | ||
else | ||
hypervisor = 'vagrant' | ||
end | ||
-%> | ||
HOSTS: | ||
win: | ||
roles: | ||
- windows | ||
platform: windows-server-amd64 | ||
box: gusztavvargadr/windows-server | ||
box_version: 1607.0.1909 | ||
hypervisor: <%= hypervisor %> | ||
vagrant_memsize: 2048 | ||
vagrant_cpus: 2 | ||
user: vagrant | ||
communicator: winrm | ||
is_cygwin: false | ||
|
||
el7: | ||
roles: | ||
- default | ||
platform: el-7-x86_64 | ||
box: centos/7 | ||
hypervisor: <%= hypervisor %> | ||
|
||
CONFIG: | ||
log_level: verbose | ||
type: aio | ||
vagrant_memsize: 256 | ||
<% if ENV['BEAKER_PUPPET_ENVIRONMENT'] -%> | ||
puppet_environment: <%= ENV['BEAKER_PUPPET_ENVIRONMENT'] %> | ||
<% end -%> |
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,34 @@ | ||
<% | ||
if ENV['BEAKER_HYPERVISOR'] | ||
hypervisor = ENV['BEAKER_HYPERVISOR'] | ||
else | ||
hypervisor = 'vagrant' | ||
end | ||
-%> | ||
HOSTS: | ||
win: | ||
roles: | ||
- windows | ||
platform: windows-server-amd64 | ||
box: gusztavvargadr/windows-server | ||
hypervisor: <%= hypervisor %> | ||
vagrant_memsize: 2048 | ||
vagrant_cpus: 2 | ||
user: vagrant | ||
communicator: winrm | ||
is_cygwin: false | ||
|
||
el7: | ||
roles: | ||
- default | ||
platform: el-7-x86_64 | ||
box: centos/7 | ||
hypervisor: <%= hypervisor %> | ||
|
||
CONFIG: | ||
log_level: verbose | ||
type: aio | ||
vagrant_memsize: 256 | ||
<% if ENV['BEAKER_PUPPET_ENVIRONMENT'] -%> | ||
puppet_environment: <%= ENV['BEAKER_PUPPET_ENVIRONMENT'] %> | ||
<% end -%> |