1
1
mirror of https://gitlab.archlinux.org/archlinux/infrastructure.git synced 2025-01-05 09:24:12 +01:00
infrastructure/playbooks/aur-dev.archlinux.org.yml
Christian Heusel bce4ff6f69
migrate all services from redis to valkey
We do this since the redis package is soon to be deprecated:
https://lists.archlinux.org/archives/list/arch-dev-public@lists.archlinux.org/thread/2ERGX565GSSBUMADBG7DQJYNPJD5GUXD/

Signed-off-by: Christian Heusel <christian@heusel.eu>
2024-08-19 11:02:31 +02:00

21 lines
618 B
YAML

- name: Setup aur development host
hosts: '{{ aurdev_fqdn|default("none") }}'
remote_user: root
roles:
- { role: common, enable_zram_swap: true }
- { role: firewalld }
- { role: sshd }
- { role: root_ssh }
- { role: certbot }
- { role: nginx }
- { role: mariadb, mariadb_innodb_buffer_pool_size: '1G' }
- { role: sudo }
- { role: valkey }
- { role: uwsgi }
- { role: aurweb, aurweb_domain: "{{ aurdev_fqdn }}", aurweb_environment_type: 'dev' }
- { role: fail2ban }
pre_tasks:
- name: Upgrade and reboot
include_tasks: tasks/include/upgrade-server.yml