No description
Find a file
2025-10-06 22:42:34 +00:00
defaults update common format 2025-10-06 22:42:34 +00:00
meta weaviate vector database 2025-01-28 15:34:43 +00:00
tasks update common format 2025-10-06 22:42:34 +00:00
.gitignore update common format 2025-10-06 22:42:34 +00:00
README.md weaviate vector database 2025-01-28 15:34:43 +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