Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Debugging Tool: privileged daemonset #251

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions tools/debug/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
FROM ubuntu:22.04

RUN apt-get update -y --fix-missing \
&& apt-get install -y iproute2 tcpdump net-tools iputils-ping netcat wget screen xz-utils strace nftables ipvsadm iptables bird2 ethtool conntrack dnsutils jq

ADD https://github.com/Nordix/ctraffic/releases/download/v1.7.0/ctraffic.gz ctraffic.gz
RUN gunzip ctraffic.gz \
&& chmod a+x ctraffic

ADD https://github.com/Nordix/mconnect/releases/download/v2.2.0/mconnect.xz mconnect.xz
RUN unxz mconnect.xz \
&& chmod a+x mconnect

ADD https://github.com/Nordix/nfqueue-loadbalancer/releases/download/1.0.0/nfqlb-1.0.0.tar.xz /
RUN tar --strip-components=1 -xf /nfqlb-1.0.0.tar.xz nfqlb-1.0.0/bin/nfqlb

ADD https://github.com/kubernetes-sigs/cri-tools/releases/download/v1.24.1/crictl-v1.24.1-linux-amd64.tar.gz /
RUN tar zxvf crictl-v1.24.1-linux-amd64.tar.gz -C /bin
RUN rm -f crictl-v1.24.1-linux-amd64.tar.gz

CMD ["tail", "-f", "/dev/null"]
40 changes: 40 additions & 0 deletions tools/debug/debug-daemont.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
---
apiVersion: apps/v1
kind: DaemonSet
metadata:
name: debug-meridio-daemonset
labels:
app: debug-meridio-daemonset
spec:
selector:
matchLabels:
app: debug-meridio-daemonset
template:
metadata:
labels:
app: debug-meridio-daemonset
spec:
hostNetwork: true
containers:
- name: debug
image: registry.nordix.org/cloud-native/meridio/debug-meridio:latest
imagePullPolicy: Always
securityContext:
capabilities:
add:
- NET_ADMIN
- SYS_ADMIN
volumeMounts:
- mountPath: /run/netns
name: netns-volume
- mountPath: /run/containerd
name: containerd-volume
volumes:
- name: netns-volume # To access the network namespaces
hostPath:
path: /run/netns
type: Directory
- name: containerd-volume # To use crictl
hostPath:
path: /run/containerd
type: Directory
46 changes: 46 additions & 0 deletions tools/debug/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Debugging

## Deploy

```
kubectl apply -f tools/debug/debug-daemont.yaml
```

## Build

```
docker build -t debug-meridio -f tools/debug/Dockerfile .
docker tag debug-meridio:latest registry.nordix.org/cloud-native/meridio/debug-meridio:latest
docker push registry.nordix.org/cloud-native/meridio/debug-meridio:latest
```

## Commands
List netns::
```
ls -1i /var/run/netn
```

List netns (more details):
```
lsns -t net
```

Check the processes running in the network namespace:
```
ls -l /proc/[1-9]*/ns/net | grep <NS> | cut -f3 -d"/" | xargs ps -p
```

Find pid from container ID:
```
crictl inspect --output go-template --template '{{.info.pid}}' <CONTAINER-ID>
```

List containers:
```
crictl ps
```

Find network namespace from pod ID:
```
crictl inspectp <POD-ID> | jq -r '.info.runtimeSpec.linux.namespaces[] |select(.type=="network") | .path'
```