Skip to content

Commit

Permalink
Merge pull request k8snetworkplumbingwg#161 from AbdYsn/remove-sriov-…
Browse files Browse the repository at this point in the history
…cni-e2e-check

Remove sriov-cni check from E2E tests
  • Loading branch information
pliurh authored Jul 12, 2021
2 parents 372cf5b + 7484b9d commit 7ce6ce2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/e2e/sriovoperatornodepolicy_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ var _ = Describe("Operator", func() {

By("provision the cni and device plugin daemonsets")
cniDaemonSet := &appsv1.DaemonSet{}
err = WaitForDaemonSetReady(cniDaemonSet, k8sClient, testNamespace, "sriov-cni", RetryInterval, Timeout)
err = WaitForDaemonSetReady(cniDaemonSet, k8sClient, testNamespace, "sriov-network-config-daemon", RetryInterval, Timeout)
Expect(err).NotTo(HaveOccurred())

dpDaemonSet := &appsv1.DaemonSet{}
Expand Down Expand Up @@ -249,7 +249,7 @@ var _ = Describe("Operator", func() {

By("provision the cni and device plugin daemonsets")
cniDaemonSet := &appsv1.DaemonSet{}
err = WaitForDaemonSetReady(cniDaemonSet, k8sClient, testNamespace, "sriov-cni", RetryInterval, Timeout)
err = WaitForDaemonSetReady(cniDaemonSet, k8sClient, testNamespace, "sriov-network-config-daemon", RetryInterval, Timeout)
Expect(err).NotTo(HaveOccurred())

dpDaemonSet := &appsv1.DaemonSet{}
Expand Down Expand Up @@ -393,7 +393,7 @@ var _ = Describe("Operator", func() {

By("provision the cni and device plugin daemonsets")
cniDaemonSet := &appsv1.DaemonSet{}
err = WaitForDaemonSetReady(cniDaemonSet, k8sClient, testNamespace, "sriov-cni", RetryInterval, Timeout)
err = WaitForDaemonSetReady(cniDaemonSet, k8sClient, testNamespace, "sriov-network-config-daemon", RetryInterval, Timeout)
Expect(err).NotTo(HaveOccurred())

dpDaemonSet := &appsv1.DaemonSet{}
Expand Down

0 comments on commit 7ce6ce2

Please sign in to comment.