File tree Expand file tree Collapse file tree 4 files changed +9
-7
lines changed Expand file tree Collapse file tree 4 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ The project is currently alpha. While no breaking API changes are currently plan
2727
2828### Overview
2929
30- This operator runs a Zookeeper 3.6.1 cluster, and uses Zookeeper dynamic reconfiguration to handle node membership.
30+ This operator runs a Zookeeper 3.6.2 cluster, and uses Zookeeper dynamic reconfiguration to handle node membership.
3131
3232The operator itself is built with the [ Operator framework] ( https://github.com/operator-framework/operator-sdk ) .
3333
Original file line number Diff line number Diff line change 11replicas : 3
22
33image :
4- repository : pravega /zookeeper
5- tag : 0.2.8
4+ repository : adobe /zookeeper
5+ tag : 3.6.2
66 pullPolicy : IfNotPresent
77
88domainName :
Original file line number Diff line number Diff line change 88# http://www.apache.org/licenses/LICENSE-2.0
99#
1010
11- FROM openjdk:11-jdk
11+ FROM openjdk:14.0.2-slim
1212RUN mkdir /zu
1313COPY zu /zu
1414WORKDIR /zu
1515RUN ./gradlew --console=verbose --info shadowJar
1616
17- FROM zookeeper:3.6.1
17+ # use forked base zookeeper 3.6.2 docker image
18+ # that runs on openjdk-14.0.2 instead of openjdk-11
19+ FROM amuraru/zookeeper:3.6.2
1820COPY bin /usr/local/bin
1921RUN chmod +x /usr/local/bin/*
2022COPY --from=0 /zu/build/libs/zu.jar /root/
2123
2224RUN apt-get -q update && \
23- apt-get install -y dnsutils curl procps
25+ apt-get install --no-install-recommends -y curl dnsutils procps
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ repositories {
1212
1313dependencies {
1414 implementation(kotlin(" stdlib" ))
15- implementation(" org.apache.zookeeper:zookeeper:3.6.1 " )
15+ implementation(" org.apache.zookeeper:zookeeper:3.6.2 " )
1616}
1717
1818tasks.withType<ShadowJar >() {
You can’t perform that action at this time.
0 commit comments