-
Notifications
You must be signed in to change notification settings - Fork 9.8k
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
Force setting pre-vote flag even if it uses default value. #17463
base: main
Are you sure you want to change the base?
Conversation
Hi @joshuazh-x. Thanks for your PR. I'm waiting for a etcd-io member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Not sure about the proposed approach, we don't want to set etcd/tests/robustness/scenarios.go Lines 75 to 81 in 5c311d5
|
Simply adding an option to change prevote does not work, because any option same as the default one will be ignored. |
Right, forgot that now e2e framework uses defaults on the main branch to decide what flags to pass. Good find! |
1bb6fe8
to
95f3464
Compare
Signed-off-by: Joshua Zhang <[email protected]>
95f3464
to
ec4ace5
Compare
Fix goword check failure. |
cc @ahrtr |
@@ -172,6 +172,9 @@ type EtcdProcessClusterConfig struct { | |||
IsPeerAutoTLS bool | |||
CN bool | |||
|
|||
// ExplicitFlags contains flags to be explicitly set even if their values are same as default ones | |||
ExplicitFlags map[string]struct{} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Long term we might consider hardcoding differences between defaults on previous releases, however this should be a good solution for now.
Pls see my comment #17455 (comment) |
PR needs rebase. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
Please read https://github.com/etcd-io/etcd/blob/main/CONTRIBUTING.md#contribution-flow.
Ref #17455