Get all CRDs kubectl
List all Custom Resource Definitions sorted by creation time
kubectl get crds --sort-by='.metadata.creationTimestamp'
more kubectl
all 73 commands →
Get service endpoints
kubectl get endpoints <svc> -n <ns>
Check certificate expiry (cert-manager)
kubectl get certificate -A -o wide
View pod topology spread
kubectl get pod <pod> -n <ns> -o jsonpath='{.spec.topologySpreadConstraints}'
Apply with prune
kubectl apply -f ./dir/ --prune -l app=<label> -n <ns>
Diff live vs local
kubectl diff -f file.yaml