This is an automated email from the ASF dual-hosted git repository.

showuon pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 951894d2ffc MINOR: Install missing iputils-ping for system tests 
(#13500)
951894d2ffc is described below

commit 951894d2ffc0fe260fbede92500e5b86114411c1
Author: Gantigmaa Selenge <39860586+tinasele...@users.noreply.github.com>
AuthorDate: Thu Apr 13 02:30:56 2023 +0100

    MINOR: Install missing iputils-ping for system tests (#13500)
    
    Some system tests from kafkatest.tests.core.network_degrade_test are 
failing due to missing utility iputils-ping.
    
    [DEBUG - 2023-02-04 01:34:56,322 - network_degrade_test - test_latency -
     lineno:67]: Ping output: bash: line 1: ping: command not found
    
    Reviewers: Luke Chen <show...@gmail.com>
---
 tests/docker/Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/docker/Dockerfile b/tests/docker/Dockerfile
index 8f5dba086b7..a72c7731aff 100644
--- a/tests/docker/Dockerfile
+++ b/tests/docker/Dockerfile
@@ -33,7 +33,7 @@ LABEL ducker.creator=$ducker_creator
 
 # Update Linux and install necessary utilities.
 # we have to install git since it is included in openjdk:8 but not openjdk:11
-RUN apt update && apt install -y sudo git netcat iptables rsync unzip wget 
curl jq coreutils openssh-server net-tools vim python3-pip python3-dev 
libffi-dev libssl-dev cmake pkg-config libfuse-dev iperf traceroute iproute2 && 
apt-get -y clean
+RUN apt update && apt install -y sudo git netcat iptables rsync unzip wget 
curl jq coreutils openssh-server net-tools vim python3-pip python3-dev 
libffi-dev libssl-dev cmake pkg-config libfuse-dev iperf traceroute iproute2 
iputils-ping && apt-get -y clean
 RUN python3 -m pip install -U pip==21.1.1;
 RUN pip3 install --upgrade cffi virtualenv pyasn1 boto3 pycrypto pywinrm 
ipaddress enum34 debugpy && pip3 install --upgrade "ducktape>0.8"
 

Reply via email to