mirror of
https://github.com/nold360/hive-apps
synced 2025-02-01 21:02:50 +00:00
fix(qdrant): static api key
This commit is contained in:
parent
917f44d8ff
commit
a2d011b2a7
3 changed files with 14 additions and 13 deletions
|
@ -25,7 +25,7 @@ apps:
|
|||
namespace: bi
|
||||
repoURL: https://qdrant.github.io/qdrant-helm
|
||||
chart: qdrant
|
||||
targetRevision: 1.13.1
|
||||
targetRevision: 1.13.2
|
||||
|
||||
- name: valkey
|
||||
namespace: bi
|
||||
|
|
|
@ -13,7 +13,7 @@ controllers:
|
|||
BIBOT_QDRANT__API_KEY:
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
name: qdrant-apikey
|
||||
name: qdrant-secret
|
||||
key: api-key
|
||||
BIBOT_VALKEY__HOST: valkey-primary.bi.svc.cluster.local
|
||||
BIBOT_VALKEY__PASSWORD:
|
||||
|
@ -58,7 +58,7 @@ controllers:
|
|||
BIBOT_QDRANT__API_KEY:
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
name: qdrant-apikey
|
||||
name: qdrant-secret
|
||||
key: api-key
|
||||
BIBOT_VALKEY__PASSWORD:
|
||||
valueFrom:
|
||||
|
|
|
@ -35,13 +35,14 @@ 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
|
||||
apiKey:
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
name: qdrant-secret
|
||||
key: api-key
|
||||
|
||||
readOnlyApiKey:
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
name: qdrant-secret
|
||||
key: read-only-api-key
|
||||
|
|
Loading…
Add table
Reference in a new issue