-
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
update crio to 1.18.3 and kicbase to ubuntu 20.04 #8895
Conversation
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: sharifelgamal 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 |
Travis tests have failedHey @sharifelgamal, 1st Buildmake test
2nd Buildmake test
TravisBuddy Request Identifier: bc0d6eb0-d2b2-11ea-9c70-53a116b43db5 |
@@ -202,6 +202,16 @@ func runStart(cmd *cobra.Command, args []string) { | |||
} | |||
} | |||
|
|||
if existing != nil && existing.KubernetesConfig.ContainerRuntime == "crio" && driver.IsKIC(existing.Driver) { |
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.
I'm not following this -- doesn't this run only if the previous provisionWithDriver error == nil?
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.
correct, provision isn't what fails for crio, it's starting k8s that fails. what I found works is if we just stop and start again here, everything works as expected.
I'm basically emulating restarting and failing, then calling minikube stop then calling minikube start again, except I'm skipping the 6 minutes we need to wait for apiserver to not come back in the startWithDriver portion of the code.
again, I have no idea why, but empirically it works and it makes the tests pass.
Travis tests have failedHey @sharifelgamal, 1st Buildmake test
TravisBuddy Request Identifier: 72b0be20-d2e9-11ea-8b20-77bf1110b312 |
Currently versions of crio above 1.17.3 (which magically vanished into the ether) fails on a node restart, so I've had an admittedly horrible hack to fix it while we discover the root cause.