-
Notifications
You must be signed in to change notification settings - Fork 165
Add domain validation to catch invalid names before build/deploy #3152
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
Conversation
Signed-off-by: RayyanSeliya <[email protected]>
Signed-off-by: RayyanSeliya <[email protected]>
|
Hi @RayyanSeliya. Thanks for your PR. I'm waiting for a github.com 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-sigs/prow repository. |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #3152 +/- ##
==========================================
+ Coverage 59.41% 60.22% +0.81%
==========================================
Files 134 134
Lines 13495 13526 +31
==========================================
+ Hits 8018 8146 +128
+ Misses 4537 4408 -129
- Partials 940 972 +32
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Signed-off-by: RayyanSeliya <[email protected]>
|
/ok-to-test |
|
/retest |
|
Hey @gauron99 I thinks it's ready now all clear ! |
|
I think it would be better to keep the |
lkingland
left a comment
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.
/lgtm
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: lkingland, RayyanSeliya 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 |
Changes
Adds DNS-1123 subdomain validation for domain names before build/deploy operations. Invalid domain names now fail immediately with clear error messages instead of proceeding through lengthy builds.
Implementation:
ValidateDomain()function using Kubernetes DNS-1123 subdomain validation (pkg/utils/names.go)deployConfig.Validate()and error handling inrunDeploy()(cmd/deploy.go)ErrInvalidDomainerror type (pkg/functions/errors.go) with user-friendly CLI messageFixes #3151
Before:
After:
/kind enhancement
Release Note