File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed
Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -141,10 +141,19 @@ spec:
141141` ` `
142142
143143
144- # # 7. Verify installation
144+ # # 7. Verify installation, and debugging tips
145145
146146Find url for your service using `kubectl get svc` or `minikube service --url ngnix-service -n http`, and make a call to it.
147147
148148Get GoReplay logs, and check if it capture traffic of your service.
149- ` microk8s kubectl logs -n goreplay -l app=goreplay --all-containers`
149+ ` kubectl logs -n goreplay -l app=goreplay --all-containers`
150+
151+ Describe daemonset :
152+ ` kubectl describe daemonset goreplay-daemon -n goreplay`
153+
154+ Get GoReplay pod list :
155+ ` kubectl get pods -n goreplay -l app=goreplay`
156+
157+ Get logs for specific pod (take data from previous step) :
158+ ` kubectl logs goreplay-daemon-<replace> -n goreplay`
150159
You can’t perform that action at this time.
0 commit comments