2021-03-26 21:58:55 -05:00
|
|
|
#!/usr/bin/env ansible-playbook
|
|
|
|
# vim:ft=ansible:
|
|
|
|
---
|
|
|
|
# Mass storage Pis
|
|
|
|
- hosts: pi-storage-1.desu.ltd
|
|
|
|
tasks:
|
|
|
|
- name: assure mount directory
|
|
|
|
file: path=/data state=directory
|
|
|
|
tags: [ pis, storage ]
|
|
|
|
- name: assure mount
|
|
|
|
mount: path=/data src=LABEL=mass state=mounted fstype=ext4
|
|
|
|
tags: [ pis, storage ]
|
|
|
|
- name: assure directories in mount
|
|
|
|
file: path=/data/{{ item }} state=directory
|
|
|
|
with_items:
|
|
|
|
- nfs
|
|
|
|
- postgresql
|
|
|
|
tags: [ pis, storage ]
|
|
|
|
- name: assure symlinks to directories in mount
|
|
|
|
file: path={{ item.path }} src=/data/{{ item.src }} state=link
|
|
|
|
with_items:
|
|
|
|
- { path: /var/lib/postgresql, src: postgresql }
|
|
|
|
- { path: /srv/nfs, src: nfs }
|
|
|
|
tags: [ pis, storage ]
|
|
|
|
roles:
|
2021-05-01 19:44:28 -05:00
|
|
|
# - role: backup
|
|
|
|
# vars:
|
|
|
|
# backup_script: s3pgdump
|
2021-03-26 21:58:55 -05:00
|
|
|
- role: backup
|
|
|
|
vars:
|
2021-05-01 19:44:28 -05:00
|
|
|
backup_s3backup_list_extra:
|
|
|
|
- /srv/nfs/k8s/default/web-9iron-pvc
|
|
|
|
- /srv/nfs/k8s/default/web-grafana-pvc
|
|
|
|
- /srv/nfs/k8s/default/web-jackett-config-pvc
|
|
|
|
- /srv/nfs/k8s/default/web-netbox-pvc
|
|
|
|
- /srv/nfs/k8s/default/web-transmission-config-pvc
|
|
|
|
- /var/lib/postgresql
|
|
|
|
backup_time: "Mon *-*-* 02:00:00"
|
2021-03-26 21:58:55 -05:00
|
|
|
tags: [ backup ]
|
|
|
|
- role: motd
|
|
|
|
vars:
|
|
|
|
motd_watch_services_extra:
|
|
|
|
- docker
|
|
|
|
- postgresql
|
|
|
|
- role: postgresql
|
|
|
|
vars:
|
|
|
|
postgresql_global_config_options:
|
|
|
|
- option: listen_addresses
|
|
|
|
value: 192.168.103.1,172.23.103.1
|
|
|
|
postgresql_hba_entries:
|
|
|
|
- { type: local, database: all, user: postgres, auth_method: peer }
|
|
|
|
- { type: local, database: all, user: all, auth_method: md5 }
|
|
|
|
- { type: host, database: all, user: all, address: '127.0.0.0/8', auth_method: md5 }
|
|
|
|
- { type: host, database: all, user: all, address: '::1/128', auth_method: md5 }
|
|
|
|
# Used for internal access from other nodes
|
|
|
|
- { type: host, database: all, user: all, address: '192.168.0.0/16', auth_method: md5 }
|
|
|
|
# Allow hosts over zerotier
|
|
|
|
- { type: host, database: all, user: all, address: '172.23.0.0/16', auth_method: md5 }
|
|
|
|
postgresql_users:
|
2021-04-02 16:31:48 -05:00
|
|
|
- name: gulagbot
|
|
|
|
password: "{{ secret_gulagbot_local_db_pass }}"
|
2021-03-26 21:58:55 -05:00
|
|
|
- name: grafana
|
|
|
|
password: "{{ secret_grafana_local_db_pass }}"
|
|
|
|
- name: netbox
|
|
|
|
password: "{{ secret_netbox_local_db_pass }}"
|
|
|
|
postgresql_databases:
|
2021-04-02 16:31:48 -05:00
|
|
|
- name: gulagbot
|
|
|
|
owner: gulagbot
|
2021-03-26 21:58:55 -05:00
|
|
|
- name: grafana
|
|
|
|
owner: grafana
|
|
|
|
- name: netbox
|
|
|
|
owner: netbox
|
|
|
|
tags: [ pis, storage, psql ]
|
|
|
|
- role: nfs
|
|
|
|
vars:
|
|
|
|
nfs_exports:
|
|
|
|
- "/srv/nfs 192.168.0.0/16(ro,no_root_squash,sync) 172.23.0.0/16(ro,no_root_squash,sync)"
|
|
|
|
- "/srv/nfs/bulk 192.168.0.0/16(rw,no_root_squash,sync) 172.23.0.0/16(rw,no_root_squash,sync)"
|
|
|
|
- "/srv/nfs/bulk/media 192.168.0.0/16(rw,no_root_squash,sync) 172.23.0.0/16(rw,no_root_squash,sync)"
|
|
|
|
- "/srv/nfs/k8s 192.168.0.0/16(rw,no_root_squash,sync) 172.23.0.0/16(ro,no_root_squash,sync)"
|
|
|
|
tags: [ pis, storage, nfs ]
|