Skip to content
Snippets Groups Projects
Commit 41da1afe authored by Alex Ellis's avatar Alex Ellis Committed by GitHub
Browse files

Create troubleshooting.md

parent 360de12c
No related branches found
No related tags found
No related merge requests found
# Troubleshooting guide
## Docker Swarm
### List all functions
```
$ docker service ls
```
### Find a function's logs
```
$ docker swarm logs --tail 100 <function>
```
### Find out if a function failed to start
```
$ docker swarm ps --no-trunc=true <function>
```
## Kubernetes
### List all functions
```
$ kubectl get deploy
```
### Find a function's logs
```
$ kubectl logs deploy/<function>
```
### Find out if a function failed to start
```
$ kubectl describe deploy/<function>
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment