1
1
mirror of https://gitlab.archlinux.org/archlinux/infrastructure.git synced 2024-09-19 21:41:41 +02:00
Official Arch Linux Infrastructure Repository
Go to file
Sven-Hendrik Haase 9b9ddf415e Add note about needing git packages
I realize this is less than ideal but I think we can accept it for the short time until the required releases are stable
2019-03-24 23:52:35 +01:00
docs Update SSH host keys 2019-03-22 11:24:16 +01:00
group_vars Add terraform_state role 2019-03-24 20:54:57 +01:00
host_vars Update dragon's network interface name 2019-03-19 23:31:41 +02:00
library Fix dbscripts dir generation for python3 2018-05-31 10:54:36 +02:00
misc Allow ansible to use the hcloud token 2019-03-24 23:11:01 +01:00
packer Allow ansible to use the hcloud token 2019-03-24 23:11:01 +01:00
playbooks Merge branch 'master' of ssh://git.archlinux.org/srv/git/infrastructure 2019-03-24 20:54:59 +01:00
plugins/callback plugins: add auto_tags plugin 2017-12-07 14:14:33 +01:00
pubkeys Revert "Add my dragon ssh key" 2019-03-20 21:59:18 +01:00
roles Add terraform_state role 2019-03-24 20:54:57 +01:00
terraform Add note about needing git packages 2019-03-24 23:52:35 +01:00
.gitignore Add basic terraform config 2019-02-14 06:45:18 +01:00
.gitmodules common: Add checkservices script 2016-08-01 16:09:51 +02:00
ansible.cfg Allow ansible to use the hcloud token 2019-03-24 23:11:01 +01:00
hosts Add terraform_state role 2019-03-24 20:54:57 +01:00
inventory_hcloud.yml Allow ansible to use the hcloud token 2019-03-24 23:11:01 +01:00
README.md Add note about needing git packages 2019-03-24 23:52:35 +01:00

Arch Infrastructure

This repository contains the complete collection of ansible playbooks and roles for the Arch Linux infrastructure.

It also contains git submodules so you have to run git submodule update --init --recursive after cloning or some tasks will fail to run.

Requirements

For the time being, to run all of this you'll need terraform-git because of the pg backend and ansible-git because of the dynamic hcloud provider module. This is temporary and the next releases of these packages will contain the modules in a stable version.

Instructions

All systems are set up the same way. For the first time setup in the Hetzner rescue system, run the provisioning script: ansible-playbook playbooks/tasks/install-arch.yml -l $host. The provisioning script configures a sane basic systemd with sshd. By design, it is NOT idempotent. After the provisioning script has run, it is safe to reboot.

Once in the new system, run the regular playbook: HCLOUD_TOKEN=$(misc/get_hcloud_api_key_ansible.sh) ansible-playbook playbooks/$hostname.yml. This playbook is the one regularity used for administrating the server and is entirely idempotent.

Note about first time certificates

The first time a certificate is issued, you'll have to do this manually by yourself. First, configure the DNS to point to the new server and then run a playbook onto the server which includes the nginx role. Then on the server, it is necessary to run the following once:

certbot certonly --email webmaster@archlinux.org --agree-tos --rsa-key-size 4096 --renew-by-default --webroot -w /var/lib/letsencrypt/ -d <domain-name>

Note that some roles already run this automatically.

Note about packer

We use packer to build snapshots on hcloud to use as server base images. In order to use this, you need to install packer and then run

packer build -var $(./misc/get_hcloud_api_key_packer.sh) packer/archlinux.json

This will take some time after which a new snapshot will have been created on the primary hcloud archlinux project.

Note about terraform

We use terraform to provision a part of the infrastructure on hcloud. In order to use this, you need to install terraform and then run

terraform plan -var $(./misc/get_hcloud_api_key_packer.sh) terraform

This will show you planned changes between the current infrastructure and the desired infrastructure. You can then run

terraform apply -var $(./packer/get_hcloud_api_key_packer.sh) terraform

to actually apply your changes.

Note about opendkim

The opendkim DNS data has to be added to DNS manually. The roles verifies that the DNS is correct before starting opendkim.

The file that has to be added to the zone is /etc/opendkim/private/$selector.txt.

Finding servers requiring security updates

Arch-audit can be used to find servers in need of updates for security issues.

ansible all -a "arch-audit -u"

Updating servers

The following steps should be used to update our managed servers:

  • pacman -Syu
  • manually update the kernel, since it is in IgnorePkg by default
  • sync
  • checkservices
  • reboot

Servers

vostok

Services

  • backups

orion

Services

  • repos/sync (repos.archlinux.org)
  • sources (sources.archlinux.org)
  • archive (archive.archlinux.org)
  • torrent tracker hefurd (tracker.archlinux.org)

apollo

Services

  • bbs (bbs.archlinux.org)
  • wiki (wiki.archlinux.org)
  • aur (aur.archlinux.org)
  • flyspray (bugs.archlinux.org)
  • mailman
  • planet (planet.archlinux.org)
  • bugs (bugs.archlinux.org)
  • archweb
  • patchwork
  • projects (projects.archlinux.org)

soyuz

Services

  • build server (pkgbuild.com)
  • releng
  • sogrep
  • /~user/ webhost
  • irc bot (phrik)
  • quassel core
  • matrix
  • docker images
  • arch boxes (packer)

Ansible repo workflows

Replace vault password and change vaulted passwords

  • Generate a new key and save it as ./new-vault-pw: pwgen -s 64 1 > new-vault-pw
  • for i in $(ag ANSIBLE_VAULT -l); do ansible-vault rekey --new-vault-password-file new-vault-pw $i; done
  • Change the key in misc/vault-password.gpg
  • rm new-vault-pw