-
Notifications
You must be signed in to change notification settings - Fork 718
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TestReversalStatefulSetRename is flaky #3844
Comments
Two things to be considered in order to solve that issue: 1. Update
|
Closed by #3846 which enabled |
The steps of this test are:
nodeSet
frommasterdata
toother
other
back tomasterdata
It means that the
nodeSet
is renamed for a vey short moment.When test is failing the resources are:
test-sset-rename-reversal-nr6k-es-other-0
can't start because the transport certificate is not generated (there's onlyca.crt
intest-sset-rename-reversal-nr6k-es-other-es-transport-certs
), which seems to be expected knowing that thenodeSet
other
does not exist anymore in the Elasticsearch spec.The Pod is not deleted because of the reason:
Cannot remove the last running master node
.checkDownscaleInvariants
is assuming that there is only one master running (which is true, the other one will never start), but hence refuse to deletetest-sset-rename-reversal-nr6k-es-other-0
which is also a master according to its labels. (even if it has never really been the case because it never started).The text was updated successfully, but these errors were encountered: