Skip to content
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: Validate use verb for PodSecurityPolicies #68

Merged
merged 1 commit into from
Feb 20, 2020
Merged

fix: Validate use verb for PodSecurityPolicies #68

merged 1 commit into from
Feb 20, 2020

Conversation

danielpacak
Copy link
Contributor

Resolves: #63

Resolves: #63

Signed-off-by: Daniel Pacak <pacak.daniel@gmail.com>
@codecov-io
Copy link

Codecov Report

Merging #68 into master will increase coverage by 0.15%.
The diff coverage is 100%.

Impacted file tree graph

@@            Coverage Diff            @@
##           master     #68      +/-   ##
=========================================
+ Coverage   70.64%   70.8%   +0.15%     
=========================================
  Files           5       5              
  Lines         385     387       +2     
=========================================
+ Hits          272     274       +2     
  Misses         98      98              
  Partials       15      15
Impacted Files Coverage Δ
pkg/cmd/resource_resolver.go 85.13% <100%> (+0.41%) ⬆️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 3b55776...3ee46c2. Read the comment docs.

@@ -143,6 +143,9 @@ func (rv *resourceResolver) isVerbSupportedBy(verb string, resource apismeta.API
if verb == rbac.VerbAll {
return true
}
if resource.Name == "podsecuritypolicies" && verb == "use" {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: If we support any other special verbs in the future, we can write this like the following.

    specials = []schema.XXX{        
          {
              Group:    "extensions",
              Resource: "podsecuritypolicies",
              Verb: "use",
          },
      }
for _, s := range specials {     
    if resource.Name ==  s.Resource && verb == s.Verb {
        return true
    }
}

@danielpacak danielpacak merged commit f78ee94 into aquasecurity:master Feb 20, 2020
@danielpacak danielpacak deleted the fix/issue_64/use_psps branch February 20, 2020 12:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Who can use podsecuritypolicy
3 participants