forked from kubevirt/kubevirt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ryan Hallisey <[email protected]>
- Loading branch information
1 parent
7ef2736
commit 0b37e41
Showing
4 changed files
with
65 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -247,6 +247,7 @@ var _ = Describe("[rfe_id:151][crit:high][vendor:[email protected]][level:compon | |
|
||
By("applying the hostname from meta-data") | ||
Expect(libnet.WithIPv6(console.LoginToCirros)(vmi)).To(Succeed()) | ||
|
||
Expect(console.SafeExpectBatch(vmi, []expect.Batcher{ | ||
&expect.BSnd{S: "hostname\n"}, | ||
&expect.BExp{R: dns.SanitizeHostname(vmi)}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -591,7 +591,7 @@ var _ = Describe("[rfe_id:273][crit:high][vendor:[email protected]][level:compon | |
By("restarting kubelet") | ||
pod := renderPkillAllPod("kubelet") | ||
pod.Spec.NodeName = nodeName | ||
_, err = virtClient.CoreV1().Pods(tests.NamespaceTestDefault).Create(pod) | ||
_, err = virtClient.CoreV1().Pods(tests.NamespaceTestDefault).Create(context.Background(), pod, metav1.CreateOptions{}) | ||
Expect(err).ToNot(HaveOccurred()) | ||
|
||
By("starting another VMI on the same node, to verify kubelet is running again") | ||
|