Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,10 +128,18 @@ spec:

### Check Function Status

View the middleware status of your function:
The Function CRD has the short name `func`, so you can use `kubectl get func` instead of `kubectl get function`.

Get an overview of all functions including their middleware version and pending rebuild status:

```bash
kubectl get func
```

View the full status of a specific function:

```bash
kubectl get function my-function -o yaml
kubectl get func my-function -o yaml
```

The status will include:
Expand Down
Loading