Skip to content

Commit b02de94

Browse files
timviseebashofmann
andauthored
Update chart to Qdrant 1.12.4 (#263)
* 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]>
1 parent e4f5a0f commit b02de94

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## [qdrant-1.12.4](https://github.com/qdrant/qdrant-helm/tree/qdrant-1.12.4) (2024-11-18)
4+
5+
- Update Qdrant to v1.12.4
6+
37
## [qdrant-1.12.3](https://github.com/qdrant/qdrant-helm/tree/qdrant-1.12.3) (2024-11-11)
48

59
- Update Qdrant to v1.12.2

charts/qdrant/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## [qdrant-1.12.4](https://github.com/qdrant/qdrant-helm/tree/qdrant-1.12.4) (2024-11-18)
4+
5+
- Update Qdrant to v1.12.4
6+
37
## [qdrant-1.12.3](https://github.com/qdrant/qdrant-helm/tree/qdrant-1.12.3) (2024-11-11)
48

59
- Update Qdrant to v1.12.2

charts/qdrant/Chart.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ maintainers:
1313
url: https://github.com/qdrant
1414
icon: https://qdrant.github.io/qdrant-helm/logo_with_text.svg
1515
type: application
16-
version: 1.12.3
17-
appVersion: v1.12.2
16+
version: 1.12.4
17+
appVersion: v1.12.4
1818
annotations:
1919
artifacthub.io/category: database
2020
artifacthub.io/changes: |
2121
- kind: added
22-
description: Update Qdrant to v1.12.2
22+
description: Update Qdrant to v1.12.4

test/integration/default_installation.bats

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,10 @@ setup_file() {
99
}
1010

1111
@test "no startup warnings in logs" {
12-
skip "Skip for 1.12.2 which has a known warning"
1312
run kubectl logs -n qdrant-helm-integration qdrant-0
1413
[ $status -eq 0 ]
1514
[[ "${output}" =~ .*INFO.* ]]
16-
if [[ ! "${output}" =~ .*WARN.* ]]; then
15+
if [[ "${output}" =~ .*WARN.* ]]; then
1716
echo "Found warning output:"
1817
echo "${output}"
1918
return 1

0 commit comments

Comments
 (0)