Skip to content

Commit

Permalink
update stack test to use updated port
Browse files Browse the repository at this point in the history
  • Loading branch information
Gedulis12 committed Dec 15, 2024
1 parent 10dffa7 commit 95f48c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/providers/tinkerbell/stack/stack_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ func TestTinkerbellStackInstallWithDifferentOptions(t *testing.T) {
"--dhcp-ip-for-packet", testIP,
"--dhcp-syslog-ip", testIP,
"--dhcp-tftp-ip", fmt.Sprintf("%s:69", testIP),
"--dhcp-http-ipxe-binary-url", fmt.Sprintf("http://%s:8080/ipxe/", testIP),
"--dhcp-http-ipxe-binary-url", fmt.Sprintf("http://%s:80/ipxe/", testIP),
"--dhcp-http-ipxe-script-url", fmt.Sprintf("http://%s/auto.ipxe", testIP),
},
"-v", gomock.Any(),
Expand Down Expand Up @@ -521,7 +521,7 @@ func TestUninstall(t *testing.T) {
func TestHasLegacyChart(t *testing.T) {
mockCtrl := gomock.NewController(t)
docker := mocks.NewMockDocker(mockCtrl)
helm := mocks.NewMockHelm(mockCtrl)pkg/providers/tinkerbell/create.go
helm := mocks.NewMockHelm(mockCtrl)

_, writer := test.NewWriter(t)
cluster := &types.Cluster{Name: "test"}
Expand Down

0 comments on commit 95f48c4

Please sign in to comment.