fix(qdrant): static api key

This commit is contained in:
nold 2025-01-29 11:16:26 +01:00
parent 917f44d8ff
commit a2d011b2a7
3 changed files with 14 additions and 13 deletions

View file

@ -25,7 +25,7 @@ apps:
namespace: bi namespace: bi
repoURL: https://qdrant.github.io/qdrant-helm repoURL: https://qdrant.github.io/qdrant-helm
chart: qdrant chart: qdrant
targetRevision: 1.13.1 targetRevision: 1.13.2
- name: valkey - name: valkey
namespace: bi namespace: bi

View file

@ -13,7 +13,7 @@ controllers:
BIBOT_QDRANT__API_KEY: BIBOT_QDRANT__API_KEY:
valueFrom: valueFrom:
secretKeyRef: secretKeyRef:
name: qdrant-apikey name: qdrant-secret
key: api-key key: api-key
BIBOT_VALKEY__HOST: valkey-primary.bi.svc.cluster.local BIBOT_VALKEY__HOST: valkey-primary.bi.svc.cluster.local
BIBOT_VALKEY__PASSWORD: BIBOT_VALKEY__PASSWORD:
@ -58,7 +58,7 @@ controllers:
BIBOT_QDRANT__API_KEY: BIBOT_QDRANT__API_KEY:
valueFrom: valueFrom:
secretKeyRef: secretKeyRef:
name: qdrant-apikey name: qdrant-secret
key: api-key key: api-key
BIBOT_VALKEY__PASSWORD: BIBOT_VALKEY__PASSWORD:
valueFrom: valueFrom:

View file

@ -35,13 +35,14 @@ config:
cluster: cluster:
enabled: false enabled: false
# api key for authentication at qdrant apiKey:
# false: no api key will be configured valueFrom:
# true: an api key will be auto-generated secretKeyRef:
# string: the given string will be set as an apikey name: qdrant-secret
apiKey: true key: api-key
# read-only api key for authentication at qdrant
# false: no read-only api key will be configured readOnlyApiKey:
# true: an read-only api key will be auto-generated valueFrom:
# string: the given string will be set as a read-only apikey secretKeyRef:
readOnlyApiKey: true name: qdrant-secret
key: read-only-api-key