Skip to content

Commit e019f6d

Browse files
authored
Merge pull request #23 from cnf-testsuite/oran_wireshark_1827
Add tshark 4.0.8 for E2AP filtering #1827
2 parents f04cf7b + 3f01844 commit e019f6d

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

src/templates/manifest-host-pid.yml.ecr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ spec:
1616
dnsPolicy: ClusterFirstWithHostNet
1717
containers:
1818
- name: cluster-tools
19-
image: conformance/cluster-tools:v1.0.4
19+
image: conformance/cluster-tools:v1.0.5
2020
imagePullPolicy: Always
2121
command: ["/bin/sh"]
2222
args: ["-c", "sleep infinity"]

src/templates/manifest.yml.ecr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
dnsPolicy: ClusterFirstWithHostNet
1616
containers:
1717
- name: cluster-tools
18-
image: conformance/cluster-tools:v1.0.4
18+
image: conformance/cluster-tools:v1.0.5
1919
imagePullPolicy: Always
2020
command: ["/bin/sh"]
2121
args: ["-c", "sleep infinity"]

tools/cluster-tools/Dockerfile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,18 @@ ENV IMAGE_SERVICE_ENDPOINT=unix:///run/containerd/containerd.sock
1414
COPY ./sleep /sleep
1515
COPY ./zombie /zombie
1616

17+
# INSTALL Wireshark
18+
RUN apt update && apt-get install -y build-essential git cmake bison flex libgtk-3-dev libpcap-dev libssl-dev libncurses5-dev qtbase5-dev qttools5-dev-tools qttools5-dev libqt5svg5-dev libtool libgcrypt20-dev libc-ares-dev
19+
20+
RUN git clone https://github.com/wireshark/wireshark.git /wireshark
21+
RUN cd /wireshark && \
22+
git checkout tags/wireshark-4.0.8 && \
23+
mkdir build && \
24+
cd build && \
25+
cmake ../ && \
26+
make -j`nproc` && \
27+
make install
28+
1729
COPY --from=validator /validator/bin/openmetricsvalidator /usr/local/bin/
1830
RUN echo "deb http://deb.debian.org/debian buster-backports main" >> /etc/apt/sources.list
1931
RUN apt update && apt install -y curl sysbench skopeo net-tools strace

0 commit comments

Comments
 (0)