From 53589b982bfb35127805c70c22da2189a566850b Mon Sep 17 00:00:00 2001 From: Matt Christiansen Date: Tue, 24 Aug 2021 16:16:56 -0700 Subject: [PATCH 1/2] Updating Zookeeper to 3.6.3 to bring in some upstream bug fixes Signed-off-by: Matt Christiansen --- docker/Dockerfile | 2 +- docker/zu/build.gradle.kts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index da6959586..2c4c12a88 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -15,7 +15,7 @@ COPY zu /zu WORKDIR /zu RUN ./gradlew --console=verbose --info shadowJar -FROM ${DOCKER_REGISTRY:+$DOCKER_REGISTRY/}zookeeper:3.6.1 +FROM ${DOCKER_REGISTRY:+$DOCKER_REGISTRY/}zookeeper:3.6.3 COPY bin /usr/local/bin RUN chmod +x /usr/local/bin/* COPY --from=0 /zu/build/libs/zu.jar /opt/libs/ diff --git a/docker/zu/build.gradle.kts b/docker/zu/build.gradle.kts index 83a2dab0b..d9629764a 100644 --- a/docker/zu/build.gradle.kts +++ b/docker/zu/build.gradle.kts @@ -12,7 +12,7 @@ repositories { dependencies { implementation(kotlin("stdlib")) - implementation("org.apache.zookeeper:zookeeper:3.6.1") + implementation("org.apache.zookeeper:zookeeper:3.6.3") } tasks.withType() { From eda040723ee18e4a51913767a1cf5b922909c7bc Mon Sep 17 00:00:00 2001 From: Matt Christiansen Date: Wed, 25 Aug 2021 18:18:44 -0700 Subject: [PATCH 2/2] Updating README Signed-off-by: Matt Christiansen --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 271a01650..91c4c02f5 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ The project is currently alpha. While no breaking API changes are currently plan ### Overview -This operator runs a Zookeeper 3.6.1 cluster, and uses Zookeeper dynamic reconfiguration to handle node membership. +This operator runs a Zookeeper 3.6.3 cluster, and uses Zookeeper dynamic reconfiguration to handle node membership. The operator itself is built with the [Operator framework](https://github.com/operator-framework/operator-sdk).