-
Notifications
You must be signed in to change notification settings - Fork 10
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
Add CoreDHCP to Helm #87
base: main
Are you sure you want to change the base?
Conversation
@rainest This is still marked as WIP. Do you anticipate trying to close it this month? |
3cf417a
to
9467887
Compare
@alexlovelltroy end of month may be iffy, as nothing will happen after the 23rd. Depends on how much we're okay with a less than ideal implementation. The current set of commits brings it in line with the updated coredhcp with built-in TFTP, though that appears a bit broken still--my attempts to get files that should be available resulted in timeouts, so I need to figure out what's up with the routing there.
Nevermind, moot point as of c379d16. These are now baked in. Aside from the missing hosts file, I can probably live with the ugly templated YAML doc within a ConfigMap for now. |
Switch from dnsmasq to coredhcp with coresmd for DHCP and TFTP/iPXE services.
9467887
to
332d053
Compare
332d053 is ready-ish with the lazy templated YAML string within a ConfigMap nonsense. It can't actually serve TFTP outside the cluster without OpenCHAMI/coresmd#14, but won't really change after that--just a coresmd version bump and the additional plugin toggle. TFTP pulls from within the cluster do work fine, so aside from the CNI fun, it's working as expected. #86 (comment) explains this. dnsmasq may have a single-port mode similar to coresmd#14 below, but I don't see that we had it configured, so I don't think this was likely working before. Haven't tried DHCP; need to find a simple way to test that. |
Update the chart's coredhcp image to 0.3.0 and configure single port mode.
With coredhcp 0.3.0 this can successfully test TFTP pull. The test is cluster-internal and thus doesn't quite test the single-port NAT traversal, though I've tried that externally successfully. |
25b699f
to
81b73f3
Compare
Remove dnsmasq from the Helm chart. Add Deployments for atftpd and CoreDHCP.
Related to #86