We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ab245d commit cd1e16fCopy full SHA for cd1e16f
1 file changed
internal/controller/untaint_controller_integration_test.go
@@ -40,7 +40,7 @@ const (
40
func makeTaintedNode(ctx context.Context, name string) func() {
41
node := &corev1.Node{
42
ObjectMeta: metav1.ObjectMeta{Name: name},
43
- Spec: corev1.NodeSpec{Taints: []corev1.Taint{untaint.AgentNotReadyTaint()}},
+ Spec: corev1.NodeSpec{Taints: []corev1.Taint{untaint.AgentNotReadyTaint()}},
44
}
45
Expect(k8sClient.Create(ctx, node)).Should(Succeed())
46
return func() { _ = k8sClient.Delete(ctx, node) }
0 commit comments