Class: Kitchen::Provisioner::PuppetApply
- Inherits:
-
Base
- Object
- Base
- Kitchen::Provisioner::PuppetApply
- Defined in:
- lib/kitchen/provisioner/puppet_apply.rb
Overview
Puppet Apply provisioner.
Instance Attribute Summary collapse
-
#tmp_dir ⇒ Object
Returns the value of attribute tmp_dir.
Instance Method Summary collapse
- #calculate_path(path, type = :directory) ⇒ Object
- #cleanup_sandbox ⇒ Object
- #create_sandbox ⇒ Object
- #custom_install_command ⇒ Object
- #hiera_package ⇒ Object
- #init_command ⇒ Object
- #install_busser ⇒ Object
-
#install_command ⇒ Object
rubocop:disable Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity.
-
#install_command_collections ⇒ Object
rubocop:enable Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity.
- #install_deep_merge ⇒ Object
- #install_eyaml(gem_cmd = 'gem') ⇒ Object
- #install_hiera ⇒ Object
- #install_omnibus_command ⇒ Object
-
#install_puppet_yum_repo ⇒ Object
/bin/wget -P /etc/pki/rpm-gpg/ yum.puppetlabs.com/RPM-GPG-KEY-puppetlabs changed to curl.
-
#prepare_command ⇒ Object
rubocop:disable Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity.
- #run_command ⇒ Object
Instance Attribute Details
#tmp_dir ⇒ Object
Returns the value of attribute tmp_dir.
46 47 48 |
# File 'lib/kitchen/provisioner/puppet_apply.rb', line 46 def tmp_dir @tmp_dir end |
Instance Method Details
#calculate_path(path, type = :directory) ⇒ Object
159 160 161 162 163 164 165 166 167 168 169 170 |
# File 'lib/kitchen/provisioner/puppet_apply.rb', line 159 def calculate_path(path, type = :directory) base = config[:test_base_path] candidates = [] candidates << File.join(base, instance.suite.name, 'puppet', path) candidates << File.join(base, instance.suite.name, path) candidates << File.join(base, path) candidates << File.join(Dir.pwd, path) candidates.find do |c| type == :directory ? File.directory?(c) : File.file?(c) end end |
#cleanup_sandbox ⇒ Object
446 447 448 449 450 451 452 453 |
# File 'lib/kitchen/provisioner/puppet_apply.rb', line 446 def cleanup_sandbox return if sandbox_path.nil? debug("Cleaning up local sandbox in #{sandbox_path}") FileUtils.rmtree(sandbox_path) return if remove_repo.nil? debug("Cleaning up remote sandbox: #{remove_repo}") instance.remote_exec remove_repo end |
#create_sandbox ⇒ Object
428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 |
# File 'lib/kitchen/provisioner/puppet_apply.rb', line 428 def create_sandbox super debug("Creating local sandbox in #{sandbox_path}") yield if block_given? prepare_modules prepare_manifests prepare_files prepare_facter_file prepare_facts prepare_puppet_config prepare_hiera_config prepare_fileserver_config prepare_hiera_data prepare_enc prepare_spec_files info('Finished Preparing files for transfer') end |
#custom_install_command ⇒ Object
409 410 411 412 413 |
# File 'lib/kitchen/provisioner/puppet_apply.rb', line 409 def custom_install_command <<-INSTALL #{config[:custom_install_command]} INSTALL end |
#hiera_package ⇒ Object
370 371 372 |
# File 'lib/kitchen/provisioner/puppet_apply.rb', line 370 def hiera_package "#{config[:hiera_package]}#{puppet_hiera_debian_version}" end |
#init_command ⇒ Object
415 416 417 418 419 420 421 422 423 424 425 426 |
# File 'lib/kitchen/provisioner/puppet_apply.rb', line 415 def init_command dirs = %w(modules manifests files hiera hiera.yaml facter spec) .map { |dir| File.join(config[:root_path], dir) }.join(' ') cmd = "#{sudo('rm')} -rf #{dirs} #{hiera_data_remote_path} \ /etc/hiera.yaml #{puppet_dir}/hiera.yaml \ #{spec_files_remote_path} \ #{puppet_dir}/fileserver.conf;" cmd += config[:puppet_environment] ? "#{sudo('rm')} -f #{File.join(puppet_dir, config[:puppet_environment])};" : '' cmd += " mkdir -p #{config[:root_path]}; #{sudo('mkdir')} -p #{puppet_dir}" debug(cmd) cmd end |
#install_busser ⇒ Object
330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 |
# File 'lib/kitchen/provisioner/puppet_apply.rb', line 330 def install_busser return unless config[:require_chef_for_busser] <<-INSTALL #{Util.shell_helpers} # install chef omnibus so that busser works as this is needed to run tests :( # TODO: work out how to install enough ruby # and set busser: { :ruby_bindir => '/usr/bin/ruby' } so that we dont need the # whole chef client if [ ! -d "/opt/chef" ] then echo '-----> Installing Chef Omnibus to install busser to run tests' #{export_http_proxy_parm} #{export_https_proxy_parm} do_download #{chef_url} /tmp/install.sh #{sudo('sh')} /tmp/install.sh fi INSTALL end |
#install_command ⇒ Object
rubocop:disable Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity
173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 |
# File 'lib/kitchen/provisioner/puppet_apply.rb', line 173 def install_command return unless config[:require_puppet_collections] || config[:require_puppet_repo] || config[:require_puppet_omnibus] if config[:require_puppet_omnibus] install_omnibus_command elsif config[:require_puppet_collections] install_command_collections else case puppet_platform when 'debian', 'ubuntu' info("Installing puppet on #{config[:platform]}") # need to add a CR to avoid trouble with proxy settings concatenation <<-INSTALL if [ ! $(which puppet) ]; then #{sudo('apt-get')} -y install wget #{sudo('wget')} #{wget_proxy_parm} #{puppet_apt_repo} #{sudo('dpkg')} -i #{puppet_apt_repo_file} #{update_packages_debian_cmd} #{sudo_env('apt-get')} -y install facter#{facter_debian_version} #{sudo_env('apt-get')} -y install puppet-common#{puppet_debian_version} #{sudo_env('apt-get')} -y install puppet#{puppet_debian_version} #{install_hiera} fi #{install_eyaml} #{install_deep_merge} #{install_busser} #{custom_install_command} INSTALL when 'redhat', 'centos', 'fedora', 'oracle', 'amazon' info("Installing puppet from yum on #{puppet_platform}") # need to add a CR to avoid trouble with proxy settings concatenation <<-INSTALL if [ ! $(which puppet) ]; then #{install_puppet_yum_repo} fi #{install_eyaml} #{install_deep_merge} #{install_busser} #{custom_install_command} INSTALL else info('Installing puppet, will try to determine platform os') # need to add a CR to avoid trouble with proxy settings concatenation <<-INSTALL if [ ! $(which puppet) ]; then if [ -f /etc/centos-release ] || [ -f /etc/redhat-release ] || [ -f /etc/oracle-release ]; then #{install_puppet_yum_repo} else if [ -f /etc/system-release ] || [ grep -q 'Amazon Linux' /etc/system-release ]; then #{install_puppet_yum_repo} else #{sudo('apt-get')} -y install wget #{sudo('wget')} #{wget_proxy_parm} #{puppet_apt_repo} #{sudo('dpkg')} -i #{puppet_apt_repo_file} #{update_packages_debian_cmd} #{sudo_env('apt-get')} -y install facter#{facter_debian_version} #{sudo_env('apt-get')} -y install puppet-common#{puppet_debian_version} #{sudo_env('apt-get')} -y install puppet#{puppet_debian_version} #{install_hiera} fi fi fi #{install_eyaml} #{install_deep_merge} #{install_busser} #{custom_install_command} INSTALL end end end |
#install_command_collections ⇒ Object
rubocop:enable Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity
247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 |
# File 'lib/kitchen/provisioner/puppet_apply.rb', line 247 def install_command_collections case puppet_platform when 'debian', 'ubuntu' info("Installing Puppet Collections on #{puppet_platform}") <<-INSTALL #{Util.shell_helpers} if [ ! -d "#{config[:puppet_coll_remote_path]}" ]; then if [ ! -f "#{config[:puppet_apt_collections_repo]}" ]; then #{sudo('apt-get')} -y install wget #{sudo('wget')} #{wget_proxy_parm} #{config[:puppet_apt_collections_repo]} fi #{sudo('dpkg')} -i #{puppet_apt_coll_repo_file} #{sudo('apt-get')} update #{sudo_env('apt-get')} -y install puppet-agent#{puppet_debian_version} fi #{install_eyaml("#{config[:puppet_coll_remote_path]}/puppet/bin/gem")} #{install_deep_merge} #{install_busser} #{custom_install_command} INSTALL when 'redhat', 'centos', 'fedora', 'oracle', 'amazon' info("Installing Puppet Collections on #{puppet_platform}") <<-INSTALL #{Util.shell_helpers} if [ ! -d "#{config[:puppet_coll_remote_path]}" ]; then echo "-----> #{sudo_env('yum')} -y localinstall #{config[:puppet_yum_collections_repo]}" #{sudo_env('yum')} -y localinstall #{config[:puppet_yum_collections_repo]} #{sudo_env('yum')} -y install puppet-agent#{puppet_redhat_version} fi #{install_eyaml("#{config[:puppet_coll_remote_path]}/puppet/bin/gem")} #{install_deep_merge} #{install_busser} #{custom_install_command} INSTALL else info('Installing Puppet Collections, will try to determine platform os') <<-INSTALL #{Util.shell_helpers} if [ ! -d "#{config[:puppet_coll_remote_path]}" ]; then if [ -f /etc/centos-release ] || [ -f /etc/redhat-release ] || [ -f /etc/oracle-release ] || \ [ -f /etc/system-release ] || [ grep -q 'Amazon Linux' /etc/system-release ]; then echo "-----> #{sudo_env('yum')} -y localinstall #{config[:puppet_yum_collections_repo]}" #{sudo_env('yum')} -y localinstall #{config[:puppet_yum_collections_repo]} #{sudo_env('yum')} -y install puppet-agent#{puppet_redhat_version} else #{sudo('apt-get')} -y install wget #{sudo('wget')} #{wget_proxy_parm} #{config[:puppet_apt_collections_repo]} #{sudo('dpkg')} -i #{puppet_apt_coll_repo_file} #{sudo('apt-get')} update #{sudo_env('apt-get')} -y install puppet-agent#{puppet_debian_version} fi fi #{install_eyaml("#{config[:puppet_coll_remote_path]}/puppet/bin/gem")} #{install_deep_merge} #{install_busser} #{custom_install_command} INSTALL end end |
#install_deep_merge ⇒ Object
307 308 309 310 311 312 313 314 315 316 |
# File 'lib/kitchen/provisioner/puppet_apply.rb', line 307 def install_deep_merge return unless config[:hiera_deep_merge] <<-INSTALL # Support for hash merge lookups to recursively merge hash keys if [[ $(#{sudo('gem')} list deep_merge -i) == 'false' ]]; then echo '-----> Installing deep_merge to provide deep_merge of hiera hashes' #{sudo('gem')} install #{gem_proxy_parm} --no-ri --no-rdoc deep_merge fi INSTALL end |
#install_eyaml(gem_cmd = 'gem') ⇒ Object
318 319 320 321 322 323 324 325 326 327 328 |
# File 'lib/kitchen/provisioner/puppet_apply.rb', line 318 def install_eyaml(gem_cmd = 'gem') return unless config[:hiera_eyaml] <<-INSTALL # A backend for Hiera that provides per-value asymmetric encryption of sensitive data if [[ $(#{sudo(gem_cmd)} list hiera-eyaml -i) == 'false' ]]; then echo '-----> Installing hiera-eyaml to provide encryption of hiera data' #{sudo(gem_cmd)} install #{gem_proxy_parm} --no-ri --no-rdoc highline -v 1.6.21 #{sudo(gem_cmd)} install #{gem_proxy_parm} --no-ri --no-rdoc hiera-eyaml fi INSTALL end |
#install_hiera ⇒ Object
363 364 365 366 367 368 |
# File 'lib/kitchen/provisioner/puppet_apply.rb', line 363 def install_hiera return unless config[:install_hiera] <<-INSTALL #{sudo_env('apt-get')} -y install #{hiera_package} INSTALL end |
#install_omnibus_command ⇒ Object
349 350 351 352 353 354 355 356 357 358 359 360 361 |
# File 'lib/kitchen/provisioner/puppet_apply.rb', line 349 def install_omnibus_command info('Installing puppet using puppet omnibus') <<-INSTALL #{Util.shell_helpers} if [ ! $(which puppet) ]; then echo "-----> Installing Puppet Omnibus" #{export_http_proxy_parm} #{export_https_proxy_parm} do_download #{config[:puppet_omnibus_url]} /tmp/install_puppet.sh #{sudo_env('sh')} /tmp/install_puppet.sh fi INSTALL end |
#install_puppet_yum_repo ⇒ Object
/bin/wget -P /etc/pki/rpm-gpg/ yum.puppetlabs.com/RPM-GPG-KEY-puppetlabs changed to curl
377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 |
# File 'lib/kitchen/provisioner/puppet_apply.rb', line 377 def install_puppet_yum_repo <<-INSTALL rhelversion=$(cat /etc/redhat-release | grep 'release 7') # For CentOS7/RHEL7 the rdo release contains puppetlabs repo, creating conflict. Create temp-repo #{sudo_env('curl')} -o /etc/pki/rpm-gpg/RPM-GPG-KEY-puppetlabs http://yum.puppetlabs.com/RPM-GPG-KEY-puppetlabs if [ -n "$rhelversion" ]; then echo '[puppettemp-products] name=Puppet Labs Products - \$basearch baseurl=http://yum.puppetlabs.com/el/7/products/\$basearch gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-puppetlabs enabled=0 gpgcheck=1 [puppettemp-deps] name=Puppet Labs Dependencies - \$basearch baseurl=http://yum.puppetlabs.com/el/7/dependencies/\$basearch gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-puppetlabs enabled=0 gpgcheck=1' | sudo tee /etc/yum.repos.d/puppettemp.repo > /dev/null sudo sed -i 's/^[ \t]*//' /etc/yum.repos.d/puppettemp.repo #{update_packages_redhat_cmd} #{sudo_env('yum')} -y --enablerepo=puppettemp-products --enablerepo=puppettemp-deps install puppet#{puppet_redhat_version} # Clean up temporary puppet repo sudo rm -rf /etc/pki/rpm-gpg/RPM-GPG-KEY-puppetlabs sudo rm -rf /etc/yum.repos.d/puppettemp.repo else #{sudo('rpm')} -ivh #{proxy_parm} #{puppet_yum_repo} #{update_packages_redhat_cmd} #{sudo_env('yum')} -y install puppet#{puppet_redhat_version} fi INSTALL end |
#prepare_command ⇒ Object
rubocop:disable Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity
456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 |
# File 'lib/kitchen/provisioner/puppet_apply.rb', line 456 def prepare_command commands = [] if puppet_git_init commands << [ sudo('rm -rf'), '/etc/puppet' ].join(' ') commands << [ sudo('git clone'), puppet_git_init, '/etc/puppet' ].join(' ') end if puppet_git_pr commands << [sudo('git'), '--git-dir=/etc/puppet/.git/', 'fetch -f', 'origin', "pull/#{puppet_git_pr}/head:pr_#{puppet_git_pr}" ].join(' ') commands << [sudo('git'), '--git-dir=/etc/puppet/.git/', '--work-tree=/etc/puppet/', 'checkout', "pr_#{puppet_git_pr}" ].join(' ') end if puppet_config commands << [ sudo('cp'), File.join(config[:root_path], 'puppet.conf'), puppet_dir ].join(' ') end if hiera_config commands << [ sudo('cp'), File.join(config[:root_path], 'hiera.yaml'), '/etc/' ].join(' ') commands << [ sudo('cp'), File.join(config[:root_path], 'hiera.yaml'), hiera_config_dir ].join(' ') end if fileserver_config commands << [ sudo('cp'), File.join(config[:root_path], 'fileserver.conf'), puppet_dir ].join(' ') end if hiera_data && hiera_data_remote_path == '/var/lib/hiera' commands << [ sudo('cp -r'), File.join(config[:root_path], 'hiera'), '/var/lib/' ].join(' ') end if hiera_data && hiera_data_remote_path != '/var/lib/hiera' commands << [ sudo('mkdir -p'), hiera_data_remote_path ].join(' ') commands << [ sudo('cp -r'), File.join(config[:root_path], 'hiera/*'), hiera_data_remote_path ].join(' ') end if hiera_eyaml commands << [ sudo('mkdir -p'), hiera_eyaml_key_remote_path ].join(' ') commands << [ sudo('cp -r'), File.join(config[:root_path], 'hiera_keys/*'), hiera_eyaml_key_remote_path ].join(' ') end if puppet_environment commands << [ sudo('ln -s '), config[:root_path], File.join(puppet_dir, config[:puppet_environment]) ].join(' ') end if spec_files_path && spec_files_remote_path commands << [ sudo('mkdir -p'), spec_files_remote_path ].join(' ') commands << [ sudo('cp -r'), File.join(config[:root_path], 'spec/*'), spec_files_remote_path ].join(' ') end if config[:puppet_enc] commands << [ sudo('chmod 755'), File.join("#{config[:root_path]}/enc", File.basename(config[:puppet_enc])) ].join(' ') end command = commands.join(' && ') debug(command) command end |
#run_command ⇒ Object
559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 |
# File 'lib/kitchen/provisioner/puppet_apply.rb', line 559 def run_command if !config[:puppet_apply_command].nil? return config[:puppet_apply_command] else result = [ facterlib, custom_facts, puppet_manifestdir, puppet_cmd, 'apply', File.join(config[:root_path], 'manifests', manifest), "--modulepath=#{File.join(config[:root_path], 'modules')}", "--fileserverconfig=#{File.join(config[:root_path], 'fileserver.conf')}", , puppet_environment_flag, puppet_noop_flag, puppet_enc_flag, puppet_detailed_exitcodes_flag, puppet_verbose_flag, puppet_debug_flag, puppet_logdest_flag, puppet_whitelist_exit_code ].join(' ') info("Going to invoke puppet apply with: #{result}") result end end |