-
Notifications
You must be signed in to change notification settings - Fork 40k
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
Temporarily disable GCI mounter in e2e node tests #35724
Temporarily disable GCI mounter in e2e node tests #35724
Conversation
You might want to include a revert of #35350 as well in this PR! |
Jenkins unit/integration failed for commit 49cc2019086cd6bac7c3d75929c8ba6169b7a790. Full PR test history. The magic incantation to run this job again is |
@mtaufen Can you rebase the pr so that we can get this one merged soon based on the discussion at #35935 (comment) |
49cc201
to
5a61a3b
Compare
Rebased |
0eb0891
to
f5ee924
Compare
@@ -276,7 +276,12 @@ func RunRemote(archive string, host string, cleanup bool, junitFilePrefix string | |||
// Insert args at beginning of testArgs, so any values from command line take precedence | |||
testArgs = fmt.Sprintf("--experimental-mounter-rootfs-path=%s ", mounterRootfsPath) + testArgs | |||
testArgs = fmt.Sprintf("--experimental-mounter-path=%s ", mounterPath) + testArgs | |||
glog.Infof("GCI node and GCI mounter both detected, setting --experimental-mounter-path=%q and --experimental-mounter-rootfs-path=%q accordingly", mounterPath, mounterRootfsPath) | |||
|
|||
glog.Warningf("Flag forwarding to Kubelet for --experimental-mounter-rootfs-path and --experimental-mounter-path has been disabled." + |
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.
This warning is only needed if node e2e diverges from regular behavior. That's not the case now. So let's remove this.
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.
Removed.
@k8s-bot gci gke e2e test this |
f5ee924
to
df47194
Compare
df47194
to
f692e50
Compare
Let's not merge this for now given that the scope for the custom mounter has been reduced to non tmpfs, ext* and bind mounts. |
Discussed with @vishh and @mtaufen: re: #35935 We should merge this as soon as possible since the pr () mentioned by @vishh at #35724 (comment) was reverted, and issue #35935 caused by gci-mounter failures cause the block of submit-queue. We should disable the usage of gci-mounter for now while @vishh and @jingxu97 are working on the fix for gci-mounter. @mtaufen please rebase your pr and get this one in. Thanks! |
f692e50
to
5330d55
Compare
Re-rebased |
Jenkins GKE smoke e2e failed for commit 5330d55c9f740be6c06e549808cc3c4ffd81869b. Full PR test history. The magic incantation to run this job again is |
Jenkins GCI GKE smoke e2e failed for commit 5330d55c9f740be6c06e549808cc3c4ffd81869b. Full PR test history. The magic incantation to run this job again is |
Jenkins GCE etcd3 e2e failed for commit 5330d55c9f740be6c06e549808cc3c4ffd81869b. Full PR test history. The magic incantation to run this job again is |
Jenkins GCE Node e2e failed for commit 5330d55c9f740be6c06e549808cc3c4ffd81869b. Full PR test history. The magic incantation to run this job again is |
Jenkins Kubemark GCE e2e failed for commit 5330d55c9f740be6c06e549808cc3c4ffd81869b. Full PR test history. The magic incantation to run this job again is |
Jenkins GCE e2e failed for commit 5330d55c9f740be6c06e549808cc3c4ffd81869b. Full PR test history. The magic incantation to run this job again is |
Jenkins verification failed for commit 5330d55c9f740be6c06e549808cc3c4ffd81869b. Full PR test history. The magic incantation to run this job again is |
5330d55
to
c76c9c5
Compare
Jenkins GCI GCE e2e failed for commit c76c9c5. Full PR test history. The magic incantation to run this job again is |
@k8s-bot gci gce e2e test this |
LGTM |
"--experimental-mounter-path", framework.TestContext.MounterPath, | ||
"--experimental-mounter-rootfs-path", framework.TestContext.MounterRootfsPath, | ||
|
||
// Temporarily disabled: |
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.
Not blocking this PR, just a nit: it'd be nice to add a link to a github issue to explain the reasons and track when we can re-enable it.
Automatic merge from submit-queue |
This is just so we have an off-switch ready to go if we need it. Don't merge unless we need to disable this functionality in the e2e node tests.
This change is