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

[PodSecurity] Implement metricRecorder for admission #104217

Merged
merged 13 commits into from
Oct 21, 2021

Conversation

jyz0309
Copy link
Contributor

@jyz0309 jyz0309 commented Aug 7, 2021

Signed-off-by: jyz0309 [email protected]

What type of PR is this?

/kind feature

What this PR does / why we need it:

Which issue(s) this PR fixes:

#103207

Special notes for your reviewer:

Does this PR introduce a user-facing change?

NONE

Additional documentation e.g., KEPs (Kubernetes Enhancement Proposals), usage docs, etc.:

NONE

@k8s-ci-robot k8s-ci-robot added release-note-none Denotes a PR that doesn't merit a release note. do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. kind/feature Categorizes issue or PR as related to a new feature. size/L Denotes a PR that changes 100-499 lines, ignoring generated files. cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. do-not-merge/needs-sig Indicates an issue or PR lacks a `sig/foo` label and requires one. needs-triage Indicates an issue or PR lacks a `triage/foo` label and requires one. needs-priority Indicates a PR lacks a `priority/foo` label and requires one. needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. labels Aug 7, 2021
@k8s-ci-robot
Copy link
Contributor

Hi @jyz0309. Thanks for your PR.

I'm waiting for a kubernetes member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work. Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

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/test-infra repository.

@k8s-ci-robot k8s-ci-robot added sig/auth Categorizes an issue or PR as relevant to SIG Auth. sig/instrumentation Categorizes an issue or PR as relevant to SIG Instrumentation. sig/scheduling Categorizes an issue or PR as relevant to SIG Scheduling. and removed do-not-merge/needs-sig Indicates an issue or PR lacks a `sig/foo` label and requires one. labels Aug 7, 2021
@k8s-ci-robot k8s-ci-robot requested review from adtac and liggitt August 7, 2021 17:14
@jyz0309 jyz0309 changed the title [WIP] Implement metricRecorder for admission Implement metricRecorder for admission Aug 8, 2021
@k8s-ci-robot k8s-ci-robot removed the do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label Aug 8, 2021
@jyz0309 jyz0309 changed the title Implement metricRecorder for admission [PodSecurity] Implement metricRecorder for admission Aug 8, 2021
@jyz0309
Copy link
Contributor Author

jyz0309 commented Aug 8, 2021

/assign @tallclair PTAL~ I don't know if my implementation meets your requirements🙈

@tallclair tallclair self-assigned this Aug 8, 2021
@dashpole
Copy link
Contributor

/assign @logicalhan @CatherineF-dev

@k8s-ci-robot
Copy link
Contributor

@dashpole: GitHub didn't allow me to assign the following users: CatherineF-dev.

Note that only kubernetes members, repo collaborators and people who have commented on this issue/PR can be assigned. Additionally, issues/PRs can only have 10 assignees at the same time.
For more information please see the contributor guide

In response to this:

/assign @logicalhan @CatherineF-dev

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/test-infra repository.

@dashpole
Copy link
Contributor

/ok-to-test
/triage accepted

@k8s-ci-robot k8s-ci-robot added ok-to-test Indicates a non-member PR verified by an org member that is safe to test. triage/accepted Indicates an issue or PR is ready to be actively worked on. and removed needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. needs-triage Indicates an issue or PR lacks a `triage/foo` label and requires one. labels Aug 12, 2021
@jyz0309
Copy link
Contributor Author

jyz0309 commented Oct 12, 2021

I don't know why verify-import test failed... Just need some help for this test.😳

@s-urbaniak
Copy link
Contributor

@jyz0309 you'll most likely have to add these imports to

- baseImportPath: "./vendor/k8s.io/pod-security-admission/"
allowedImports:
- k8s.io/api
- k8s.io/apimachinery
- k8s.io/apiserver/pkg/admission
- k8s.io/apiserver/pkg/server
- k8s.io/client-go
- k8s.io/klog
- k8s.io/pod-security-admission
- k8s.io/component-base/featuregate
- k8s.io/component-base/logs
- k8s.io/component-base/cli
- k8s.io/utils

@k8s-ci-robot k8s-ci-robot added area/release-eng Issues or PRs related to the Release Engineering subproject sig/release Categorizes an issue or PR as relevant to SIG Release. labels Oct 14, 2021
@jyz0309
Copy link
Contributor Author

jyz0309 commented Oct 14, 2021

/assign @deads2k @nikhita

@jyz0309
Copy link
Contributor Author

jyz0309 commented Oct 14, 2021

@jyz0309 you'll most likely have to add these imports to

- baseImportPath: "./vendor/k8s.io/pod-security-admission/"
allowedImports:
- k8s.io/api
- k8s.io/apimachinery
- k8s.io/apiserver/pkg/admission
- k8s.io/apiserver/pkg/server
- k8s.io/client-go
- k8s.io/klog
- k8s.io/pod-security-admission
- k8s.io/component-base/featuregate
- k8s.io/component-base/logs
- k8s.io/component-base/cli
- k8s.io/utils

Thanks!

Copy link
Member

@tallclair tallclair left a comment

Choose a reason for hiding this comment

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

Almost there!

Signed-off-by: jyz0309 <[email protected]>

use init to register metric

Signed-off-by: jyz0309 <[email protected]>

fix test

Signed-off-by: jyz0309 <[email protected]>

remove check

Signed-off-by: jyz0309 <[email protected]>

remove blank line

Signed-off-by: jyz0309 <[email protected]>

add allowedImports

Signed-off-by: jyz0309 <[email protected]>

Add mock recorder

Signed-off-by: jyz0309 <[email protected]>

format code

Signed-off-by: jyz0309 <[email protected]>

separe record into 3 function

Signed-off-by: jyz0309 <[email protected]>
Signed-off-by: jyz0309 <[email protected]>
@jyz0309
Copy link
Contributor Author

jyz0309 commented Oct 19, 2021

/retest-required

Copy link
Member

@tallclair tallclair left a comment

Choose a reason for hiding this comment

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

/lgtm
/approve

Thanks!

I'll take the follow up, to add the other 2 metrics & unit tests.

@k8s-ci-robot k8s-ci-robot added the lgtm "Looks good to me", indicates that a PR is ready to be merged. label Oct 19, 2021
@tallclair tallclair added the tide/merge-method-squash Denotes a PR that should be squashed by tide when it merges. label Oct 19, 2021
@jyz0309
Copy link
Contributor Author

jyz0309 commented Oct 20, 2021

/lgtm /approve

Thanks!

I'll take the follow up, to add the other 2 metrics & unit tests.

Oh, maybe I can help add other 2 metrics, I don't add it in this PR just because I don't want to make this PR too complex to review🤣

@jyz0309
Copy link
Contributor Author

jyz0309 commented Oct 20, 2021

It seems that this PR still need your approve to merge. Can you help me merge it? @tallclair Thanks a lot!

@liggitt
Copy link
Member

liggitt commented Oct 21, 2021

/approve

@k8s-ci-robot
Copy link
Contributor

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: jyz0309, liggitt, tallclair

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 /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@k8s-ci-robot k8s-ci-robot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label Oct 21, 2021
@k8s-ci-robot k8s-ci-robot merged commit ae9ca48 into kubernetes:master Oct 21, 2021
@k8s-ci-robot k8s-ci-robot added this to the v1.23 milestone Oct 21, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
approved Indicates a PR has been approved by an approver from all required OWNERS files. area/release-eng Issues or PRs related to the Release Engineering subproject cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. kind/feature Categorizes issue or PR as related to a new feature. lgtm "Looks good to me", indicates that a PR is ready to be merged. needs-priority Indicates a PR lacks a `priority/foo` label and requires one. ok-to-test Indicates a non-member PR verified by an org member that is safe to test. release-note-none Denotes a PR that doesn't merit a release note. sig/auth Categorizes an issue or PR as relevant to SIG Auth. sig/instrumentation Categorizes an issue or PR as relevant to SIG Instrumentation. sig/release Categorizes an issue or PR as relevant to SIG Release. sig/scheduling Categorizes an issue or PR as relevant to SIG Scheduling. size/L Denotes a PR that changes 100-499 lines, ignoring generated files. tide/merge-method-squash Denotes a PR that should be squashed by tide when it merges. triage/accepted Indicates an issue or PR is ready to be actively worked on.
Projects
Archived in project
Development

Successfully merging this pull request may close these issues.

10 participants