> ## Documentation Index
> Fetch the complete documentation index at: https://docs.futurex.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Troubleshooting

> Diagnostic commands and guidance for resolving issues with cert-manager CertificateRequests.

## Get detailed information about certificate request

To view more details of what is taking place in `Certificaterequests` resource, send the following command:

```shell expandable lines wrap title="Shell" theme={null}
kubectl describe certificaterequest <csr-name> -n <custom-namespace>
```

## Get logs from Futurex issuer controller

To view logs of the Futurex Issuer Controller:

```shell expandable lines wrap title="Shell" theme={null}
kubectl get pods -A
```

Find the name of the Futurex Issuer Controller and copy it to the following command:

```shell expandable lines wrap title="Shell" theme={null}
kubectl logs <fx-issuer-controller> -n cert-manager
```

## Kubectl is disconnected from the host

If Kubectl gets disconnected from the host, and is having problems reconnecting:

```shell expandable lines wrap title="Shell" theme={null}
docker cp k3s-server:/etc/rancher/k3s/k3s.yaml ~/k3s.yaml
export KUBECONFIG=~/k3s.yaml
```
