Skip to content

Commit

Permalink
fix(qdrant): static api key
Browse files Browse the repository at this point in the history
  • Loading branch information
nold committed Jan 29, 2025
1 parent 917f44d commit 9ed6a92
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion projects/bi/project.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
21 changes: 11 additions & 10 deletions projects/bi/values/qdrant.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 9ed6a92

Please sign in to comment.