Download and install agents using Puppet Plan
You can use the Puppet Enterprise (PE) console to download and install agents for your specified platform. To download and install an agent:
- Go to ORCHESTRATION > Plans.
- In the Plans text field add
enterprise_tasks::add_platforms
. - Under Plan parameters enter parameters and values for your plan. See Puppet Plan parameters and Puppet Plan parameters and possible values to fetch a Puppet agent.
- Run the plan to download the Puppet agent.
- SSH into the agent node you want to upgrade.
- Run the install script command to install the agent:
cacert="$(puppet config print localcacert)" uri="https://$(puppet config print server):8140/packages/current/install.bash" curl --cacert "$cacert" "$uri" | sudo bash