Closed nicknovitski closed 1 year ago
Currently rollouts are failing, because requests to /ready are being answered by a * route that is used first.
/ready
*
use
This change fixes that.
This can be tested by running skaffold dev --kube-context=minikube --filename website/skaffold.yaml.
skaffold dev --kube-context=minikube --filename website/skaffold.yaml
That's a good point, I hesitated to do that since it would technically change the behavior of the server and I thought this was less invasive, but 👍 .
Why
Currently rollouts are failing, because requests to
/ready
are being answered by a*
route that isuse
d first.This change fixes that.
Test Plan
This can be tested by running
skaffold dev --kube-context=minikube --filename website/skaffold.yaml
.