Skip to content

Commit

Permalink
Merge pull request #23 from cnf-testsuite/oran_wireshark_1827
Browse files Browse the repository at this point in the history
Add tshark 4.0.8 for E2AP filtering #1827
  • Loading branch information
wvwatson authored Oct 16, 2023
2 parents f04cf7b + 3f01844 commit e019f6d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/templates/manifest-host-pid.yml.ecr
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
dnsPolicy: ClusterFirstWithHostNet
containers:
- name: cluster-tools
image: conformance/cluster-tools:v1.0.4
image: conformance/cluster-tools:v1.0.5
imagePullPolicy: Always
command: ["/bin/sh"]
args: ["-c", "sleep infinity"]
Expand Down
2 changes: 1 addition & 1 deletion src/templates/manifest.yml.ecr
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
dnsPolicy: ClusterFirstWithHostNet
containers:
- name: cluster-tools
image: conformance/cluster-tools:v1.0.4
image: conformance/cluster-tools:v1.0.5
imagePullPolicy: Always
command: ["/bin/sh"]
args: ["-c", "sleep infinity"]
Expand Down
12 changes: 12 additions & 0 deletions tools/cluster-tools/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,18 @@ ENV IMAGE_SERVICE_ENDPOINT=unix:///run/containerd/containerd.sock
COPY ./sleep /sleep
COPY ./zombie /zombie

# INSTALL Wireshark
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

RUN git clone https://github.com/wireshark/wireshark.git /wireshark
RUN cd /wireshark && \
git checkout tags/wireshark-4.0.8 && \
mkdir build && \
cd build && \
cmake ../ && \
make -j`nproc` && \
make install

COPY --from=validator /validator/bin/openmetricsvalidator /usr/local/bin/
RUN echo "deb http://deb.debian.org/debian buster-backports main" >> /etc/apt/sources.list
RUN apt update && apt install -y curl sysbench skopeo net-tools strace
Expand Down

0 comments on commit e019f6d

Please sign in to comment.