hive-apps/projects/bi/values/qdrant.yml
2024-12-20 20:46:14 +01:00

47 lines
1.1 KiB
YAML

image:
repository: docker.io/qdrant/qdrant
tag: "v1.12.5"
useUnprivilegedImage: true
env:
- name: QDRANT__TELEMETRY_DISABLED
value: "true"
ingress:
enabled: true
ingressClassName: "ingress-internal"
annotations:
cert-manager.io/cluster-issuer: vault-issuer
hosts:
- host: qdrant.dc
paths:
- path: /
pathType: Prefix
servicePort: 6333
tls:
- hosts:
- qdrant.dc
secretName: tls-qdrant
updateVolumeFsOwnership: false
persistence:
accessModes: ["ReadWriteOnce"]
size: 10Gi
# storageClassName:
# 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