-
Notifications
You must be signed in to change notification settings - Fork 295
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Expose CLI flag to tell Smee (Boots) on which interface to bind #8760
Conversation
The flag let's the user configure the network interface on which smee (boots) service will bind it's services
Hi @Gedulis12. Thanks for your PR. I'm waiting for a aws member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Hey @Gedulis12 , thanks for this contribution! If i understand what you're wanting, this functionality already exists with the flag |
Hi @jacobweinstock , thanks for the response. I have tested it before raising this PR, unfortunately |
Ah, i see from your PR that it looks like it's not the binding to an interface thats a problem but the IP used in DHCP packets for syslog, tftp, http, etc. As you've found, we're not setting the appropriate CLI flags for Smee in order for network booting to happen properly. The |
@jacobweinstock Thanks for the feedback. I will work on amendment for the PR so that the functionality lands in |
This reverts commit 094005b.
The value provided in the flag is now used in the CLI arguments when running boots binary: --syslog-addr --tftp-addr --http-addr --dhcp-ip-for-packet --dhcp-syslog-ip --dhcp-tftp-ip --dhcp-http-ipxe-binary-url --dhcp-http-ipxe-script-url
Hi @jacobweinstock, I have done changes to this PR and moved the functionality to the |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #8760 +/- ##
==========================================
- Coverage 72.38% 69.46% -2.93%
==========================================
Files 578 672 +94
Lines 45469 49360 +3891
==========================================
+ Hits 32915 34286 +1371
- Misses 10824 13288 +2464
- Partials 1730 1786 +56 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Fixed golanggci-lint errors via 323e34 need an approval to run tests again. |
Hey @jacobweinstock i'm not super familiar with the PR process for this project, so just checking in. I see the checks have passed, is there any further pending actions on me? |
Hey, apologies. I just had one comment and we should be able to get this merged. Thanks for the contribution! |
Hi @jacobweinstock , just checking in on what's the status for this. You mentioned that you have one comment, would you like to share that comment? |
"--dhcp-ip-for-packet", tinkServerIP, | ||
"--dhcp-syslog-ip", tinkServerIP, | ||
"--dhcp-tftp-ip", fmt.Sprintf("%s:69", tinkServerIP), | ||
"--dhcp-http-ipxe-binary-url", fmt.Sprintf("http://%s:8080/ipxe/", tinkServerIP), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The upstream Smee version v0.11.0 has 8080
as the default port here and that is a bug that is fixed in future versions. This should be 80
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
updated in 8b97b15a4
@jacobweinstock i have done changes on the default port, also updated the test. Is there anything else? |
Hi @jacobweinstock , just checking in - has there been any advancements / plans in regards to if / when this PR can be merged? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks, @Gedulis12
/ok-to-test |
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: jacobweinstock The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/cherry-pick release-0.22 |
@jacobweinstock: #8760 failed to apply on top of branch "release-0.22":
In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Issue #, if available:
Description of changes:
Added a cli flag option
--smee-bind-ip
, which tells smee service on which interface to bind it's services for serving pxe boot binaries (http, tftp etc..)Currently EKS-A uses the default smee behaviour, which binds it's services on the first available hosts public interface. This causes an issue with the admin host if it is using multiple interfaces, as the "first" interface in the list is not necessarily the the one that's intended to be used as EKS-A network.
Testing (if applicable):
Added a test case for TestTinkerbellStackInstallWithDifferentOptions in
pkg/providers/tinkerbell/stack/stack_test.go
which checks thedocker run
command for boots service.Additionally added validations in SetupAndValidateCreateCluster() which checks if the provided IP is valid and bound to any network interface on the host.
All unit tests pass.
Documentation added/planned (if applicable):
Updated
docs/content/en/docs/reference/eksctl/anywhere_create_cluster.md
with the new CLI optionBy submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.