feat(yurt-iot-dock): add --skip-preflight-checks flag to bypass prefl…#2527
Open
amuammer wants to merge 2 commits intoopenyurtio:masterfrom
Open
feat(yurt-iot-dock): add --skip-preflight-checks flag to bypass prefl…#2527amuammer wants to merge 2 commits intoopenyurtio:masterfrom
amuammer wants to merge 2 commits intoopenyurtio:masterfrom
Conversation
|
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.



What type of PR is this?
/kind feature
/sig iot
What this PR does / why we need it:
Adds a new
--skip-preflight-checksflag to yurt-iot-dock that allowsbypassing the preflight namespace validation check on startup.
In some edge deployment scenarios (restricted RBAC, bootstrapping, or
environments where the namespace exists but is temporarily unreachable),
the preflight check fails and causes the controller to exit immediately,
even when the rest of the system is functional.
This flag gives operators the flexibility to skip the check when needed.
Which issue(s) this PR fixes:
Fixes #
Special notes for your reviewer:
The flag defaults to
false, so existing behavior is completely unchanged.Only when
--skip-preflight-checks=trueis explicitly passed will thepreflight check be skipped.
Changes:
cmd/yurt-iot-dock/app/options/options.go: AddedSkipPreflightChecksbool field and registered the flagcmd/yurt-iot-dock/app/core.go: Guarded the preflight block with the new flagDoes this PR introduce a user-facing change?
Exmaple