Skip to content

Latest commit

 

History

History
43 lines (30 loc) · 1.1 KB

debugging.md

File metadata and controls

43 lines (30 loc) · 1.1 KB

Interesting Information for debugging

Kubernetes Local Dashboard

Istio

Istio Service Mesh Workshop

CoreDNS

kubectl -n kube-system edit configmap/coredns

Add record:

hosts custom.hosts mycustom.host {
   1.2.3.4 mycustom.host
   fallthrough
}
kubectl get pod -A
kubectl delete pod -n kube-system core-dns-#########

Debugging Networking, DNS

kubectl create deployment multitool --image=wbitt/network-multitool
kubectl get pods -A
kubectl exec -it multitool-598c869c8d-m6ps7 /bin/bash

Performance Testing

siege -r 10 -c 4 -v -d 1 -H "Host:httpbin.example.com" http://localhost:8080/status/234 fortio load -c 2 -n 400 -H "Host:httpbin.example.com" -loglevel Warning -stdclient http://localhost:8080/status/234