Ansible configuration for the Netz39 infrastructure
Find a file
2022-11-13 17:27:44 +01:00
files Add the Asterisk sound files 2022-08-05 17:23:48 +02:00
group_vars/all 🔨 Rename ag_timezone → timezone 2022-11-07 16:35:41 +01:00
host_vars Setup grafana kiosk on hobbes.n39.eu 2022-11-13 17:13:34 +01:00
roles Add option to set ProxyPreserveHost 2022-11-12 13:32:25 +01:00
templates Setup grafana kiosk on hobbes.n39.eu 2022-11-13 17:13:34 +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
configure-grafana.yml update requirements.yml to correctly install collection 2022-11-12 15:31:51 +01:00
group-all.yml 🔨 Rename ag_timezone → timezone 2022-11-07 16: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 admins to proxmox user permissions file 2022-11-11 14:56:02 +01:00
host-hobbes.yml Setup grafana kiosk on hobbes.n39.eu 2022-11-13 17:13:34 +01:00
host-holmium.yml add https ingress for grafana 2022-11-11 14:52:37 +01:00
host-krypton.yml 🔧 Add timezone information to docker containers 2022-11-10 13:05:18 +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 🔧 Add volume for grafana configuration 2022-11-12 16:24:05 +01:00
host-radon.yml 🔧 Add timezone information to docker containers 2022-11-10 13:05:18 +01:00
host-tau.yml 🔧 Add timezone information to docker containers 2022-11-10 13:05:18 +01:00
host-unicorn.yml 🔧 Add timezone information to docker containers 2022-11-10 13:05:18 +01:00
inventory.yml 🔧 Add hobbes.n39.eu to inventory 2022-11-12 17:02:42 +01:00
main.yml 🔧 Link hobbes playbook in main.yml 2022-11-12 17:02:42 +01:00
README.md Merge pull request 'docs: add command to verify changes' (!112) from add-verification-docs into master 2022-11-12 15:43:51 +01:00
requirements.yml update requirements.yml to correctly install collection 2022-11-12 15:31:51 +01: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 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 --ask-vault-pass main.yml

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

Verify Changes

ansible-lint main.yml
ansible-playbook --ask-vault-pass main.yml --check --diff

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.