No description
Find a file
2025-10-06 22:52:04 +00:00
defaults initial format 2025-10-06 22:52:04 +00:00
meta initial format 2025-10-06 22:52:04 +00:00
tasks initial format 2025-10-06 22:52:04 +00:00
.gitignore initial format 2025-10-06 22:52:04 +00:00
README.md initial format 2025-10-06 22:52:04 +00:00

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