-
Notifications
You must be signed in to change notification settings - Fork 438
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
Set default values in API rather than in webhooks #5111
Conversation
Hi @bryan-cox. Thanks for your PR. I'm waiting for a kubernetes-sigs 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 ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #5111 +/- ##
==========================================
+ Coverage 51.35% 52.34% +0.98%
==========================================
Files 273 272 -1
Lines 24670 29343 +4673
==========================================
+ Hits 12670 15360 +2690
- Misses 11211 13178 +1967
- Partials 789 805 +16 ☔ View full report in Codecov by Sentry. |
@nojnhuh @jackfrancis - do we want to continue with this PR? If so, could I get an ok to test this please? |
/ok-to-test |
/retest |
For pull-cluster-api-provider-azure-e2e-aks
Not sure how these would be empty when they are defaulted here and here. Does the e2e use any API changes from the PR? |
317973f
to
b659359
Compare
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.
Loving all the red in this diff so far!
// Default is the same as the ScanInterval so default to that same value if it isn't set | ||
result.ScaleDownDelayAfterDelete = result.ScanInterval |
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.
I don't think this can be expressed in the kubebuilder annotations, so maybe best to keep just this field here.
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.
Isn't setting this to the same default value in the kubebuilder annotations accomplishing the same purpose here though? It's just a default value if the value isn't set, which what was happening here before.
Name string `json:"name"` | ||
Name string `json:"name"` | ||
|
||
// +kubebuilder:default:="10.240.0.0/16" |
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.
The logic we had for this already seems necessary, so I don't think it buys us anything to include this kubebuilder annotation.
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.
Happy to remove it but does it hurt anything to include the default here?
@@ -419,6 +422,7 @@ type AzureManagedMachinePoolClassSpec struct { | |||
|
|||
// ManagedControlPlaneVirtualNetworkClassSpec defines the ManagedControlPlaneVirtualNetwork properties that may be shared across several managed control plane vnets. | |||
type ManagedControlPlaneVirtualNetworkClassSpec struct { | |||
// +kubebuilder:default:="10.0.0.0/8" |
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.
Same as the other CIDR block comment above.
/retest |
I'll get back to this as soon as I can. /assign |
/test pull-cluster-api-provider-azure-e2e-aks |
/test pull-cluster-api-provider-azure-e2e-aks |
475fc5d
to
d06d8fb
Compare
@nojnhuh could you take another look at this when time permits? |
Sorry, I'm not optimistic I'll be able to get back to this before I take off for the holidays. I'll let someone else take on reviewing this if I can't get back to it. /unassign |
No problem, I got it! |
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.
Looks good pending one minor nit!
@mboersma Can you take a look as well so we have two reviewers? |
This commit removes default values previously set in webhooks and adds the default values directly in the API through the kubebuilder annotation, `kubebuilder:default`. Signed-off-by: Bryan Cox <[email protected]>
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
/test pull-cluster-api-provider-azure-e2e-optional
/test pull-cluster-api-provider-azure-apiversion-upgrade
LGTM label has been added. Git tree hash: a95acb3b51f6d1cb17d036ba57bcba509f55d3c6
|
@bryan-cox: The following tests failed, say
Full PR test history. Your PR dashboard. Please help us cut down on flakes by linking to an open issue when you hit one in your PR. 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. I understand the commands that are listed here. |
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
/approve
Thank you for your work and patience on this! @bryan-cox
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: willie-yao 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 |
/retest |
What type of PR is this?
/kind cleanup
What this PR does / why we need it:
This commit removes default values previously set in webhooks and adds the default values directly in the API through the kubebuilder annotation,
kubebuilder:default
.Which issue(s) this PR fixes (optional, in
fixes #<issue number>(, fixes #<issue_number>, ...)
format, will close the issue(s) when PR gets merged):Fixes #4204
Special notes for your reviewer:
TODOs:
Release note: