Skip to content

Commit edb734a

Browse files
committed
Add kubectl get events to troubleshooting guide
Signed-off-by: Alex Ellis (VMware) <[email protected]>
1 parent 299e1b0 commit edb734a

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

docs/deployment/troubleshooting.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,24 @@ $ kubectl logs -n openfaas-fn deploy/FUNCTION_NAME
205205
$ kubectl describe -n openfaas-fn deploy/FUNCTION_NAME
206206
```
207207

208+
```
209+
$ kubectl get events --sort-by=.metadata.creationTimestamp -n openfaas-fn
210+
```
211+
212+
### Check logs of the core services
213+
214+
```
215+
$ kubectl logs -n openfaas-fn deploy/faas-netes
216+
$ kubectl logs -n openfaas-fn deploy/gateway
217+
$ kubectl logs -n openfaas-fn deploy/queue-worker
218+
```
219+
220+
Check for events too
221+
222+
```
223+
$ kubectl get events --sort-by=.metadata.creationTimestamp -n openfaas
224+
```
225+
208226
### Remove the OpenFaaS deployment
209227

210228
From within the `faas-netes` folder:

0 commit comments

Comments
 (0)