Lab – classifying and deploying code
In this lab, complete the following tasks:
- Create a node definition that assigns the
motd
module to any node withnode
in the certname in themanifest/site.pp
file of the production environment- The
motd
module is already in thePuppetfile
file in the production control repo - The defaults for
motd
should be fine usinginclude motd
- See an example solution at https://github.com/PacktPublishing/Puppet-8-for-DevOps-Engineers/blob/main/ch11/default.pp
- The
- Create a node definition to assign the
icinga2
module to all Windows nodes that get created- The
icinga2
module is already in thePuppetfile
file in the production control repo - The defaults for
icigna2
should be fine usinginclude incigna2
- Windows nodes will always contain
windows-node
in thecertname
- To deploy on the PE web console, run the
peadm code_manager
task from the Orchestration task menu, entering the'deploy production'
action string - See an example solution at https://github...
- The