-
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. (#23)
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]> Co-authored-by: Víctor Cuadrado Juan <[email protected]>
- Loading branch information
Showing
1 changed file
with
47 additions
and
20 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,33 +1,60 @@ | ||
rules: | ||
- apiGroups: [""] | ||
apiVersions: ["v1"] | ||
resources: ["pods"] | ||
operations: ["CREATE"] # kubernetes doesn't allow to add/remove privileged containers to an already running pod | ||
- apiGroups: [""] | ||
apiVersions: ["v1"] | ||
resources: ["replicationcontrollers"] | ||
operations: ["CREATE", "UPDATE"] | ||
- apiGroups: ["apps"] | ||
apiVersions: ["v1"] | ||
resources: ["deployments","replicasets","statefulsets","daemonsets"] | ||
operations: ["CREATE", "UPDATE"] | ||
- apiGroups: ["batch"] | ||
apiVersions: ["v1"] | ||
resources: ["jobs","cronjobs"] | ||
operations: ["CREATE", "UPDATE"] | ||
- apiGroups: | ||
- '' | ||
apiVersions: | ||
- v1 | ||
resources: | ||
- pods | ||
operations: | ||
- CREATE | ||
- apiGroups: | ||
- '' | ||
apiVersions: | ||
- v1 | ||
resources: | ||
- replicationcontrollers | ||
operations: | ||
- CREATE | ||
- UPDATE | ||
- apiGroups: | ||
- apps | ||
apiVersions: | ||
- v1 | ||
resources: | ||
- deployments | ||
- replicasets | ||
- statefulsets | ||
- daemonsets | ||
operations: | ||
- CREATE | ||
- UPDATE | ||
- apiGroups: | ||
- batch | ||
apiVersions: | ||
- v1 | ||
resources: | ||
- jobs | ||
- cronjobs | ||
operations: | ||
- CREATE | ||
- UPDATE | ||
mutating: false | ||
contextAware: false | ||
executionMode: kubewarden-wapc | ||
annotations: | ||
# artifacthub specific | ||
io.artifacthub.displayName: Environment Variable Secrets Scanner | ||
io.artifacthub.resources: Pod,Deployment,Replicaset,Statefulset,Daemonset,Replicationcontroller,Job,Cronjob | ||
io.artifacthub.keywords: secrets, api keys, tokens, secret leak, confidential data, confidential data leak | ||
io.artifacthub.keywords: secrets, api keys, tokens, secret leak, confidential data, | ||
confidential data leak | ||
# kubewarden specific | ||
io.kubewarden.policy.ociUrl: ghcr.io/kubewarden/policies/env-variable-secrets-scanner | ||
# rest | ||
io.kubewarden.policy.title: env-variable-secrets-scanner | ||
io.kubewarden.policy.description: Policy that inspects env vars and rejects a request if a secret was found | ||
io.kubewarden.policy.author: "Kubewarden developers <[email protected]>" | ||
io.kubewarden.policy.description: Policy that inspects env vars and rejects a request | ||
if a secret was found | ||
io.kubewarden.policy.author: Kubewarden developers <[email protected]> | ||
io.kubewarden.policy.url: https://github.com/kubewarden/env-variable-secrets-scanner-policy | ||
io.kubewarden.policy.source: https://github.com/kubewarden/env-variable-secrets-scanner-policy | ||
io.kubewarden.policy.license: Apache-2.0 | ||
io.kubewarden.policy.category: Secrets | ||
io.kubewarden.policy.severity: medium |