Skip to content

Commit

Permalink
ci: fix iPXE file path for e2e test
Browse files Browse the repository at this point in the history
Signed-off-by: Loic Devulder <[email protected]>
  • Loading branch information
ldevulder committed May 4, 2022
1 parent 367804d commit 8e45529
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/e2e/bootstrap_with_rancher_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ var _ = Describe("E2E - Bootstrapping node with Rancher", Label("bootstrapping")
netDefaultFileName := "../assets/net-default.xml"

By("Configuring iPXE boot script for CI", func() {
ipxeScript, err := tools.GetFiles("..", "*.ipxe")
ipxeScript, err := tools.GetFiles("../..", "*.ipxe")
Expect(err).NotTo(HaveOccurred())
Expect(len(ipxeScript)).To(BeNumerically("==", 1))
err = tools.Sed("set url.*", "set url http://192.168.122.1:8000", ipxeScript[0])
Expand Down

0 comments on commit 8e45529

Please sign in to comment.