Kubernetes Debug Pod
To verify network configurations of a Kubernetes deployment, we use a simple debug Pod.
apiVersion: v1
kind: Pod
metadata:
name: debug-debian
labels:
app: debug-debian
spec:
enableServiceLinks: false
containers:
- name: debug-debian
image: debian:10
command:
- /bin/bash
- -ec
- |
apt update -qq
apt install -qq -y wget curl