-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
wip: wait for Default Service Account #7209
Conversation
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: medyagh The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
I suppose you could add a separate flag |
I thought about that, but the thing is, I dont want the default behiavor to include waiting for default service account (that is not needed for 90% of ppl) and adds ups to 30s to start time. if I had made a components flag, then if I keep the old flag, the True would need to do all of it ? |
@medyagh: 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/test-infra repository. |
It's unclear to me what this breaks if anything? What do you think of a tiered approach so that folks don't have to worry about new components that are added?
|
sounds like a good idea ! |
This Pr will break
minikube start --wait
but the following will still work
minikube start --wait=true (waits for 2 as the current default behavior(
minikube start --wait=false
minikube start --wait=all (waits for 3 components)
minikube start --wait=apiserver,system_pods,default_sa (waits for these 3)