Mode:
Duration:
1
Coding works best on desktop or with an external keyboard.
Coding works best on desktop or with an external keyboard.
A simple Puppet manifest to install and start Nginx on a node.
# puppet/demo.pp
package { 'nginx':
ensure => installed,
}
service { 'nginx':
ensure => running,
enable => true,
}Puppet is an open-source configuration management and automation tool that allows system administrators to define infrastructure as code and manage servers, applications, and services in a consistent, automated manner.
Origin & Creator
Created by Luke Kanies in 2005 and developed by Puppet, Inc.
Industrial Note
Used heavily in large-scale IT infrastructures, enterprise DevOps, and regulated industries for ensuring compliance, repeatability, and auditability of server configurations.