Balavva-Mirji commented on code in PR #9652:
URL: https://github.com/apache/camel/pull/9652#discussion_r1149167485


##########
test-infra/camel-test-infra-zookeeper/src/test/java/org/apache/camel/test/infra/zookeeper/services/ZooKeeperContainer.java:
##########
@@ -23,7 +23,12 @@
 import org.testcontainers.containers.wait.strategy.Wait;
 
 public class ZooKeeperContainer extends GenericContainer {
-    public static final String CONTAINER_IMAGE = "zookeeper:3.5";
+    if (arch == ppc64le) {
+        public static final String CONTAINER_IMAGE = 
"icr.io/ppc64le-oss/zookeeper-ppc64le:v3.8.0-bv"
+    } else {
+        public static final String CONTAINER_IMAGE = "zookeeper:3.5";
+    }
+    

Review Comment:
   @essobedo locally all the above 3 changes are working.
   `public static final String CONTAINER_IMAGE = arch == ppc64le ? 
"icr.io/ppc64le-oss/zookeeper-ppc64le:v3.8.0-bv" : "zookeeper:3.5";`
   Let me use above way to use the zoo-keeper image, as it will optimize the 
code. Thanks for your review.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to