From 9d0ef8f6f0e5974f67774b4edee8a08291255d26 Mon Sep 17 00:00:00 2001 From: Malte Sander Date: Thu, 3 Sep 2026 07:34:29 +0200 Subject: [PATCH 1/3] chore: bump yanked chacha20 --- Cargo.lock | 4 ++-- Cargo.nix | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b2197411..1987f1ec 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -334,9 +334,9 @@ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" [[package]] name = "chacha20" -version = "0.10.1" +version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81" +checksum = "65c35e4b699c7e15ccbe7ee35c005e4fc0a278d22238a2857e6ce2dadeda1b06" dependencies = [ "cfg-if", "cpufeatures 0.3.0", diff --git a/Cargo.nix b/Cargo.nix index 8c4a6b3b..716925f2 100644 --- a/Cargo.nix +++ b/Cargo.nix @@ -1036,9 +1036,9 @@ rec { }; "chacha20" = rec { crateName = "chacha20"; - version = "0.10.1"; + version = "0.10.2"; edition = "2024"; - sha256 = "108aajbvs3rwl4d0pdvq3p8ydy4pwh0rxy2z265ynwkflrmla96m"; + sha256 = "01hvvbgdmqkcgs2s4f12s9wa5h2gbq05rqvypv61azlwd55mxhv5"; authors = [ "RustCrypto Developers" ]; From 4b9882a4712ad366770727d50d9bd2ba5df725a1 Mon Sep 17 00:00:00 2001 From: Malte Sander Date: Thu, 3 Sep 2026 07:34:54 +0200 Subject: [PATCH 2/3] fix: add graceful shutdown 5s to orphaned resources test --- .../templates/kuttl/orphaned-resources/01-install-hive.yaml.j2 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/templates/kuttl/orphaned-resources/01-install-hive.yaml.j2 b/tests/templates/kuttl/orphaned-resources/01-install-hive.yaml.j2 index 7464dc42..de25c096 100644 --- a/tests/templates/kuttl/orphaned-resources/01-install-hive.yaml.j2 +++ b/tests/templates/kuttl/orphaned-resources/01-install-hive.yaml.j2 @@ -20,6 +20,9 @@ spec: {% endif %} metastore: config: + # A Pod that does not exit before the SIGKILL therefore blocks the listener PVC -> PV -> Listener + # finalizer chain long enough for the namespace deletion, and with it the whole test case, to time out. + gracefulShutdownTimeout: 5s logging: enableVectorAgent: {{ lookup('env', 'VECTOR_AGGREGATOR') | length > 0 }} roleGroups: From b23531a144da00095fd72e96390e7bcf685e88b2 Mon Sep 17 00:00:00 2001 From: Malte Sander Date: Thu, 3 Sep 2026 07:35:22 +0200 Subject: [PATCH 3/3] fix(test): sort envvars alphabetically in assert --- tests/templates/kuttl/smoke/60-assert.yaml.j2 | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/tests/templates/kuttl/smoke/60-assert.yaml.j2 b/tests/templates/kuttl/smoke/60-assert.yaml.j2 index d98d3af5..f7bcf438 100644 --- a/tests/templates/kuttl/smoke/60-assert.yaml.j2 +++ b/tests/templates/kuttl/smoke/60-assert.yaml.j2 @@ -208,6 +208,12 @@ spec: - pipefail - -c env: + - name: COMMON_VAR + value: group-value + - name: CONTAINERDEBUG_LOG_DIRECTORY + value: /stackable/log/containerdebug + - name: GROUP_VAR + value: group-value - name: HADOOP_HEAPSIZE value: "614" - name: HADOOP_OPTS @@ -215,22 +221,16 @@ spec: -javaagent:/stackable/jmx/jmx_prometheus_javaagent.jar=9084:/stackable/jmx/jmx_hive_config.yaml -Djavax.net.ssl.trustStore=/stackable/truststore.p12 -Djavax.net.ssl.trustStorePassword=changeit -Djavax.net.ssl.trustStoreType=pkcs12 - - name: CONTAINERDEBUG_LOG_DIRECTORY - value: /stackable/log/containerdebug - - name: METADATA_DATABASE_USERNAME + - name: METADATA_DATABASE_PASSWORD valueFrom: secretKeyRef: - key: username + key: password name: hive-credentials - - name: METADATA_DATABASE_PASSWORD + - name: METADATA_DATABASE_USERNAME valueFrom: secretKeyRef: - key: password + key: username name: hive-credentials - - name: COMMON_VAR - value: group-value - - name: GROUP_VAR - value: group-value - name: ROLE_VAR value: role-value imagePullPolicy: IfNotPresent