Login
Remember
Register
Ask a Question
How Puppet Works?
0
votes
asked
Dec 1, 2021
in
Petroleum Engineering
by
DavidAnderson
How Puppet Works?
puppet
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Dec 1, 2021
by
DavidAnderson
The Puppet Agent sends the Facts to the Puppet Master. Facts are basically key/value data pair that represents some aspect of Slave state, such as its IP address, up-time, operating system, or whether it’s a virtual machine. I will explain Facts in detail later in the blog.
Puppet Master uses the facts to compile a Catalog that defines how the Slave should be configured. Catalogis a document that describes the desired state for each resource that Puppet Master manages on a Slave. I will explain catalogs and resources in detail later.
Puppet Slave reports back to Master indicating that Configuration is complete, which is visible in the Puppet dashboard.
...