Release 0.8.2 with Qdrant 1.8.2 (#154)

* Release 0.8.2 with Qdrant 1.8.2

* Fix integration tests

* Fix integration tests
This commit is contained in:
Bastian Hofmann
2024-03-18 10:48:21 +01:00
committed by GitHub
parent 525e977055
commit e099636446
5 changed files with 25 additions and 11 deletions

View File

@@ -1,5 +1,9 @@
# Changelog
## [qdrant-0.8.2](https://github.com/qdrant/qdrant-helm/tree/qdrant-0.8.2) (2024-03-18)
- Update Qdrant to v1.8.2
## [qdrant-0.8.1](https://github.com/qdrant/qdrant-helm/tree/qdrant-0.8.1) (2024-03-09)
- Update Qdrant to v1.8.1

View File

@@ -1,5 +1,5 @@
# Changelog
## [qdrant-0.8.1](https://github.com/qdrant/qdrant-helm/tree/qdrant-0.8.1) (2024-03-09)
## [qdrant-0.8.2](https://github.com/qdrant/qdrant-helm/tree/qdrant-0.8.2) (2024-03-18)
- Update Qdrant to v1.8.1
- Update Qdrant to v1.8.2

View File

@@ -13,10 +13,10 @@ maintainers:
url: https://github.com/qdrant
icon: https://qdrant.github.io/qdrant-helm/logo_with_text.svg
type: application
version: 0.8.1
appVersion: v1.8.1
version: 0.8.2
appVersion: v1.8.2
annotations:
artifacthub.io/category: database
artifacthub.io/changes: |
- kind: added
description: Update Qdrant to v1.8.1
description: Update Qdrant to v1.8.2

View File

@@ -9,7 +9,12 @@ setup_file() {
[[ "${output}" =~ .*\"status\":\"ok\".* ]]
}
@test "api key authentication fails with key" {
run kubectl exec -n default curl -- curl -s http://qdrant.qdrant-helm-integration:6333/collections
[ "${output}" = "Invalid api-key" ]
@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" ]
}
@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" ]
}

View File

@@ -9,7 +9,12 @@ setup_file() {
[[ "${output}" =~ .*\"status\":\"ok\".* ]]
}
@test "read-only api key authentication fails with key" {
run kubectl exec -n default curl -- curl -s http://qdrant.qdrant-helm-integration:6333/collections
[ "${output}" = "Invalid api-key" ]
@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" ]
}
@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" ]
}