-
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 ingress controller, and fix integration test #2292
Conversation
Can one of the admins verify this patch? |
@minikube-bot ok to test |
pkg/minikube/constants/constants.go
Outdated
@@ -170,6 +170,11 @@ var LocalkubeCachedImages = []string{ | |||
// Dashboard | |||
"gcr.io/google_containers/kubernetes-dashboard-amd64:v1.6.3", | |||
|
|||
// Ingress Controller |
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.
These images get cached on all systems - I don't think we want to add them here.
@r2d4 where do you think we should add these? Maybe in common.sh using the minikube cache
command in a list?
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.
Hi @r2d4 Could you please help to check this?
Hi @dlorenc, I revert cache because of the cache image should not add them here. |
Thanks! |
In the recent observation, I found the ingress integration test failed in some environment, I think the reason that test fails is that ingress pod not ready yet, so this commit use
Retry()
to make sure that the test not only run once.In addition update image for Ingress controller.
/cc @r2d4 @dlorenc