Skip to content

Commit dc07a2a

Browse files
authored
chore: Bump zookeeper version for 25.11.0 (#850)
1 parent a13102f commit dc07a2a

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

examples/simple-nifi-cluster.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
name: simple-zk
88
spec:
99
image:
10-
productVersion: 3.9.3
10+
productVersion: 3.9.4
1111
servers:
1212
roleGroups:
1313
default:

tests/templates/kuttl/iceberg/40-create-iceberg-tables.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
- pipefail
1616
- -c
1717
- |
18-
cat << 'EOF' | java -jar trino-cli-*-executable.jar --server https://trino-coordinator:8443 --insecure --user admin
18+
cat << 'EOF' | ./trino-cli --server https://trino-coordinator:8443 --insecure --user admin
1919
CREATE SCHEMA IF NOT EXISTS iceberg.s3 WITH (location = 's3a://demo/lakehouse/s3');
2020
CREATE TABLE IF NOT EXISTS iceberg.s3.greetings (hello varchar);
2121
CREATE SCHEMA IF NOT EXISTS iceberg.hdfs WITH (location = 'hdfs:/lakehouse/hdfs');

tests/templates/kuttl/iceberg/70-check-iceberg-tables.yaml.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ spec:
1616
- -c
1717
- |
1818
for SCHEMA in iceberg.s3 iceberg.hdfs; do
19-
COUNT=$(cat << EOF | java -jar trino-cli-*-executable.jar --server https://trino-coordinator:8443 --insecure --user admin
19+
COUNT=$(cat << EOF | ./trino-cli --server https://trino-coordinator:8443 --insecure --user admin
2020
SELECT COUNT(*) FROM $SCHEMA.greetings WHERE hello = 'world from NiFi :)';
2121
EOF
2222
)

tests/test-definition.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,10 @@ dimensions:
3939
- name: zookeeper
4040
values:
4141
- 3.9.3
42+
- 3.9.4
4243
- name: zookeeper-latest
4344
values:
44-
- 3.9.3
45+
- 3.9.4
4546
- name: opa-l
4647
values:
4748
- 1.8.0

0 commit comments

Comments
 (0)