No description
| defaults | ||
| meta | ||
| tasks | ||
| .gitignore | ||
| README.md | ||
ansible-roles-plex
This role deploys plex vector database
Task Configuration
- name: Setup plex
hosts: somehost
become: true
roles:
- role: plex
- role: firewalld
firewalld_add:
- name: public
ports:
- 8000/tcp
Deployment and Removal
systemctl --user stop container-plex.service
Deploy
ansible-playbook -i hosts site.yml --tags=firewalld,plex --limit=somehost
Remove
ansible-playbook -i hosts site.yml --tags=firewalld,plex --extra-vars "container_state=absent firewall_action=remove" --limit=somehost