Update chart to Qdrant 1.12.2 (#262)

* Update chart to Qdrant 1.12.2

* Add better test output

* Skip tests for 1.12.2

* Fix test
This commit is contained in:
Bastian Hofmann
2024-11-11 11:51:35 +01:00
committed by GitHub
parent 758354f0eb
commit e4f5a0fdf9
4 changed files with 17 additions and 4 deletions

View File

@@ -1,5 +1,9 @@
# Changelog
## [qdrant-1.12.3](https://github.com/qdrant/qdrant-helm/tree/qdrant-1.12.3) (2024-11-11)
- Update Qdrant to v1.12.2
## [qdrant-1.12.2](https://github.com/qdrant/qdrant-helm/tree/qdrant-1.12.2) (2024-10-28)
- Fix release

View File

@@ -1,5 +1,9 @@
# Changelog
## [qdrant-1.12.3](https://github.com/qdrant/qdrant-helm/tree/qdrant-1.12.3) (2024-11-11)
- Update Qdrant to v1.12.2
## [qdrant-1.12.2](https://github.com/qdrant/qdrant-helm/tree/qdrant-1.12.2) (2024-10-28)
- Fix release

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: 1.12.2
appVersion: v1.12.1
version: 1.12.3
appVersion: v1.12.2
annotations:
artifacthub.io/category: database
artifacthub.io/changes: |
- kind: added
description: Update Qdrant to v1.12.1
description: Update Qdrant to v1.12.2

View File

@@ -9,10 +9,15 @@ setup_file() {
}
@test "no startup warnings in logs" {
skip "Skip for 1.12.2 which has a known warning"
run kubectl logs -n qdrant-helm-integration qdrant-0
[ $status -eq 0 ]
[[ "${output}" =~ .*INFO.* ]]
[[ ! "${output}" =~ .*WARN.* ]]
if [[ ! "${output}" =~ .*WARN.* ]]; then
echo "Found warning output:"
echo "${output}"
return 1
fi
}
@test "no startup errors in logs" {