Fix KIND cluster setup: CA cert injection, --no-argocd flag, and help command - #321
Merged
Conversation
ajfloeder
requested review from
bdevcich,
matthew-richerson and
roehrich-hpe
as code owners
April 8, 2026 15:42
roehrich-hpe
approved these changes
Apr 8, 2026
Signed-off-by: Anthony Floeder <anthony.floeder@hpe.com>
ajfloeder
force-pushed
the
kind-cluster-repairs
branch
from
April 8, 2026 16:13
bc42b5b to
871d3ce
Compare
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Improves
tools/kind.shfor local KIND cluster development workflows.Changes
--no-argocdflag: Added a--no-argocdoption tocreate(andreset) that deploys using the legacy overlay instead of ArgoCD, useful for quick local testing without a gitops repo.Corporate CA cert injection: On macOS, automatically exports certs from
System.keychainand injects them into all KIND nodes on cluster creation. This is a no-op on machines without a corporate TLS proxy (e.g. Zscaler). Fixes image pull failures through corporate MITM proxies.Test user creation: Added
create_test_userto create the flux user (UID=1051, GID=1052) on Rabbit worker nodes during cluster creation, satisfying thennf-integration-testBeforeSuite check.--help/helpcommand: Added--helpflag andhelpsubcommand that print usage information. Movedusage()before the option-parsing loop so--helpworks at parse time.resetnote in help: Added a note in theresetcommand description reminding users that locally-built images are not automatically reloaded into the new cluster — they need to re-runpushor./nnf-deploy make kind-pushafter a reset.