-
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
Simplify containerd runtime configuration for gVisor #14996
Conversation
Hi @fvoznika. 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? |
/ok-to-test |
/retest |
@fvoznika: Cannot trigger testing until a trusted user reviews the PR and leaves an 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. |
There is 1 pending test, does it need to be retried? |
/ok-to-test |
k8s bot didn't seem to pickup my comment the first time |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
@fvoznika gVisor test is failing with the following:
|
The Kubernetes project currently lacks enough contributors to adequately respond to all issues and PRs. This bot triages issues and 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 issues and PRs. This bot triages issues and 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. |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
The previous code had a copy of `config.toml` which is easy to get out of sync. Instead, append the necessary configuration to the existing file to retain the rest of the configuration. Also changed the location where `runsc` is downloaded to use the latest release instead of hardcondig to a release which gets old quickly.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
@spowelljr seems to break KVM gvisor test |
Yeah, the pod's not coming up |
I got it to work locally, needed to build a new gvisor image |
kvm2 driver with docker runtime
Times for minikube (PR 14996) ingress: 27.2s 29.2s 25.7s 26.2s 26.7s Times for minikube (PR 14996) start: 49.4s 51.3s 52.1s 51.9s 50.1s docker driver with docker runtime
Times for minikube start: 24.4s 22.4s 24.7s 24.4s 21.0s Times for minikube ingress: 48.3s 27.9s 48.8s 48.3s 48.9s docker driver with containerd runtime
Times for minikube ingress: 30.3s 31.4s 31.3s 32.3s 30.3s Times for minikube start: 20.8s 23.5s 19.8s 20.1s 20.2s |
These are the flake rates of all failed tests.
To see the flake rates of all tests by environment, click here. |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: fvoznika, 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 |
Thanks a lot for looking into the failures and merging it!! |
The previous code had a copy of
config.toml
which is easy to get out ofsync. Instead, append the necessary configuration to the existing file
to retain the rest of the configuration.
Also changed the location where
runsc
is downloaded to use the latestrelease instead of hardcondig to a release which gets old quickly.
Fixes google/gvisor#7877