I have an installation where I need some pods to be ready. Therefore I use this
kubectl wait --for=condition=ready --timeout=60s -n some-namespace --all pods
Problem is that there are some pods running jobs where there condition status is Completed, and therefore wait hangs as the condition never will be ready.
Is it possible to wait for all but the ones running jobs?