Puppet Plan: cd4peadm::apply_configuration
- Defined in:
- plans/apply_configuration.pp
Summary
Apply the current CD4PE configuration from Hiera to the existing CD4PE instanceOverview
2 3 4 5 6 7 8 9 10 11 |
# File 'plans/apply_configuration.pp', line 2 plan cd4peadm::apply_configuration() { run_plan('cd4peadm::check_bolt_version') # For now, updating is accomplished by just rerunning the install plan, # which will read the config and make any required changes to the deployed # application. run_plan('cd4peadm::install_from_config') run_plan('cd4peadm::ctl', { 'action' => 'restart' }) } |