-
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
CNI/bridge: Ensure pod communications are allowed #16143
CNI/bridge: Ensure pod communications are allowed #16143
Conversation
Welcome @maxbrunet! |
Hi @maxbrunet. Thanks for your PR. I'm waiting for a kubernetes 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. |
Can one of the admins verify this patch? |
8646984
to
a0e5cd1
Compare
/ok-to-test |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
@spowelljr what is the best way to get the logs from the container runtime for these failing tests (e.g. I opened #16149, but I do not think it will help here as I do not see any system logs. |
That PR makes sense to me to get the cri-dockerd logs, if you don't see system logs at the end of the failed test it likely doesn't have the following at the start of the test func.
This will produce the following: https://storage.googleapis.com/minikube-builds/logs/16143/28462/Docker_Linux.html#fail_TestPause%2fserial%2fSecondStartNoReconfiguration If you look at the bottom of the logs you should see |
a0e5cd1
to
faff3e8
Compare
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
faff3e8
to
4d6b5c5
Compare
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
So, my first attempt was using the most restrictive ingress policy, The config seems to load properly everywhere as I have not seen any error in the @spowelljr what do you think about the solution? I cannot say for sure if the remaining failing tests are related or not, but in this state, |
@medyagh @spowelljr friendly nudge 🙂 |
The Kubernetes project currently lacks enough contributors to adequately respond to all PRs. This bot triages PRs according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle stale |
The Kubernetes project currently lacks enough active contributors to adequately respond to all PRs. This bot triages PRs according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle rotten |
The Kubernetes project currently lacks enough active contributors to adequately respond to all issues and PRs. This bot triages PRs according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /close |
@k8s-triage-robot: Closed this PR. In response to this:
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. |
4d6b5c5
to
ecdecec
Compare
kvm2 driver with docker runtime
Times for minikube start: 51.4s 52.0s 54.2s 51.8s 51.8s Times for minikube ingress: 28.5s 27.5s 25.5s 23.0s 25.1s docker driver with docker runtime
Times for minikube ingress: 20.2s 22.2s 20.7s 20.8s 21.3s Times for minikube start: 23.7s 20.0s 20.8s 20.5s 21.3s docker driver with containerd runtime
Times for minikube start: 22.4s 20.0s 22.3s 22.8s 19.7s Times for minikube ingress: 47.7s 31.8s 31.7s 19.7s 30.7s |
These are the flake rates of all failed tests.
Too many tests failed - See test logs for more details. To see the flake rates of all tests by environment, click here. |
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.
Sorry for the delay, the tests look good, thank you for the PR!
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: maxbrunet, spowelljr 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 |
Using
none
driver withdocker
runtime, thebridge
CNI is selected since Minikube v1.29.0, but pods cannot communicate, this PR adds thefirewall
plugin to the CNI config to set up the correctiptables
rules.I found the solution here: containernetworking/plugins#430 (comment)
The config for reference:
Tested and working for my use case, but I am not entirely sure about all the implications of this change.
Fixes medyagh/setup-minikube#110