Skip to content

Commit

Permalink
Update chart to Qdrant 1.12.4 (#263)
Browse files Browse the repository at this point in the history
* Bump Qdrant to 1.12.3

* Disallow warnings on startup

* Invert warning check

* Update PR for 1.2.4

---------

Co-authored-by: Bastian Hofmann <[email protected]>
  • Loading branch information
timvisee and bashofmann authored Nov 18, 2024
1 parent e4f5a0f commit b02de94
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [qdrant-1.12.4](https://github.com/qdrant/qdrant-helm/tree/qdrant-1.12.4) (2024-11-18)

- Update Qdrant to v1.12.4

## [qdrant-1.12.3](https://github.com/qdrant/qdrant-helm/tree/qdrant-1.12.3) (2024-11-11)

- Update Qdrant to v1.12.2
Expand Down
4 changes: 4 additions & 0 deletions charts/qdrant/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [qdrant-1.12.4](https://github.com/qdrant/qdrant-helm/tree/qdrant-1.12.4) (2024-11-18)

- Update Qdrant to v1.12.4

## [qdrant-1.12.3](https://github.com/qdrant/qdrant-helm/tree/qdrant-1.12.3) (2024-11-11)

- Update Qdrant to v1.12.2
Expand Down
6 changes: 3 additions & 3 deletions charts/qdrant/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.3
appVersion: v1.12.2
version: 1.12.4
appVersion: v1.12.4
annotations:
artifacthub.io/category: database
artifacthub.io/changes: |
- kind: added
description: Update Qdrant to v1.12.2
description: Update Qdrant to v1.12.4
3 changes: 1 addition & 2 deletions test/integration/default_installation.bats
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,10 @@ 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.* ]]
if [[ ! "${output}" =~ .*WARN.* ]]; then
if [[ "${output}" =~ .*WARN.* ]]; then
echo "Found warning output:"
echo "${output}"
return 1
Expand Down

0 comments on commit b02de94

Please sign in to comment.