diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2018-07-10 12:31:32 +0200 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2018-07-11 08:02:07 +0200 |
commit | 2742958fd69c91c442685be62140f1e29e363b95 (patch) | |
tree | 987aee9281ce774c031c40d6626797ad7ec878e9 /readme.md | |
parent | b5305b5cad5cbb0a2c072b29f2d4dc05126c39d4 (diff) | |
download | Puppet-2742958fd69c91c442685be62140f1e29e363b95.tar.gz Puppet-2742958fd69c91c442685be62140f1e29e363b95.tar.zst Puppet-2742958fd69c91c442685be62140f1e29e363b95.zip |
Move todos to readme.md and add first documentation
Diffstat (limited to 'readme.md')
-rw-r--r-- | readme.md | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..d8d8046 --- /dev/null +++ b/readme.md | |||
@@ -0,0 +1,32 @@ | |||
1 | # Puppet configuration repository for immae.eu's services | ||
2 | |||
3 | This repository has the aim to help automate the installation of servers | ||
4 | planned for a specific task, with the help of Puppet. The host are | ||
5 | supposed to be listed in an LDAP-like database, which will contain the | ||
6 | necessary credentials, variable configuration and secrets for each | ||
7 | server. | ||
8 | |||
9 | ## Structure | ||
10 | |||
11 | The repository is structured along Puppet modules (`modules/` | ||
12 | directory). Each machine has one or several `role`, which determine the | ||
13 | set of programs and configuration to install. Each role may be | ||
14 | standalone, or require a set of `profile`, which is seen as a | ||
15 | reusable component. (The structure is inspired from the tutorial at | ||
16 | [https://www.craigdunn.org/2012/05/239/](https://www.craigdunn.org/2012/05/239/) ) | ||
17 | |||
18 | |||
19 | ## TODO | ||
20 | |||
21 | - Complete documentation | ||
22 | - Add some monitoring: | ||
23 | - modules/profile/manifests/postgresql/ssl.pp (check postgresql certificate) | ||
24 | - modules/profile/manifests/postgresql/backup\_pgbouncer.pp (check pgbouncer works) | ||
25 | - modules/profile/manifests/apache.pp (check website is accessible and ssl) | ||
26 | - modules/profile/manifests/mail.pp (check e-mails are going through) | ||
27 | - modules/profile/manifests/redis.pp (check redis is running) | ||
28 | - modules/role/\* (role-specific checks) | ||
29 | - Add redis replication and dumps | ||
30 | - Restore backups for cryptoportfolio | ||
31 | - Ensure latest by default for packages | ||
32 | - try to do a mkfs.ext4 for cloud vps | ||