Eugene
Eugene

Reputation: 4879

Puppet max clients

I'm just looking for some advice on puppet. Mainly what everyone uses for their puppet master's hardware and whether or not there is a limit on the maximum number of nodes that a puppet master can serve.

I'm looking at setting up a puppet cluster to manage a few thousand servers and was curious how much hardware I would need to throw at this project.

Upvotes: 0

Views: 1328

Answers (1)

Misc
Misc

Reputation: 126

I do not manage much servers ( less than 10 ) for the moment, so I cannot help you much, but if scaling is a issue, you can have a masterless deployment, using git and running puppet with cron ( http://current.workingdirectory.net/posts/2011/puppet-without-masters/ ).

You just need to deploy your config, using cron ( and the vcs of your choice ), and to apply it, using cron too ( or fabric, or mcollective ). Then the only thing that need to scale is the vcs server, and this is much easier to do. You can even simply use rsync or nfs, and I think serving a few thousand server would not be a problem.

However, the issue would be stored configs.

Upvotes: 1

Related Questions