-
Notifications
You must be signed in to change notification settings - Fork 40.3k
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
[RuntimeClassScheduling] test(runtimeclass): add e2e tests for runtimeclass scheduling - Part3 #81915
[RuntimeClassScheduling] test(runtimeclass): add e2e tests for runtimeclass scheduling - Part3 #81915
Conversation
bee1483
to
e6da6bc
Compare
/retest |
Can you cherry-pick #81016 into this PR so that the tests can be run? |
Do you mean #81862?
Regards,
Draven
…On Aug 27, 2019, 2:14 AM +0800, Tim Allclair (St. Clair) ***@***.***>, wrote:
Can you cherry-pick #81016 into this PR so that the tests can be run?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub, or mute the thread.
|
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.
Thanks!
test/e2e/common/runtimeclass.go
Outdated
@@ -97,21 +98,100 @@ var _ = ginkgo.Describe("[sig-node] RuntimeClass", func() { | |||
pod := createRuntimeClassPod(f, rcName) | |||
expectSandboxFailureEvent(f, pod, fmt.Sprintf("\"%s\" not found", rcName)) | |||
}) | |||
|
|||
ginkgo.It("should reject a Pod requesting a RuntimeClass with conflict node selector", func() { |
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.
needs [NodeFeature:RuntimeHandler]
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.
Actually, since we expect this to fail in scheduling, the handler doesn't matter, so you can leave it off.
test/e2e/common/runtimeclass.go
Outdated
handler := PreconfiguredRuntimeHandler | ||
if framework.TestContext.ContainerRuntime == "docker" { | ||
handler = DockerRuntimeHandler | ||
} |
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.
extract this to a helper function in the framework
directory, so it can be shared with the non-common tests.
test/e2e/common/runtimeclass.go
Outdated
"foo": "bar", | ||
} | ||
f.PodClient().Create(pod) | ||
expectSandboxFailureEvent(f, pod, "conflict: runtimeClass.scheduling.nodeSelector[foo] = bar; pod.spec.nodeselector[foo] = conflict") |
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 should be an admission failure, not a sandbox failure. I'd expect the Create
call to fail. Since the PodClient always asserts success, you'll need to call the client directly:
_, err := f.ClientSet.CoreV1().Pods(f.Namespace.Name).Create(...)
test/e2e/common/runtimeclass.go
Outdated
expectSandboxFailureEvent(f, pod, "conflict: runtimeClass.scheduling.nodeSelector[foo] = bar; pod.spec.nodeselector[foo] = conflict") | ||
}) | ||
|
||
ginkgo.It("should run a Pod requesting a RuntimeClass with scheduling", func() { |
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.
Here you need the NodeFeature
test/e2e/common/runtimeclass.go
Outdated
f.PodClient().Create(pod) | ||
|
||
expectPodSuccess(f, pod) | ||
pod, err = f.PodClient().Get(pod.Name, metav1.GetOptions{}) |
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.
nit: just use the pod returned by PodClient().Create
test/e2e/common/runtimeclass.go
Outdated
} | ||
f.PodClient().Create(pod) | ||
|
||
expectPodSuccess(f, pod) |
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 don't think you ever labeled the nodes? In that case the pod won't actually be scheduled. See https://github.com/kubernetes/kubernetes/blob/master/test/e2e/scheduling/predicates.go#L372
Also, taint the node.
Once the node is labeled, also verify the pod is assigned to the correct node.
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.
why are we tainting the node? this is disruptive and seems unnecessary?
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.
tainting might break parallel tests - so either Disruptive or Serial seems appropriate.
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 see now that runtimeclass scheduling includes taints.
filed #83647 for tagging the test, looking for feedback...
test/e2e/common/runtimeclass.go
Outdated
@@ -97,21 +98,100 @@ var _ = ginkgo.Describe("[sig-node] RuntimeClass", func() { | |||
pod := createRuntimeClassPod(f, rcName) | |||
expectSandboxFailureEvent(f, pod, fmt.Sprintf("\"%s\" not found", rcName)) | |||
}) | |||
|
|||
ginkgo.It("should reject a Pod requesting a RuntimeClass with conflict node selector", func() { |
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.
The test/e2e/common
directory is for tests that should be run as part of the regular cluster E2E suite, and also the node E2E suite. We don't actually run admission controllers or a scheduler in the node E2E suite, so these tests shouldn't be part of that suite.
Move these tests to test/e2e/node/runtimeclass.go
, and add a comment explaining why these are note in common
e6da6bc
to
5d3a8e2
Compare
5d3a8e2
to
8f93edb
Compare
8f93edb
to
78da0f2
Compare
e56161a
to
170a227
Compare
/assign @oomichi @neolit123 Could you help to take a look at the change in the |
7ba7421
to
6132bef
Compare
cada957
to
39ef57f
Compare
) | ||
|
||
// PreconfiguredRuntimeClassHandler returns configured runtime handler. | ||
func PreconfiguredRuntimeClassHandler() string { |
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 think we need a better location for this function instead of framework.go
.
possibly /test/e2e/framework/node/runtime.go
, @oomichi WDYT?
/hold
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.
Either of test/e2e/framework/{node,pod}/runtime.go
works for me.
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.
it would also be really nice if we documented this somewhere, other than kube-up, clusters don't tend to have "test-handler" registered, so they're only passing whenw e run docker and ~ skip them ... (?)
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 understand why it's like this, but it's a bit annoying to track this down and modify cluster deployments to support the test. I imagine most just don't have this setup and aren't aware of it.
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 understand why it's like this, but it's a bit annoying to track this down and modify cluster deployments to support the test. I imagine most just don't have this setup and aren't aware of it.
Moving it to the test/e2e/framework/node/runtime.go
would make the e2e node package depends on the framework. I checked out several other e2e packages which do not have this dependency.
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 mean documenting somewhere that the cluster must have this magical test-handler
configured
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.
Makes sense. Since this PR is just moving the code that's already there & needs to get in to 1.16, can we follow up on that?
I think the better approach would be to make it a variable that get's filled in by the test setup, rather than branching on the runtime, just make the handler parameter explicit (and skip the test if it's missing). But again, I'd like to get this in to 1.16 as is, and follow up with that change.
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.
SGTM 👍
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 created an issue to track this #82213
39ef57f
to
d2cb6a7
Compare
/retest
Regards,
Draven
…On Aug 30, 2019, 7:01 PM +0800, Lubomir I. Ivanov ***@***.***>, wrote:
@neolit123 commented on this pull request.
In test/e2e/framework/framework.go:
> @@ -884,3 +884,18 @@ func GetLogToFileFunc(file *os.File) func(format string, args ...interface{}) {
writer.Flush()
}
}
+
+const (
+ // preconfiguredRuntimeHandler is the name of the runtime handler that is expected to be
+ // preconfigured in the test environment.
+ preconfiguredRuntimeHandler = "test-handler"
+)
+
+// PreconfiguredRuntimeClassHandler returns configured runtime handler.
+func PreconfiguredRuntimeClassHandler() string {
i think we need a better location for this function instead of framework.go.
possibly /test/e2e/framework/node/runtime.go, @oomichi WDYT?
/hold
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub, or mute the thread.
|
test/e2e/node/runtimeclass.go
Outdated
|
||
framework.ExpectNoError(e2epod.WaitForPodSuccessInNamespace(f.ClientSet, pod.Name, f.Namespace.Name)) | ||
framework.ExpectEqual(nodeSelector, pod.Spec.NodeSelector) | ||
framework.ExpectEqual(tolerations, pod.Spec.Tolerations) |
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.
tests fail due to 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.
Try:
gomega.Expect(pod.Spec.Tolerations).To(gomega.ContainElement(tolerations[0]))
a296ed3
to
ddc2e29
Compare
ddc2e29
to
702646d
Compare
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.
/lgtm
cc @neolit123
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.
thanks for the update.
/lgtm
/approve
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: draveness, neolit123, tallclair 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 |
/hold cancel |
/kind cleanup
/sig node
/priority important-soon
/assign @tallclair @yastij
What this PR does / why we need it:
Add e2e tests for runtimeclass scheduling
Which issue(s) this PR fixes:
ref #81016
Special notes for your reviewer:
Does this PR introduce a user-facing change?:
Additional documentation e.g., KEPs (Kubernetes Enhancement Proposals), usage docs, etc.: