Puppet How To
Ref: DigitalOcean tutorial of puppet
Ansible is very easy to use, just need master, no need to install on slaves. Instead, SSH (usually with pub keys) are used in Ansible.
Puppet is more complex, Ansible can be used to assist the installation.
Puppet requires firewall to open port nr 8140.
INSTALL #
ansibleall 'apt-get install -y puppet' # for clients (nodes)
sudo apt-get install -y puppetmaster # On server (master)
CONFIG #
ansibleall 'echo "192.168.1.194 [email protected]" >> /etc/hosts'
PS #
- change “example.com” to the actual domain that we can control.