Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move status command to TestFunctional/serial
I noticed that TestComponentHealth/parallel/ComponentHealth was failing with this error: ``` Error apiserver status: https://172.17.0.3:8441/healthz returned error 500: [-]etcd failed: reason withheld ``` but by the time post mortem logs were printed the etcd container was up and running. I think this test occasionally fails because apiserver healthz is not yet returning a 200 status when we run the test. We wait for healthz to return 200 on regular start, but not on soft start, which we run in `TestFunctional`. `minikube status` runs the apiserver healthz check, so moving this command to the serial part of the test should ensure that `TestComponentHealth` will run with a healthy apiserver.
- Loading branch information