Skip to content

Commit

Permalink
Disable qdrant telemetry by default (#121)
Browse files Browse the repository at this point in the history
* Disable qdrant telemetry by default

Signed-off-by: Marcel Coetzee <marcel@mooncoon.com>

* Add K8s config

Signed-off-by: Marcel Coetzee <marcel@mooncoon.com>

---------

Signed-off-by: Marcel Coetzee <marcel@mooncoon.com>
  • Loading branch information
Pipboyguy committed Jul 1, 2023
1 parent af329d3 commit ab83f5d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions deployment/docker_compose/docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ services:
restart: always
env_file:
- .env
environment:
- QDRANT__TELEMETRY_DISABLED=true
ports:
- "6333:6333"
volumes:
Expand Down
2 changes: 2 additions & 0 deletions deployment/docker_compose/docker-compose.prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ services:
restart: always
env_file:
- .env
environment:
- QDRANT__TELEMETRY_DISABLED=true
volumes:
- qdrant_volume:/qdrant/storage
search_engine:
Expand Down
3 changes: 3 additions & 0 deletions deployment/kubernetes/qdrant-service-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ spec:
volumeMounts:
- name: qdrant-storage
mountPath: /qdrant/storage
env:
- name: QDRANT__TELEMETRY_DISABLED
value: true
volumes:
- name: qdrant-storage
persistentVolumeClaim:
Expand Down

1 comment on commit ab83f5d

@vercel
Copy link

@vercel vercel bot commented on ab83f5d Jul 1, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.