-
Notifications
You must be signed in to change notification settings - Fork 441
🐛 Remove unneeded caBundle: Cg== value #495
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
🐛 Remove unneeded caBundle: Cg== value #495
Conversation
matthchr
commented
Oct 1, 2020
- As per the comment in source, this field is no longer needed.
- As per the comment in source, this field is no longer needed.
Related to kubernetes-sigs/kubebuilder#1699 |
@DirectXMan12 Can you take a look at this? |
@@ -198,7 +198,7 @@ func (Minimum) Help() *markers.DefinitionHelp { | |||
return &markers.DefinitionHelp{ | |||
Category: "CRD validation", | |||
DetailedHelp: markers.DetailedHelp{ | |||
Summary: "specifies the minimum numeric value that this field can have.", | |||
Summary: "specifies the minimum numeric value that this field can have. Negative integers are supported.", |
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.
Note: I didn't add this... maybe somebody forgot to regenerate something?
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.
yeah, someone forgot to regenerate, and the testing missed it somehow.
@DirectXMan12 @pwittrock - Can you take a look? |
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: DirectXMan12, matthchr 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 |
In support of the move to v1 CRDs, we will need up-to-date generation tooling. Gatekeeper was still on controller-gen 0.3.0, so this PR updates that to 0.5.0. One notable detail here is the removal of the caBundle field from the webhook configurations. This is not a mistake. This field was related to a bug in k8s that is now fixed, and thus the field was removed from the generated output in controller-gen 0.4.1. See kubernetes-sigs/controller-tools#495 for more info. This PR contributes to open-policy-agent#550 Signed-off-by: juliankatz <[email protected]>