-
Notifications
You must be signed in to change notification settings - Fork 544
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
fix(requirements): add support for non resource url rules #514
fix(requirements): add support for non resource url rules #514
Conversation
7e79caf
to
8c3547d
Compare
8c3547d
to
ad76da4
Compare
/assign @alecmerdler |
/test e2e-aws |
Tested with this patch against olm master and it's working great 👍 |
/retest |
@@ -155,3 +163,16 @@ func (c *CSVRuleChecker) hasOwnerConflicts(ownerRefs []metav1.OwnerReference) bo | |||
|
|||
return conflicts | |||
} | |||
|
|||
func ruleValid(rule rbacv1.PolicyRule) error { | |||
if len(rule.Verbs) == 0 { |
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.
does the particular openapi flavor kube supports let you specify minItems
length on the verb list?
/lgtm |
/test e2e-aws |
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: ecordell 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 |
fix(requirements): add support for non resource url rules
Description
Fixes: ALM-755 and ALM-756