Release 0.8.5 with Qdrant 1.9.0 (#169)

Co-authored-by: Bastian Hofmann <mail@bastianhofmann.de>
This commit is contained in:
SamirPS
2024-04-25 18:48:43 +02:00
committed by GitHub
parent e3037d206a
commit 4ead93adbe
5 changed files with 17 additions and 12 deletions

View File

@@ -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

View File

@@ -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)

View File

@@ -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

View File

@@ -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" ]
}

View File

@@ -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" ]
}