hive-apps/projects/bi/values/qdrant.yml

48 lines
1.1 KiB
YAML
Raw Normal View History

2024-03-06 17:57:07 +00:00
image:
repository: docker.io/qdrant/qdrant
tag: "v1.12.5"
2024-03-06 17:57:07 +00:00
useUnprivilegedImage: true
env:
- name: QDRANT__TELEMETRY_DISABLED
value: "true"
ingress:
2024-12-20 19:45:33 +00:00
enabled: true
ingressClassName: "ingress-internal"
annotations:
cert-manager.io/cluster-issuer: vault-issuer
2024-03-06 17:57:07 +00:00
hosts:
2024-12-20 19:45:33 +00:00
- host: qdrant.dc
2024-03-06 17:57:07 +00:00
paths:
- path: /
pathType: Prefix
servicePort: 6333
2024-12-20 19:45:33 +00:00
tls:
- hosts:
- qdrant.dc
secretName: tls-qdrant
2024-03-06 17:57:07 +00:00
updateVolumeFsOwnership: false
persistence:
accessModes: ["ReadWriteOnce"]
size: 10Gi
2024-12-20 19:45:33 +00:00
# storageClassName:
2024-03-06 17:57:07 +00:00
# modification example for configuration to overwrite defaults
config:
cluster:
enabled: false
# api key for authentication at qdrant
# false: no api key will be configured
# true: an api key will be auto-generated
# string: the given string will be set as an apikey
apiKey: true
# read-only api key for authentication at qdrant
# false: no read-only api key will be configured
# true: an read-only api key will be auto-generated
# string: the given string will be set as a read-only apikey
readOnlyApiKey: true