Rahul Sharma (Editor)

Puppet (software)

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Developer(s)
  
Puppet

Written in
  
Puppet (software) Aerostich Mr Happy Puppet Aerostich Motorcycle Jackets Suits

Initial release
  
2005; 12 years ago (2005)

Stable release
  
4.9.2 (February 10, 2017; 48 days ago (2017-02-10)) [±]

Preview release
  
4.0-rc1 (April 15, 2015; 23 months ago (2015-04-15)) [±]

Operating system
  

Demo of puppet enterprise


In computing, Puppet is an open-source software configuration management tool. It runs on many Unix-like systems as well as on Microsoft Windows, and includes its own declarative language to describe system configuration.

Contents

Puppet (software) Puppet The shortest path to better software

Puppet is produced by Puppet, founded by Luke Kanies in 2005. It is written in Ruby and released as free software under the GNU General Public License (GPL) until version 2.7.0 and the Apache License 2.0 after that.

Puppet (software) Puppet YouTube

Getting started with puppet puppetconf 2013


Overview

Puppet (software) Puppet Enterprise IT automation for cloud security and DevOps

Puppet is designed to manage the configuration of Unix-like and Microsoft Windows systems declaratively. The user describes system resources and their state, either using Puppet's declarative language or a Ruby DSL (domain-specific language). This information is stored in files called "Puppet manifests". Puppet discovers the system information via a utility called Facter, and compiles the Puppet manifests into a system-specific catalog containing resources and resource dependency, which are applied against the target systems. Any actions taken by Puppet are then reported.

Puppet (software) Puppet Emulator Watch how Puppet works

Puppet consists of a custom declarative language to describe system configuration, which can be either applied directly on the system, or compiled into a catalog and distributed to the target system via client–server paradigm (using a REST API), and the agent uses system specific providers to enforce the resource specified in the manifests. The resource abstraction layer enables administrators to describe the configuration in high-level terms, such as users, services and packages without the need to specify OS specific commands (such as rpm, yum, apt).

Puppet is model-driven, requiring limited programming knowledge to use.

Puppet (software) httpsuploadwikimediaorgwikipediaen009Pup

Puppet comes in two flavors, Puppet Enterprise and Open Source Puppet. In addition to providing functionalities of Open Source Puppet, Puppet Enterprise also provides GUI, API and command line tools for node management.

Architecture

Puppet (software) Are you a puppet of your gadgets Wild Woman Fundraising

Puppet usually follows client-server architecture. The client is known as agent and the server is known as master. It can also be used as a stand-alone application.

Puppet (software) Puppet software Wikipedia

Puppet Master is installed on one or more servers and the systems that need to be configured install Puppet Agent. Puppet Agents communicate with the server and fetch configuration instructions. The Agent then applies the configuration on the system and sends the status report to the server. Devices can run Puppet Agent as a daemon, that can be triggered periodically as a cron job or can be run manually whenever needed.

Puppet architecture consists of:

Puppet (software) Puppet The shortest path to better software

  • Configuration Language: In Puppet, items to be configured are termed as ‘resources’. Since Puppet follows declarative language, it just needs to specify ‘what’ action needs to be performed on the resources. The action is implemented by declaring three things for every resource: its type, title and a list of attributes whose state needs to be configured. Puppet code is written into files called Manifests. These are stored on the server and contain configuration instructions for each client. Format for writing manifest files is stated below.
  • Example:

    Puppet (software) Puppet The shortest path to better software

  • Resource Abstraction: Puppet provides resource abstraction by providing the ability to configure resources on different platforms without worrying about the platform dependencies. For example, if a user wants to install a package on three different platforms then he/she does not have to worry about the required package type of given platform and its dependencies, Puppet takes care of it by using Facter. Facter is the piece of information which agents provide to the server describing what kind of operating system is being used, their IP, hostname, etc. Indirectly, it is a way of informing Puppet as to what procedure needs to be followed for software configuration in its case; depending on the facts being rendered by facter. For any given type of resource, there are a number of providers. Providers have packet management tools corresponding to different platforms/operating systems. These providers define how resources have to be managed.
  • Transaction: Following are the steps of execution:
    1. Every agent send across facter to master.
    2. Puppet maintains a graphical representation of the list of resources and their interdependencies; depicting the order in which they need to be configured in a ‘catalog’ for every client. Master sends this catalog to the client.
    3. Configuration already present on the system is known as actual state and the configuration mentioned in manifest file is known as desired state. Agent applies configuration on the system only when actual state is not same as desired state. The clause of applying a state change only if needed is called as ‘idempotency’, which is the key feature of Puppet.
    4. The result of the applying the configuration is sent across to the server.
  • Characteristics

  • Puppet is flexible. Since it is open source, custom libraries and modules can be implemented to suit needs.
  • Takes care of the host throughout its life cycle from start to end, including the initial setup, installation, upgradation and maintenance activities.
  • Increases manageability and productivity.
  • Automates repetitive tasks.
  • Reuses resources across different platforms.
  • Platforms and users

    Built to be cross-platform, Puppet works on all major Linux distributions, as well as on other Unix-like systems (Solaris, BSD, Mac OS X, AIX, HP-UX), and has Microsoft Windows support.

    Puppet is used by the Wikimedia Foundation, ARIN, Mozilla, Reddit, CERN, Dell, Rackspace, Zynga, Twitter, the New York Stock Exchange, PayPal, Disney, Citrix Systems, Spotify, TubeMogul, Oracle, Yandex, the University of California Los Angeles, the University of North Texas, the Los Alamos National Laboratory, Stanford University, Purdue University, Lexmark, QVC, Intel, Bright Computing and Google, among others.

    References

    Puppet (software) Wikipedia