diff options
author | Micah <micah@leap.se> | 2016-05-24 10:19:38 -0400 |
---|---|---|
committer | Micah <micah@leap.se> | 2016-05-24 10:19:38 -0400 |
commit | f5ab8dc148de8cc4cfd9df88ce9a81703405f8c5 (patch) | |
tree | b26fa320d2b14b92fe6c6186054825260f5fa40d /puppet/modules/vcsrepo/Rakefile | |
parent | 38ac177664f763f08153239992568f1aad04c89b (diff) | |
parent | 92a1ac5b29b497ee659c8097a5c0de94a481181c (diff) |
Merge commit '92a1ac5b29b497ee659c8097a5c0de94a481181c' as 'puppet/modules/vcsrepo'
Diffstat (limited to 'puppet/modules/vcsrepo/Rakefile')
-rwxr-xr-x | puppet/modules/vcsrepo/Rakefile | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/puppet/modules/vcsrepo/Rakefile b/puppet/modules/vcsrepo/Rakefile new file mode 100755 index 00000000..7e9a13d5 --- /dev/null +++ b/puppet/modules/vcsrepo/Rakefile @@ -0,0 +1,42 @@ +require 'puppet_blacksmith/rake_tasks' +require 'puppet-lint/tasks/puppet-lint' +require 'puppetlabs_spec_helper/rake_tasks' + +PuppetLint.configuration.fail_on_warnings = true +PuppetLint.configuration.send('relative') +PuppetLint.configuration.send('disable_80chars') +PuppetLint.configuration.send('disable_class_inherits_from_params_class') +PuppetLint.configuration.send('disable_documentation') +PuppetLint.configuration.send('disable_single_quote_string_with_variables') +PuppetLint.configuration.ignore_paths = ["spec/**/*.pp", "pkg/**/*.pp"] + +desc 'Generate pooler nodesets' +task :gen_nodeset do + require 'beaker-hostgenerator' + require 'securerandom' + require 'fileutils' + + agent_target = ENV['TEST_TARGET'] + if ! agent_target + STDERR.puts 'TEST_TARGET environment variable is not set' + STDERR.puts 'setting to default value of "redhat-64default."' + agent_target = 'redhat-64default.' + end + + master_target = ENV['MASTER_TEST_TARGET'] + if ! master_target + STDERR.puts 'MASTER_TEST_TARGET environment variable is not set' + STDERR.puts 'setting to default value of "redhat7-64mdcl"' + master_target = 'redhat7-64mdcl' + end + + targets = "#{master_target}-#{agent_target}" + cli = BeakerHostGenerator::CLI.new([targets]) + nodeset_dir = "tmp/nodesets" + nodeset = "#{nodeset_dir}/#{targets}-#{SecureRandom.uuid}.yaml" + FileUtils.mkdir_p(nodeset_dir) + File.open(nodeset, 'w') do |fh| + fh.print(cli.execute) + end + puts nodeset +end |