No description
Find a file
2026-04-05 19:45:53 +00:00
defaults initial commit 2026-04-05 19:45:53 +00:00
meta initial commit 2026-04-05 19:45:53 +00:00
tasks initial commit 2026-04-05 19:45:53 +00:00
.gitignore initial commit 2026-04-05 19:45:53 +00:00
README.md initial commit 2026-04-05 19:45:53 +00:00

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