Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,18 @@
node1 = cluster.add_instance(
"node1",
with_zookeeper=False,
# NOTE(vnemkov): here and below upstream uses clickhouse/clickhouse-server:24.1,
# the first Altinity Stable release after that was 24.3.5.47.altinitystable
image="altinity/clickhouse-server",
tag="24.1" if is_arm() else CLICKHOUSE_CI_MIN_TESTED_VERSION,
tag="24.3.5.47.altinitystable" if is_arm() else CLICKHOUSE_CI_MIN_TESTED_VERSION,
stay_alive=True,
with_installed_binary=True,
)
node2 = cluster.add_instance(
"node2",
with_zookeeper=False,
image="altinity/clickhouse-server",
tag="24.1" if is_arm() else CLICKHOUSE_CI_MIN_TESTED_VERSION,
tag="24.3.5.47.altinitystable" if is_arm() else CLICKHOUSE_CI_MIN_TESTED_VERSION,
stay_alive=True,
with_installed_binary=True,
)
Expand Down
Loading