-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: background audit config, severity and category annotations.
Updates policy metadata.yml file adding the new configuration to enabled background audit checks and adds two new annotations used by the audit scanner in its reports. Signed-off-by: José Guilherme Vanz <[email protected]>
- Loading branch information
Showing
1 changed file
with
19 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,32 @@ | ||
rules: | ||
- apiGroups: ["*"] | ||
apiVersions: ["*"] | ||
resources: ["*"] | ||
operations: ["CREATE", "UPDATE", "DELETE", "CONNECT"] | ||
- apiGroups: | ||
- '*' | ||
apiVersions: | ||
- '*' | ||
resources: | ||
- '*' | ||
operations: | ||
- CREATE | ||
- UPDATE | ||
- DELETE | ||
- CONNECT | ||
mutating: false | ||
contextAware: false | ||
backgroundAudit: false | ||
executionMode: kubewarden-wapc | ||
annotations: | ||
# artifacthub specific | ||
io.artifacthub.displayName: Echo | ||
io.artifacthub.resources: "*" | ||
io.artifacthub.resources: '*' | ||
io.artifacthub.keywords: developer | ||
# kubewarden specific | ||
io.kubewarden.policy.ociUrl: ghcr.io/kubewarden/policies/echo | ||
# io.kubewarden.hidden-ui: "true" | ||
# rest | ||
io.kubewarden.policy.title: echo | ||
io.kubewarden.policy.description: A policy that echoes back Kubernetes' AdmissionReview - useful for Policy Authors | ||
io.kubewarden.policy.author: "Kubewarden developers <[email protected]>" | ||
io.kubewarden.policy.description: A policy that echoes back Kubernetes' AdmissionReview | ||
- useful for Policy Authors | ||
io.kubewarden.policy.author: Kubewarden developers <[email protected]> | ||
io.kubewarden.policy.url: https://github.com/kubewarden/echo | ||
io.kubewarden.policy.source: https://github.com/kubewarden/echo | ||
io.kubewarden.policy.license: Apache-2.0 | ||
io.kubewarden.policy.category: Debug | ||
io.kubewarden.policy.severity: info |