Add domain validation to catch invalid names before build/deploy#3152
Add domain validation to catch invalid names before build/deploy#3152knative-prow[bot] merged 3 commits intoknative:mainfrom
Conversation
Signed-off-by: RayyanSeliya <rayyanseliya786@gmail.com>
Signed-off-by: RayyanSeliya <rayyanseliya786@gmail.com>
|
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. DetailsInstructions 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:
|
|
/ok-to-test |
|
/retest |
|
Hey @gauron99 I thinks it's ready now all clear ! |
|
I think it would be better to keep the |
|
[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 DetailsNeeds 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