-
Notifications
You must be signed in to change notification settings - Fork 14
fix: pre-release validation fixes for kubeadm, networking, and CTK #716
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
Merged
ArangoGutierrez
merged 19 commits into
NVIDIA:main
from
ArangoGutierrez:release-validation
Mar 11, 2026
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
7f8f06f
fix: use local IP for kubeadm init health checks (single-node)
ArangoGutierrez e857b51
fix: HA kubeadm init uses local IP to avoid NLB chicken-and-egg
ArangoGutierrez cb02c68
fix: create nvidia-container-runtime symlink on RPM platforms
ArangoGutierrez 38ffde8
fix: truncate NLB target group name to AWS 32-char limit
ArangoGutierrez 5a2e19a
test: add explicit K8s version to RPM test configs
ArangoGutierrez ce675ca
fix: use public IP for control plane endpoint when no LB
ArangoGutierrez c8ec13b
fix: add self-referencing SG rules for cluster inter-node traffic
ArangoGutierrez f835f00
fix: add self-referencing SG rules to single-node security group
ArangoGutierrez 318f0de
fix: rewrite kubeconfig server URL to public endpoint after download
ArangoGutierrez 05e6dc9
feat: add ExpandPath utility for tilde expansion
ArangoGutierrez 16c165c
fix: expand tilde in privateKey paths before reading
ArangoGutierrez 9b34cc5
fix: use local IP for kubeadm init in all cluster modes, not just HA
ArangoGutierrez cbb6aa4
fix: use private IP for cluster endpoint in non-HA mode
ArangoGutierrez b99b4ae
fix: restart cri-dockerd before kubeadm init to prevent socket errors
ArangoGutierrez 5b8fda3
fix: ensure nvidia-container-runtime exists at /usr/bin on all platforms
ArangoGutierrez f40a562
fix: prevent duplicate apiServer block in kubeadm config with feature…
ArangoGutierrez 3f479cd
fix: resolve CI lint failures (goimports, gosec, markdown)
ArangoGutierrez bf0b12a
fix: disable repo_gpgcheck for NVIDIA CTK repo on RPM platforms
ArangoGutierrez c8c1965
fix: pass --cri-socket to legacy kubeadm commands on multi-CRI hosts
ArangoGutierrez File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Truncating the environment name to fit the 32-char AWS limit can cause name collisions for different environments that share a long common prefix, leading to CreateLoadBalancer/CreateTargetGroup failures that are hard to diagnose. Consider incorporating a short, deterministic suffix (e.g., a hash of the full env name) when truncation is needed so names remain unique while still meeting the length constraint.