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