Skip to content

Commit

Permalink
Added a troubleshooting section for user guide.
Browse files Browse the repository at this point in the history
  • Loading branch information
gyliu513 committed Nov 3, 2018
1 parent 8d4e3e5 commit 81540b0
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions docs/userguide.md
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,27 @@ To cleanup the example simply delete the namespace:
kubectl delete ns test-namespace
```

### Troubleshooting

If federated resources are not propagated as expected to the member clusters, you can
use the following command to view `Events` which may aid in diagnosing the problem.

```bash
kubectl describe <federated CRD> <CR name> -n test-namespace
```

An example for CRD of `federatedserviceaccounts` is as follows:

```bash
kubectl describe federatedserviceaccounts test-serviceaccount -n test-namespace
```

It may also be useful to inspect the federation controller log as follows:

```bash
kubectl logs -f federation-controller-manager-0 -n federation-system
```

## Cleanup

### Deployment Cleanup
Expand Down

0 comments on commit 81540b0

Please sign in to comment.