-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement new configuration strategy for
pxeboot
plugin (#241)
* Implement new configuration strategy for PXEBOOT plugin * Fix tests * Fix reuse complaince check * Update readme * Dynamically create test configuration data Do not check in test configuration that small, go for dynamic generation instead --------- Co-authored-by: kkumar <[email protected]> Co-authored-by: Damyan Yordanov <[email protected]>
- Loading branch information
1 parent
5fe5b27
commit fe7caa8
Showing
7 changed files
with
168 additions
and
48 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
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
tftpServer: tftp://[2001:db8::1]/ipxe/x86_64/ipxe | ||
ipxeServer: http://[2001:db8::1]/ipxe/boot6 |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and IronCore contributors | ||
// SPDX-License-Identifier: MIT | ||
|
||
package api | ||
|
||
type PxebootConfig struct { | ||
TFTPServer string `yaml:"tftpServer"` | ||
IPXEServer string `yaml:"ipxeServer"` | ||
} |
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
Oops, something went wrong.