Ansible configuration for the Netz39 infrastructure
Find a file
2022-11-07 15:33:44 +00:00
files Add the Asterisk sound files 2022-08-05 17:23:48 +02:00
group_vars/all feat: separate vault vars for group all 2022-11-01 18:29:23 +01:00
host_vars move krypton.n39.eu vars to host_vars directory 2022-11-04 14:58:46 +01:00
roles fix file permissions for setup_http_site_proxy 2022-10-28 21:19:48 +02:00
templates add a playbook to configure ssh to use the ssh gateway for the internal systems 2022-11-05 09:14:48 +01:00
.editorconfig Add EditorConfig configuration file 2022-01-08 13:25:36 +01:00
.mailmap Introduce gitmailmap 2022-10-26 21:45:47 +02:00
.yamllint yamllint config and fixes 2020-12-28 22:53:53 +01:00
ansible.cfg feat: add nicer rendering to ansible config 2022-10-24 16:33:16 +00:00
group-all.yml 🚚 Rename group playbooks to group-* 2022-11-04 22:35:41 +01:00
group-proxmox.yml 🚚 Rename group playbooks to group-* 2022-11-04 22:35:41 +01:00
host-beaker.yml feat: 🎉add host beaker 2022-11-06 20:08:00 +01:00
host-holmium.yml 🚚 Rename host playbooks to host-* 2022-11-04 22:34:37 +01:00
host-krypton.yml 🚚 Rename host playbooks to host-* 2022-11-04 22:34:37 +01:00
host-oganesson.yml 🚚 Rename host playbooks to host-* 2022-11-04 22:34:37 +01:00
host-platon.yml 🚚 Rename host playbooks to host-* 2022-11-04 22:34:37 +01:00
host-pottwal.yml 🚚 Rename host playbooks to host-* 2022-11-04 22:34:37 +01:00
host-radon.yml 🚚 Rename host playbooks to host-* 2022-11-04 22:34:37 +01:00
host-tau.yml Change tau docker data directory to match other hosts 2022-11-07 15:16:43 +01:00
host-unicorn.yml 🚚 Rename host playbooks to host-* 2022-11-04 22:34:37 +01:00
inventory.yml feat: 🎉add host beaker 2022-11-06 20:08:00 +01:00
main.yml feat: 🎉add host beaker 2022-11-06 20:08:00 +01:00
README.md add a playbook to configure ssh to use the ssh gateway for the internal systems 2022-11-05 09:14:48 +01:00
requirements.yml Fix trivial yamllint whitespace warnings/errors 2022-10-26 18:56:20 +02:00
setup-ssh.yml add a playbook to configure ssh to use the ssh gateway for the internal systems 2022-11-05 09:14:48 +01:00

Ansible configuration for the Netz39 infrastructure

This call lists all hosts defined in the inventory:

ansible -i inventory.yml all --list-hosts

Setup

ansible-galaxy install -r requirements.yml

Setup SSH Access to hosts

LOGUSER=<loguser>
SSH_KEY=<absolute/path/to/ssh/private/key>
ansible-playbook setup-ssh.yml --ask-vault-pass -e "setup_ssh_logname=$LOGUSER" -e "setup_ssh_key=$SSH_KEY"

Edit vault encrypted vars files

ansible-vault edit group_vars/all/vault

Call with

ansible-playbook -i inventory.yml --ask-vault-pass main.yml

You need to provide a user with sudo rights and the vault password.

HTTPS ingress configuration

HTTPS ingress is controlled by the server holmium and forwarded to the configured servers.

To set up a new HTTPS vhost, the following steps need to be taken:

  1. Select a domain (for internal services we use sub-domains of .n39.eu).
  2. Create an external CNAME from this domain to dyndns.n39.eu.
  3. Create an internal DNS entry in the Descartes DNS config. This is usually an alias on an existing server.
  4. Add the entry to the holmium playbook.
  5. Set up Dehydrated and vhost on the target host, e.g. using setup_http_site_proxy.

Do not forget to execute all playbooks with relevant changes.