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