Skip to content

Commit

Permalink
Release 0.8.5 with Qdrant 1.9.0 (#169)
Browse files Browse the repository at this point in the history
Co-authored-by: Bastian Hofmann <[email protected]>
  • Loading branch information
SamirPS and bashofmann authored Apr 25, 2024
1 parent e3037d2 commit 4ead93a
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 12 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [qdrant-0.8.5](https://github.com/qdrant/qdrant-helm/tree/qdrant-0.8.5) (2024-04-25)

- Update Qdrant to v1.9.0
- Allow ports to be configured as NodePort [#165](https://github.com/qdrant/qdrant-helm/pull/165)

## [qdrant-0.8.4](https://github.com/qdrant/qdrant-helm/tree/qdrant-0.8.4) (2024-04-03)

- Update Qdrant to v1.8.4
Expand Down
6 changes: 3 additions & 3 deletions charts/qdrant/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## [qdrant-0.8.4](https://github.com/qdrant/qdrant-helm/tree/qdrant-0.8.4) (2024-04-03)
## [qdrant-0.8.5](https://github.com/qdrant/qdrant-helm/tree/qdrant-0.8.5) (2024-04-25)

- Update Qdrant to v1.8.4
- Allow configurable podManagementPolicy [#158](https://github.com/qdrant/qdrant-helm/pull/158)
- Update Qdrant to v1.9.0
- Allow ports to be configured as NodePort [#165](https://github.com/qdrant/qdrant-helm/pull/165)
10 changes: 5 additions & 5 deletions charts/qdrant/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ maintainers:
url: https://github.com/qdrant
icon: https://qdrant.github.io/qdrant-helm/logo_with_text.svg
type: application
version: 0.8.4
appVersion: v1.8.4
version: 0.8.5
appVersion: v1.9.0
annotations:
artifacthub.io/category: database
artifacthub.io/changes: |
- kind: added
description: Update Qdrant to v1.8.4
description: Update Qdrant to v1.9.0
- kind: added
description: Allow configurable podManagementPolicy
description: Allow ports to be configured as NodePort
links:
- name: Github Issue
url: https://github.com/qdrant/qdrant-helm/pull/158
url: https://github.com/qdrant/qdrant-helm/pull/165
4 changes: 2 additions & 2 deletions test/integration/api_key.bats
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ setup_file() {

@test "api key authentication fails with no key" {
run kubectl exec -n default curl -- curl -s -w " - %{response_code}" http://qdrant.qdrant-helm-integration:6333/collections
[ "${output}" = "Must provide an API key or an Authorization bearer token - 403" ]
[ "${output}" = "Must provide an API key or an Authorization bearer token - 401" ]
}

@test "api key authentication fails with wrong key" {
run kubectl exec -n default curl -- curl -s -w " - %{response_code}" http://qdrant.qdrant-helm-integration:6333/collections -H 'api-key: invalid'
[ "${output}" = "Invalid API key or JWT token - 403" ]
[ "${output}" = "Invalid API key or JWT - 401" ]
}
4 changes: 2 additions & 2 deletions test/integration/read_only_api_key.bats
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ setup_file() {

@test "read-only api key authentication fails with no key" {
run kubectl exec -n default curl -- curl -s -w " - %{response_code}" http://qdrant.qdrant-helm-integration:6333/collections
[ "${output}" = "Must provide an API key or an Authorization bearer token - 403" ]
[ "${output}" = "Must provide an API key or an Authorization bearer token - 401" ]
}

@test "read-only api key authentication fails with wrong key" {
run kubectl exec -n default curl -- curl -s -w " - %{response_code}" http://qdrant.qdrant-helm-integration:6333/collections -H 'api-key: invalid'
[ "${output}" = "Invalid API key or JWT token - 403" ]
[ "${output}" = "Invalid API key or JWT - 401" ]
}

0 comments on commit 4ead93a

Please sign in to comment.