Skip to content

Commit

Permalink
pin zookeeper to 3.8.2 version for resolve incompatibility between cl…
Browse files Browse the repository at this point in the history
…ickhouse and zookeeper 3.9.0, see details in apache/zookeeper#1837 (comment) return `:latest` default value after resolve ClickHouse/ClickHouse#53749
  • Loading branch information
Slach committed Aug 28, 2023
1 parent 20e250c commit 1f7b423
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion test/integration/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@ services:
# - clickhouse-backup

zookeeper:
image: docker.io/zookeeper:${ZOOKEEPER_VERSION:-latest}
# @TODO back :latest default value after resolve https://github.com/ClickHouse/ClickHouse/issues/53749
image: ${ZOOKEEPER_IMAGE:-docker.io/zookeeper}:${ZOOKEEPER_VERSION:-3.8.2}
hostname: zookeeper
environment:
ZOO_4LW_COMMANDS_WHITELIST: "*"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ version: '2.4'

services:
zookeeper:
image: zookeeper:latest
# @TODO back :latest default value after resolve https://github.com/ClickHouse/ClickHouse/issues/53749
image: ${ZOOKEEPER_IMAGE:-docker.io/zookeeper}:${ZOOKEEPER_VERSION:-3.8.2}
expose:
- "2181"
environment:
Expand Down

0 comments on commit 1f7b423

Please sign in to comment.