Hi ,
Simply run below command
kubectl logs <ingress-pod-name> -n <namespace>
However, the verbosity level might not be explicitly shown in the logs depending on how the Ingress controller is configured.
Check Ingress Controller Configuration:
- Check ConfigMap: Some Ingress controllers, like NGINX, use ConfigMaps to manage their configurations. You can inspect the ConfigMap associated with the Ingress controller deployment:
kubectl describe configmap <configmap-name> -n <namespace>
Look for any settings related to logging or verbosity levels within the ConfigMap.
Please accept answer if it helps, Thanks