I have deployment and a replica set in Kubernetes that are failing to create a pod. I've tried
kubectl describe deployment deployment-name and
kubectl describe replicaset replicaset-name
And they both say
Conditions:
Type Status Reason
---- ------ ------
ReplicaFailure True FailedCreate
Events: <none>
All of the troubleshooting guides I've seen rely on information from the Events section but it says <none> in my case. How can I get more information to debug the problem?