Puppet Flashcards

1
Q

How does the Puppet architecture works?

A

It uses a client-server arch written in Ruby whereas Puppet Master contains all configurations and catalogs that Puppet Clients/Agents connect to in order to receive latest automations

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How Puppet makes automations?

A

It uses .pp files, Puppet DSL

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are Manifests?

A

Manifests are automations written in .pp
Ex:
exec { ‘apt-update’:
command => ‘/usr/bin/apt-get update’
}
package { ‘mysql-server’:
require => Exec[‘apt-update’],
ensure => installed,
}
service { ‘mysql’:
ensure => running,
}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are Modules?

A

Remote manifests like apache clients and such

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What are Resources?

A

The basic manifests tasks

How well did you know this?
1
Not at all
2
3
4
5
Perfectly