* Consider readinessGates + ready condition in diagnose
Now that readiness gates are supported, those should be considered when displaying a pod healthiness
Additionally consider the pod ready condition status. It should match the && of the containers' ready condition and readiness gates but I've actually observed that in some cases, it can be false with the containers reporting ready true.
* Update pod.go
* Update pod.go
fix lint
* Update pod.go
lint
* add tests for diagnose and readinessGateStats
* lint error
* feat: create ToRestartAge helper function to calculate last restart age
* feat: add Last Restart column to pod view
* test: add TestPodLastRestart to pod tests
* test: add TestToRestartAge tests
* test: fix all initial row states on table tests
* chore: remove TestToRestartAge changes
* refactor: move LastRestart pod function to internal function
* refactor: update to new go 1.22 range over map syntax