Infrastructure Team/Puppet: Difference between revisions
No edit summary |
|||
| (20 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
Sugar Labs Puppet infrastructure. | |||
== Modules == | |||
Puppet modules configure particular services like [[Service/git|git.sugarlabs.org]] or MySQL but not tied to final configurations, they are being configured from [[#Master|puppetmaster]]. | |||
[http:// | All modules are collected as repositories in [http://git.sugarlabs.org/puppets puppets] Gitorious project. Modules might be created from scratch or mirrored from upstream, so, all modules that are used within Sugar Labs are stored in one place. Module repository might have followed branches: | ||
* ''master'', development version (might be absent if project is mirrorred from upstream), | |||
* ''production'', version is being used in production, | |||
* ''upstream'', if it is mirrorred project. | |||
Auto generated [http://api.sugarlabs.org/puppets/ documentation]. | |||
== Master == | |||
Only puppetmaster keeps final configuration for all Sugar Labs services. It is being started in a private git repository on [[Machine/lightwave]], which is a high security machine. | |||
=== Private repository === | |||
* {{Code|/var/lib/puppet/etc/puppet.git}} | |||
* {{Code|/var/lib/puppet/etc/puppet}} detached working directory | |||
* {{Code|/etc/puppet}} symlink to detached working directory | |||
* {{Code|/var/lib/puppet/etc/puppet.git/config}}: | |||
[core] | |||
repositoryformatversion = 0 | |||
filemode = true | |||
bare = false | |||
sharedRepository = true | |||
logallrefupdates = true | |||
worktree = /etc/puppet | |||
[receive] | |||
denycurrentbranch = ignore | |||
[hooks] | |||
mailinglist = systems-logs@... | |||
emailprefix = "[PUPPET] " | |||
showrev = "git show -C %s; echo" | |||
* {{Code|/var/lib/puppet/etc/puppet.git/description}}: | |||
Sugar Labs Puppet configuration | |||
* {{Code|/var/lib/puppet/etc/puppet.git/hooks/post-receive}} | |||
#!/bin/bash | |||
sh /usr/share/doc/git-core/contrib/hooks/post-receive-email | |||
git checkout -f | |||
for i in $(ls /etc/puppet/manifests/nodes/*.pp); do puppet kick $(basename $i .pp); done | |||
== | === Repository hierarchy === | ||
Git repository consists of: | |||
* {{Code|manifests/site.pp}}, main recipe which contain common settings and includes nodes. | |||
* {{Code|manifests/services/}}, recipes that describes final configuration for particular services. | |||
* {{Code|manifests/nodes/}}, puppetized nodes, configuration for hosts that ask puppetmaster. | |||
* {{Code|modules/}}, git submodules with Puppet [[#Modules|modules]]. | |||
== Nodes == | == Nodes == | ||
Hosts that fetch configuration from the [[#Master|puppetmast]] need <code>puppet >= 2.6</code> package. | |||
If {{Code|puppet}} was installed from gems, it needs to be initially configured: | |||
puppet master --mkusers | |||
To complete configuration, execute: | |||
puppet agent --no-daemonize --onetime --server puppet.sugarlabs.org | |||
Every puppetized host should have particular node file in {{Code|manifests/nodes/<host-name>.pp}} on [[#Master|puppetmaster]]. | |||