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

chore(deps): update dependency open-policy-agent/opa to v0.70.0 #555

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 25, 2024

This PR contains the following updates:

Package Update Change
open-policy-agent/opa minor v0.63.0 -> v0.70.0

Release Notes

open-policy-agent/opa (open-policy-agent/opa)

v0.70.0

Compare Source

This release contains a mix of features, performance improvements, and bugfixes.

Optimized read mode for OPA's in-memory store (#​7125)

A new optimized read mode has been added to the default in-memory store, where data written to the store is eagerly converted
to AST values (the data format used during evaluation). This removes the time spent converting raw data values to AST
during policy evaluation, thereby improving performance.

The memory footprint of the store will increase, as processed AST values generally take up more space in memory than the
corresponding raw data values, but overall memory usage of OPA might remain more stable over time, as pre-converted data
is shared across evaluations and isn't recomputed for each evaluation, which can cause spikes in memory usage.

This mode can be enabled for opa run, opa eval, and opa bench by setting the --optimize-store-for-read-speed flag.

More information about this feature can be found here.

Co-authored by @​johanfylling and @​ashutosh-narkar.

Topdown and Rego
  • topdown: Use new Inter-Query Value Cache for json.match_schema built-in function (#​7011) authored by @​anderseknert reported by @​lcarva
  • ast: Fix location text attribute for multi-value rules with generated body (#​7128) authored by @​anderseknert
  • ast: Fix regression in opa check where a file that referenced non-provided schemas failed validation (#​7124) authored by @​tjons
  • test/cases/testdata: Fix bug in test by replacing unification by explicit equality check (#​7093) authored by @​matajoh
  • ast: Replace use of yaml.v2 library with yaml.v3. The earlier version would parse yes/no values as boolean. The usage of yaml.v2 in the parser was unintentional and now has been updated to yaml.v3 (#​7090) authored by @​anderseknert
Runtime, Tooling, SDK
  • cmd: Make opa check respect --ignore when --bundle flag is set (#​7136) authored by @​anderseknert
  • server/writer: Properly handle result encoding errors which earlier on failure would emit logs such as superfluous call to WriteHeader() while still returning 200 HTTP status code. Now, errors encoding the payload properly lead to 500 HTTP status code, without extra logs. Also use Header().Set() not Header().Add() to avoid duplicate content-type headers (#​7114) authored by @​srenatus
  • cmd: Support file:// format for TLS key material file flags in opa run (#​7094) authored by @​alexrohozneanu
  • plugins/rest/azure: Support managed identity for App Service / Container Apps (#​7085) reported and authored by @​apc-kamezaki
  • debug: Fix step-over behaviour when exiting partial rules (#​7096) authored by @​johanfylling
  • util+plugins: Fix potential memory leaks with explicit timer cancellation (#​7089) authored by @​philipaconrad
Docs, Website, Ecosystem
Miscellaneous
  • Dependency updates; notably:
    • build(deps): bump github.com/containerd/containerd from 1.7.22 to 1.7.23
    • build(deps): bump github.com/prometheus/client_golang from 1.20.4 to 1.20.5
    • build(deps): bump golang.org/x/net from 0.29.0 to 0.30.0
    • build(deps): bump golang.org/x/time from 0.6.0 to 0.7.0
    • build(deps): bump google.golang.org/grpc from 1.67.0 to 1.67.1

v0.69.0

Compare Source

This release contains a mix of features, bugfixes and necessary tooling and test changes required to support the upcoming OPA 1.0 release.

Inter-Query Value Cache (#​6908)

OPA now has a new inter-query value cache added to the SDK. It is intended to be used for values that are expensive to
compute and can be reused across multiple queries. The cache can be leveraged by built-in functions to store values
that otherwise aren't appropriate for the existing inter-query cache; for instance when the entry size isn't an
appropriate or primary limiting factor for cache eviction.

The default size of the inter-query value cache is unbounded, but can be configured via the
caching.inter_query_builtin_value_cache.max_num_entries configuration field. OPA will drop random items from the cache
if this limit is exceeded.

The cache is used by the regex and glob built-in functions, which previously had individual, non-configurable
caches with a max entry size of 100 each.

Currently, the cache is only exercised when running OPA in server mode (ie. opa run -s). Also this feature is unsupported
for WASM.

Authored by @​ashutosh-narkar, reported by @​amirsalarsafaei

Topdown and Rego
Runtime, Tooling, SDK
  • Future-proofing tests in the sdk, downlaod, server , cmd etc. packages to be 1.0 compatible (authored by @​johanfylling)
  • cmd: Add --v0-compatible flag to make OPA behave as v0.x post v1.0 release (#​7065) authored by @​johanfylling
  • util: Strip UTF-8 BOM from input JSON when found (#​6988) authored by @​anderseknert reported by @​adhilto
  • plugins/rest: Support reading AWS token from the filesystem for the AWS container credential provider (#​6997) authored by @​cmaddalozzo
  • debug: Add RegoOption launch option to debugger for setting custom Rego options (#​7045) authored by @​johanfylling
  • debug: Always include Input and Data variable scopes to ease discoverability of the scopes (#​7074) authored by @​johanfylling
  • wasm: Fix arithmetic comparison for large numbers, caused by an integer overflow (#​6991) authored by @​Ptroger
Docs, Website, Ecosystem
Miscellaneous
  • build: Bump github.com/golang/glob, remove replace directive (#​7024) authored by @​srenatus reported by @​mmannerm
  • Dependency updates; notably:
    • build(deps): bump github.com/containerd/containerd from 1.7.21 to 1.7.22
    • build(deps): bump github.com/prometheus/client_golang from 1.20.2 to 1.20.4
    • build(deps): bump go.uber.org/automaxprocs from 1.5.3 to 1.6.0
    • build(deps): bump golang.org/x/net from 0.28.0 to 0.29.0
    • build(deps): bump google.golang.org/grpc from 1.66.0 to 1.67.0
    • build(go): bump 1.22.5 to 1.23.1 (#​7006) authored by @​srenatus

v0.68.0

Compare Source

This release contains a mix of features and bugfixes.

Breaking Changes
entrypoint annotation implies document scope (#​6798)

The entrypoint annotation's scope requirement has changed from rule to document (https://github.com/open-policy-agent/opa/issues/6798). Furthermore, if no scope annotation is declared for a METADATA block preceding a rule, the presence of an entrypoint annotation with a true value will assign the block a document scope, where the rule scope is otherwise the default.

In practice, a rule entrypoint always point to the entire document and not a particular rule definition. The previous behavior was a bug, and one we've now addressed.

Authored by @​anderseknert

Topdown and Rego
  • ast: Fixing nil-pointer dereference in compiler for partial rule edge case (#​6930) authored by @​johanfylling
  • ast+parser: Add hint to future-proof imports (6968) authored by @​srenatus
  • topdown: Adding unification scope to virtual-cache key. Fixing issue where false positive cache hits can occur when unification "restricts" the scope of ref-head rule evaluation (#​6926) authored by @​johanfylling reported by @​anderseknert
  • topdown: Marshal JWT encode sign inputs as JSON (#​6934) authored by @​charlieegan3
Runtime, Tooling, SDK
Security Fix: CVE-2024-8260 (#​6933)

This release includes a fix where OPA would accept UNC locations on Windows. Reading those could leak NTLM hashes.
The attack vector would include an adversary tricking the user in passing an UNC path to OPA, e.g. opa eval -d $FILE.
UNC paths are now forbidden. If this is an issue for you, please reach out on Slack or GitHub issues.

Reported by Shelly Raban
Authored by @​ashutosh-narkar

Docs, Website, Ecosystem
Miscellaneous
  • build: Make it possible to build only wasm testcases (#​6920) authored by @​andreaTP
  • Dependency updates; notably:
    • build(deps): bump github.com/containerd/containerd from 1.7.20 to 1.7.21
    • build(deps): bump github.com/prometheus/client_golang from 1.19.1 to 1.20.2
    • build(deps): bump golang.org/x/net from 0.27.0 to 0.28.0
    • build(deps): bump golang.org/x/time from 0.5.0 to 0.6.0
    • build(deps): bump google.golang.org/grpc from 1.65.0 to 1.66.0

v0.67.1

Compare Source

This is a bug fix release addressing the following issue:

  • util+server: Fix bug around chunked request handling (#​6906) authored by @​philipaconrad, reported by @​David-Wobrock. A request handling bug was introduced in (#​6868), which caused OPA to treat all incoming chunked requests as if they had zero-length request bodies.

v0.67.0

Compare Source

This release contains a mix of features, a new builtin function (strings.count), performance improvements, and bugfixes.

Breaking Change
Request Body Size Limits

OPA now automatically rejects very large requests (#​6868) authored by @​philipaconrad.
Requests with a Content-Length larger than 128 MB uncompressed, and gzipped requests with payloads that decompress to
larger than 256 MB will be rejected, as part of hardening OPA against denial-of-service attacks. Previously, a large
enough request could cause an OPA instance to run out of memory in low-memory sidecar deployment scenarios, just from
attempting to read the request body into memory.

These changes allow improvements in memory usage for the OPA HTTP server, and help OPA deployments avoid some accidental out-of-memory situations.

For most users, no changes will be needed to continue using OPA. However, to control this behavior, two new configuration
keys are available: server.decoding.max_length and server.decoding.gzip.max_length. These control the max size in
bytes to allow for an incoming request payload, and the maximum size in bytes to allow for a decompressed gzip request payload, respectively.

Here's an example OPA configuration using the new keys:

### Set max request size to 64 MB and max gzip size (decompressed) to be 128 MB.
server:
  decoding:
    max_length: 67108864
    gzip:
      max_length: 134217728
Topdown and Rego
  • topdown: New strings.count builtin which returns the number of non-overlapping instances of a substring in a string (#​6827) authored by @​Manish-Giri
  • format: Produce error when --rego-v1 formatted module has rule name conflicting with keyword (#​6833) authored by @​johanfylling
  • topdown: Add cap to caches for regex and glob built-in functions (#​6828) authored by @​johanfylling. This fixes possible memory leaks where caches grow uncontrollably when large amounts of regexes or globs are generated or originate from the input document.
Runtime, Tooling, SDK
  • repl: Add support for correctly loading bundle modules (#​6872) authored by @​ashutosh-narkar
  • plugins/discovery: Allow un-registration of discovery listener (#​6851) authored by @​mjungsbluth. The discovery plugin allows OPA to register a bundle download status listener but previously did not offer a method to unregister that listener
  • plugins/logs: Reduce amount of work performed inside global lock in decision log plugin (#​6859) authored by @​johanfylling
  • plugins/rest: Add a new client credential attribute to support Azure Workload Identity. This would allow workloads deployed on an Azure Kubernetes Services (AKS) cluster to authenticate and access Azure cloud resources (#​6802) authored by @​ledbutter
  • cmd/inspect: Add ability for opa inspect to inspect a single file outside of any bundle (#​6873) authored by @​tjons
  • cmd+bundle: Add --follow-symlinks flag to the opa build command to allow users to build directories with symlinked files, and have the contents of those symlinked files included in the built bundle (#​6800) authored by @​tjons
  • server: Add missing handling in the server for the explain=fails query value (#​6886) authored by @​acamatcisco
Docs, Website, Ecosystem
  • docs: Update bundle section with an example of a manifest with rego_version and file_rego_versions attributes (#​6885) authored by @​ashutosh-narkar
  • docs: Better link language SDKs to make them more discoverable (#​6866) authored by @​charlieegan3
Miscellaneous
  • ci: Add the OpenSSF Scorecard Github Action to help evaluate the OPA project's security posture (#​6848) authored by @​harshitasao
  • Dependency updates; notably:
    • build(go): bump golang from 1.22.4 to 1.22.5
    • build(deps): bump github.com/containerd/containerd from 1.7.18 to 1.7.20
    • build(deps): bump golang.org/x/net from 0.26.0 to 0.27.0
    • build(deps): bump google.golang.org/grpc from 1.64.0 to 1.65.0
    • build(deps): bump go.opentelemetry.io modules (#​6847)

v0.66.0

Compare Source

v0.66.0

This release contains a mix of features, performance improvements, and bugfixes.

Improved Test Reports (2546)

The opa test command now includes a new --var-values flag that enriches reporting of failed tests with the values and locations for variables in the failing expression.
E.g.:

FAILURES
--------------------------------------------------------------------------------
data.test.test_my_policy: FAIL (0ms)

  test.rego:8:
    	x == y + z
    	|    |   |
    	|    |   3
    	|    y + z: 5
    	|    y: 2
    	1

SUMMARY
--------------------------------------------------------------------------------
test.rego:
data.test.test_foo: FAIL (0ms)
--------------------------------------------------------------------------------
FAIL: 1/1

Authored by @​johanfylling, reported by @​grosser.

Reading stdin in opa exec (#​6538)

The opa exec command now supports reading input documents from stdin with the --stdin-input (-I) flag.
E.g.:

$ echo '{"user": "alice"}' | opa exec --stdin-input --bundle my_bundle

Authored by @​colinjlacy, reported by @​humbertoc-silva.

Topdown and Rego
Runtime, Tooling, SDK
Docs, Website, Ecosystem
Miscellaneous
  • Dependency updates; notably:
    • build(go): bump golang from 1.22.3 to 1.22.4
    • build(deps): bump github.com/containerd/containerd from 1.7.17 to 1.7.18
    • build(deps): bump golang.org/x/net from 0.25.0 to 0.26.0

v0.65.0

Compare Source

This release contains a mix of features and bugfixes.

Runtime, Tooling, SDK
Topdown and Rego
Miscellaneous
  • docs: Add arrays to composite values section (#​6727) authored by @​anderseknert reported by @​SpecLad
  • docs: Add remainder operator to grammar (#​6767) authored by @​anderseknert
  • docs: Fix dynamic metadata object in docs (#​6709) authored by @​antonioberben
  • docs: Use best practice package name in test examples (#​6731) authored by @​asleire
  • docs: Update query API doc with details about overriding the def decision path (#​6745) authored by @​ashutosh-narkar
  • ci: pin GitHub Actions macos runner version and build for darwin/amd64 (#​6720) reported and authored by @​suzuki-shunsuke
  • Dependency updates; notably:
    • build(go): bump golang from 1.22.2 to 1.22.3
    • build(deps): bump github.com/containerd/containerd from 1.7.15 to 1.7.17
    • build(deps): bump github.com/prometheus/client_golang
    • build(deps): bump golang.org/x/net from 0.24.0 to 0.25.0
    • build(deps): bump google.golang.org/grpc from 1.63.2 to 1.64.0
Breaking changes

A new IsSetStmt statement has been added to the intermediate representation (IR).
This is a breaking change for custom IR evaluators, which must interpret this statement in IR plans generated by this OPA version and later.
No actions are required for Wasm users, as long as Wasm modules are built by this OPA version or later.

v0.64.1

Compare Source

This is a bug fix release addressing the following issues:

  • ci: Pin GitHub Actions macos runner version. The architecture of the GitHub Actions Runner macos-latest was changed from amd64 to arm64 and as a result darwin/amd64 binary wasn't released (#​6720) authored by @​suzuki-shunsuke
  • plugins/discovery: Update comparison logic used in the discovery plugin for handling overrides. This fixes a panic that resulted from the comparison of uncomparable types (#​6723) authored by @​ashutosh-narkar

v0.64.0

Compare Source

NOTES:

  • The minimum version of Go required to build the OPA module is 1.21

This release contains a mix of features, a new builtin function (json.marshal_with_options()), performance improvements, and bugfixes.

Breaking Change
Bootstrap configuration overrides Discovered configuration

Previously if Discovery was enabled, other features like bundle downloading and status reporting could not be configured manually.
The reason for this was to prevent OPAs being deployed that could not be controlled through discovery. It's possible that
the system serving the discovered config is unaware of all options locally available in OPA. Hence, we relax the configuration
check when discovery is enabled so that the bootstrap configuration can contain plugin configurations. In case of conflicts,
the bootstrap configuration for plugins wins. These local configuration overrides from the bootstrap configuration are included
in the Status API messages so that management systems can get visibility into the local overrides.

In general, the bootstrap configuration overrides the discovered configuration. Previously this was not the case for all
configuration fields. For example, if the discovered configuration changes the labels section, only labels that are
additional compared to the bootstrap configuration are used, all other changes are ignored. This implies labels in the
bootstrap configuration override those in the discovered configuration. But for fields such as default_decision, default_authorization_decision,
nd_builtin_cache, the discovered configuration would override the bootstrap configuration. Now the behavior is more consistent
for the entire configuration and helps to avoid accidental configuration errors. (#​5722) authored by @​ashutosh-narkar

Add rego_version attribute to the bundle manifest

A new global rego_version attribute is added to the bundle manifest, to inform the OPA runtime about what Rego version (v0/v1) to
use while parsing/compiling contained Rego files. There is also a new file_rego_versions attribute which allows individual
files to override the global Rego version specified by rego_version.

When the version of the contained Rego is advertised by the bundle through this attribute, it is not required to run OPA with the
--v1-compatible (or future --v0-compatible) flag in order to correctly parse, compile and evaluate the bundle's modules.

A bundle's rego_version attribute takes precedence over any applied --v1-compatible/--v0-compatible flag. (#​6578) authored by @​johanfylling

Runtime, Tooling, SDK
  • compile: Fix panic from CLI + metadata entrypoint overlaps. The panic occurs when opa build was provided an entrypoint from both a CLI flag, and via entrypoint metadata annotation. (#​6661) authored by @​philipaconrad
  • cmd/deps: Improve memory footprint and execution time of deps command for policies with high dependency connectivity (#​6685) authored by @​johanfylling
  • server: Keep default decision path in-sync with manager's config (#​6697) authored by @​ashutosh-narkar
  • server: Remove unnecessary AST-to-JSON conversions (#​6665) and (#​6669) authored by @​koponen-styra
  • sdk: Allow customizations of the plugin manager via SDK (#​6662) authored by @​xico42
  • sdk: Fix issue where active parser options aren't propagated to module reload during bundle activation resulting in errors while activating bundles with v1 syntax (#​6689) authored by @​xico42
  • plugins/rest: Close response body in OAuth2 client credentials flow (#​6708) authored by @​johanneslarsson
Topdown and Rego
Docs, Website, Ecosystem
Miscellaneous
  • go.{mod,sum}: Update the go stanza of OPA's go.mod to go 1.21. OPA, used as Go dependency, requires at least go 1.21, and thus works with all officially supported Go versions (1.21.x and 1.22.x) (#​6678) authored by @​srenatus
  • ci: Update Github Actions for Node 20. This change updates the upload-artifact and download-artifact Github actions to the latest version (v4) (#​6670) authored by @​philipaconrad
  • build: Update WASM Rego test generation docker command to address CVE-2022-24765 in Git (#​6703) authored by @​ashutosh-narkar
  • Dependency updates; notably:
    • build(go): bump 1.22.1 -> 1.22.2 (#​6672) authored by @​srenatus
    • build(deps): bump aquasecurity/trivy-action from 0.18.0 to 0.19.0
    • build(deps): bump github.com/containerd/containerd from 1.7.14 to 1.7.15
    • build(deps): bump github.com/prometheus/client_model from 0.5.0 to 0.6.1
    • build(deps): bump golang.org/x/net from 0.22.0 to 0.24.0
    • build(deps): bump google.golang.org/grpc from 1.62.1 to 1.63.2

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot enabled auto-merge (squash) April 25, 2024 18:38
Copy link

coverage: 96.84601113172542%

details
{
"files": {
  "pod-security-standards/deny.rego": {
    "not_covered": [
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 44
        },
        "end": {
          "row": 44
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 60
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 70
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 82
        },
        "end": {
          "row": 82
        }
      },
      {
        "start": {
          "row": 86
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 90
        },
        "end": {
          "row": 90
        }
      }
    ],
    "not_covered_lines": 17
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 30
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      }
    ],
    "covered_lines": 10,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 72
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 21,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 49
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 63
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      },
      {
        "start": {
          "row": 68
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 73
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 76
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 81
        },
        "end": {
          "row": 83
        }
      },
      {
        "start": {
          "row": 85
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 88
        },
        "end": {
          "row": 90
        }
      },
      {
        "start": {
          "row": 92
        },
        "end": {
          "row": 92
        }
      }
    ],
    "covered_lines": 52,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 59
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 76
        },
        "end": {
          "row": 76
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 48
        }
      }
    ],
    "covered_lines": 20,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 31
        }
      },
      {
        "start": {
          "row": 33
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 22,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 19,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 53
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 45
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 57
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 62
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 66
        },
        "end": {
          "row": 67
        }
      },
      {
        "start": {
          "row": 69
        },
        "end": {
          "row": 69
        }
      }
    ],
    "covered_lines": 37,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 75
        }
      },
      {
        "start": {
          "row": 87
        },
        "end": {
          "row": 87
        }
      },
      {
        "start": {
          "row": 93
        },
        "end": {
          "row": 94
        }
      },
      {
        "start": {
          "row": 106
        },
        "end": {
          "row": 106
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 75
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 26
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  }
},
"covered_lines": 522,
"not_covered_lines": 17,
"coverage": 96.84601113172542
}

@renovate renovate bot force-pushed the renovate/open-policy-agent-opa-0.x branch from 080922a to c94c46e Compare April 25, 2024 21:45
Copy link

coverage: 96.84601113172542%

details
{
"files": {
  "pod-security-standards/deny.rego": {
    "not_covered": [
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 44
        },
        "end": {
          "row": 44
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 60
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 70
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 82
        },
        "end": {
          "row": 82
        }
      },
      {
        "start": {
          "row": 86
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 90
        },
        "end": {
          "row": 90
        }
      }
    ],
    "not_covered_lines": 17
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 30
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      }
    ],
    "covered_lines": 10,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 72
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 21,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 49
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 63
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      },
      {
        "start": {
          "row": 68
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 73
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 76
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 81
        },
        "end": {
          "row": 83
        }
      },
      {
        "start": {
          "row": 85
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 88
        },
        "end": {
          "row": 90
        }
      },
      {
        "start": {
          "row": 92
        },
        "end": {
          "row": 92
        }
      }
    ],
    "covered_lines": 52,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 59
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 76
        },
        "end": {
          "row": 76
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 48
        }
      }
    ],
    "covered_lines": 20,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 31
        }
      },
      {
        "start": {
          "row": 33
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 22,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 19,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 53
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 45
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 57
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 62
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 66
        },
        "end": {
          "row": 67
        }
      },
      {
        "start": {
          "row": 69
        },
        "end": {
          "row": 69
        }
      }
    ],
    "covered_lines": 37,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 75
        }
      },
      {
        "start": {
          "row": 87
        },
        "end": {
          "row": 87
        }
      },
      {
        "start": {
          "row": 93
        },
        "end": {
          "row": 94
        }
      },
      {
        "start": {
          "row": 106
        },
        "end": {
          "row": 106
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 75
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 26
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  }
},
"covered_lines": 522,
"not_covered_lines": 17,
"coverage": 96.84601113172542
}

@renovate renovate bot requested a review from YunosukeY April 26, 2024 00:27
@renovate renovate bot changed the title chore(deps): update dependency open-policy-agent/opa to v0.64.0 chore(deps): update dependency open-policy-agent/opa to v0.64.1 Apr 26, 2024
@renovate renovate bot force-pushed the renovate/open-policy-agent-opa-0.x branch from c94c46e to 16082f6 Compare April 26, 2024 20:23
Copy link

coverage: 96.84601113172542%

details
{
"files": {
  "pod-security-standards/deny.rego": {
    "not_covered": [
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 44
        },
        "end": {
          "row": 44
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 60
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 70
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 82
        },
        "end": {
          "row": 82
        }
      },
      {
        "start": {
          "row": 86
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 90
        },
        "end": {
          "row": 90
        }
      }
    ],
    "not_covered_lines": 17
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 30
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      }
    ],
    "covered_lines": 10,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 72
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 21,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 49
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 63
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      },
      {
        "start": {
          "row": 68
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 73
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 76
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 81
        },
        "end": {
          "row": 83
        }
      },
      {
        "start": {
          "row": 85
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 88
        },
        "end": {
          "row": 90
        }
      },
      {
        "start": {
          "row": 92
        },
        "end": {
          "row": 92
        }
      }
    ],
    "covered_lines": 52,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 59
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 76
        },
        "end": {
          "row": 76
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 48
        }
      }
    ],
    "covered_lines": 20,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 31
        }
      },
      {
        "start": {
          "row": 33
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 22,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 19,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 53
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 45
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 57
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 62
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 66
        },
        "end": {
          "row": 67
        }
      },
      {
        "start": {
          "row": 69
        },
        "end": {
          "row": 69
        }
      }
    ],
    "covered_lines": 37,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 75
        }
      },
      {
        "start": {
          "row": 87
        },
        "end": {
          "row": 87
        }
      },
      {
        "start": {
          "row": 93
        },
        "end": {
          "row": 94
        }
      },
      {
        "start": {
          "row": 106
        },
        "end": {
          "row": 106
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 75
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 26
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  }
},
"covered_lines": 522,
"not_covered_lines": 17,
"coverage": 96.84601113172542
}

@renovate renovate bot force-pushed the renovate/open-policy-agent-opa-0.x branch from 16082f6 to bde36bc Compare April 27, 2024 03:32
Copy link

coverage: 96.84601113172542%

details
{
"files": {
  "pod-security-standards/deny.rego": {
    "not_covered": [
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 44
        },
        "end": {
          "row": 44
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 60
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 70
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 82
        },
        "end": {
          "row": 82
        }
      },
      {
        "start": {
          "row": 86
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 90
        },
        "end": {
          "row": 90
        }
      }
    ],
    "not_covered_lines": 17
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 30
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      }
    ],
    "covered_lines": 10,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 72
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 21,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 49
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 63
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      },
      {
        "start": {
          "row": 68
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 73
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 76
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 81
        },
        "end": {
          "row": 83
        }
      },
      {
        "start": {
          "row": 85
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 88
        },
        "end": {
          "row": 90
        }
      },
      {
        "start": {
          "row": 92
        },
        "end": {
          "row": 92
        }
      }
    ],
    "covered_lines": 52,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 59
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 76
        },
        "end": {
          "row": 76
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 48
        }
      }
    ],
    "covered_lines": 20,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 31
        }
      },
      {
        "start": {
          "row": 33
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 22,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 19,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 53
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 45
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 57
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 62
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 66
        },
        "end": {
          "row": 67
        }
      },
      {
        "start": {
          "row": 69
        },
        "end": {
          "row": 69
        }
      }
    ],
    "covered_lines": 37,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 75
        }
      },
      {
        "start": {
          "row": 87
        },
        "end": {
          "row": 87
        }
      },
      {
        "start": {
          "row": 93
        },
        "end": {
          "row": 94
        }
      },
      {
        "start": {
          "row": 106
        },
        "end": {
          "row": 106
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 75
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 26
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  }
},
"covered_lines": 522,
"not_covered_lines": 17,
"coverage": 96.84601113172542
}

@renovate renovate bot force-pushed the renovate/open-policy-agent-opa-0.x branch from bde36bc to 6410fe9 Compare April 29, 2024 06:28
Copy link

coverage: 96.84601113172542%

details
{
"files": {
  "pod-security-standards/deny.rego": {
    "not_covered": [
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 44
        },
        "end": {
          "row": 44
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 60
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 70
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 82
        },
        "end": {
          "row": 82
        }
      },
      {
        "start": {
          "row": 86
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 90
        },
        "end": {
          "row": 90
        }
      }
    ],
    "not_covered_lines": 17
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 30
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      }
    ],
    "covered_lines": 10,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 72
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 21,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 49
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 63
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      },
      {
        "start": {
          "row": 68
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 73
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 76
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 81
        },
        "end": {
          "row": 83
        }
      },
      {
        "start": {
          "row": 85
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 88
        },
        "end": {
          "row": 90
        }
      },
      {
        "start": {
          "row": 92
        },
        "end": {
          "row": 92
        }
      }
    ],
    "covered_lines": 52,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 59
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 76
        },
        "end": {
          "row": 76
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 48
        }
      }
    ],
    "covered_lines": 20,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 31
        }
      },
      {
        "start": {
          "row": 33
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 22,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 19,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 53
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 45
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 57
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 62
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 66
        },
        "end": {
          "row": 67
        }
      },
      {
        "start": {
          "row": 69
        },
        "end": {
          "row": 69
        }
      }
    ],
    "covered_lines": 37,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 75
        }
      },
      {
        "start": {
          "row": 87
        },
        "end": {
          "row": 87
        }
      },
      {
        "start": {
          "row": 93
        },
        "end": {
          "row": 94
        }
      },
      {
        "start": {
          "row": 106
        },
        "end": {
          "row": 106
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 75
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 26
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  }
},
"covered_lines": 522,
"not_covered_lines": 17,
"coverage": 96.84601113172542
}

@renovate renovate bot force-pushed the renovate/open-policy-agent-opa-0.x branch from 6410fe9 to eb64f30 Compare April 30, 2024 07:44
Copy link

coverage: 96.84601113172542%

details
{
"files": {
  "pod-security-standards/deny.rego": {
    "not_covered": [
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 44
        },
        "end": {
          "row": 44
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 60
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 70
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 82
        },
        "end": {
          "row": 82
        }
      },
      {
        "start": {
          "row": 86
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 90
        },
        "end": {
          "row": 90
        }
      }
    ],
    "not_covered_lines": 17
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 30
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      }
    ],
    "covered_lines": 10,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 72
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 21,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 49
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 63
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      },
      {
        "start": {
          "row": 68
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 73
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 76
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 81
        },
        "end": {
          "row": 83
        }
      },
      {
        "start": {
          "row": 85
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 88
        },
        "end": {
          "row": 90
        }
      },
      {
        "start": {
          "row": 92
        },
        "end": {
          "row": 92
        }
      }
    ],
    "covered_lines": 52,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 59
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 76
        },
        "end": {
          "row": 76
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 48
        }
      }
    ],
    "covered_lines": 20,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 31
        }
      },
      {
        "start": {
          "row": 33
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 22,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 19,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 53
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 45
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 57
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 62
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 66
        },
        "end": {
          "row": 67
        }
      },
      {
        "start": {
          "row": 69
        },
        "end": {
          "row": 69
        }
      }
    ],
    "covered_lines": 37,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 75
        }
      },
      {
        "start": {
          "row": 87
        },
        "end": {
          "row": 87
        }
      },
      {
        "start": {
          "row": 93
        },
        "end": {
          "row": 94
        }
      },
      {
        "start": {
          "row": 106
        },
        "end": {
          "row": 106
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 75
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 26
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  }
},
"covered_lines": 522,
"not_covered_lines": 17,
"coverage": 96.84601113172542
}

@renovate renovate bot force-pushed the renovate/open-policy-agent-opa-0.x branch from eb64f30 to 92e3232 Compare May 2, 2024 07:09
Copy link

github-actions bot commented May 2, 2024

coverage: 96.84601113172542%

details
{
"files": {
  "pod-security-standards/deny.rego": {
    "not_covered": [
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 44
        },
        "end": {
          "row": 44
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 60
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 70
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 82
        },
        "end": {
          "row": 82
        }
      },
      {
        "start": {
          "row": 86
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 90
        },
        "end": {
          "row": 90
        }
      }
    ],
    "not_covered_lines": 17
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 30
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      }
    ],
    "covered_lines": 10,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 72
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 21,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 49
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 63
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      },
      {
        "start": {
          "row": 68
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 73
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 76
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 81
        },
        "end": {
          "row": 83
        }
      },
      {
        "start": {
          "row": 85
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 88
        },
        "end": {
          "row": 90
        }
      },
      {
        "start": {
          "row": 92
        },
        "end": {
          "row": 92
        }
      }
    ],
    "covered_lines": 52,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 59
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 76
        },
        "end": {
          "row": 76
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 48
        }
      }
    ],
    "covered_lines": 20,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 31
        }
      },
      {
        "start": {
          "row": 33
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 22,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 19,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 53
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 45
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 57
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 62
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 66
        },
        "end": {
          "row": 67
        }
      },
      {
        "start": {
          "row": 69
        },
        "end": {
          "row": 69
        }
      }
    ],
    "covered_lines": 37,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 75
        }
      },
      {
        "start": {
          "row": 87
        },
        "end": {
          "row": 87
        }
      },
      {
        "start": {
          "row": 93
        },
        "end": {
          "row": 94
        }
      },
      {
        "start": {
          "row": 106
        },
        "end": {
          "row": 106
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 75
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 26
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  }
},
"covered_lines": 522,
"not_covered_lines": 17,
"coverage": 96.84601113172542
}

@renovate renovate bot force-pushed the renovate/open-policy-agent-opa-0.x branch from 92e3232 to a1f5673 Compare May 2, 2024 09:19
Copy link

github-actions bot commented May 2, 2024

coverage: 96.84601113172542%

details
{
"files": {
  "pod-security-standards/deny.rego": {
    "not_covered": [
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 44
        },
        "end": {
          "row": 44
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 60
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 70
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 82
        },
        "end": {
          "row": 82
        }
      },
      {
        "start": {
          "row": 86
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 90
        },
        "end": {
          "row": 90
        }
      }
    ],
    "not_covered_lines": 17
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 30
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      }
    ],
    "covered_lines": 10,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 72
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 21,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 49
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 63
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      },
      {
        "start": {
          "row": 68
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 73
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 76
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 81
        },
        "end": {
          "row": 83
        }
      },
      {
        "start": {
          "row": 85
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 88
        },
        "end": {
          "row": 90
        }
      },
      {
        "start": {
          "row": 92
        },
        "end": {
          "row": 92
        }
      }
    ],
    "covered_lines": 52,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 59
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 76
        },
        "end": {
          "row": 76
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 48
        }
      }
    ],
    "covered_lines": 20,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 31
        }
      },
      {
        "start": {
          "row": 33
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 22,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 19,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 53
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 45
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 57
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 62
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 66
        },
        "end": {
          "row": 67
        }
      },
      {
        "start": {
          "row": 69
        },
        "end": {
          "row": 69
        }
      }
    ],
    "covered_lines": 37,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 75
        }
      },
      {
        "start": {
          "row": 87
        },
        "end": {
          "row": 87
        }
      },
      {
        "start": {
          "row": 93
        },
        "end": {
          "row": 94
        }
      },
      {
        "start": {
          "row": 106
        },
        "end": {
          "row": 106
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 75
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 26
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  }
},
"covered_lines": 522,
"not_covered_lines": 17,
"coverage": 96.84601113172542
}

@renovate renovate bot force-pushed the renovate/open-policy-agent-opa-0.x branch from a1f5673 to d3d8eae Compare May 3, 2024 10:58
Copy link

github-actions bot commented May 3, 2024

coverage: 96.84601113172542%

details
{
"files": {
  "pod-security-standards/deny.rego": {
    "not_covered": [
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 44
        },
        "end": {
          "row": 44
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 60
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 70
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 82
        },
        "end": {
          "row": 82
        }
      },
      {
        "start": {
          "row": 86
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 90
        },
        "end": {
          "row": 90
        }
      }
    ],
    "not_covered_lines": 17
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 30
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      }
    ],
    "covered_lines": 10,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 72
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 21,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 49
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 63
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      },
      {
        "start": {
          "row": 68
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 73
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 76
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 81
        },
        "end": {
          "row": 83
        }
      },
      {
        "start": {
          "row": 85
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 88
        },
        "end": {
          "row": 90
        }
      },
      {
        "start": {
          "row": 92
        },
        "end": {
          "row": 92
        }
      }
    ],
    "covered_lines": 52,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 59
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 76
        },
        "end": {
          "row": 76
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 48
        }
      }
    ],
    "covered_lines": 20,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 31
        }
      },
      {
        "start": {
          "row": 33
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 22,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 19,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 53
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 45
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 57
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 62
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 66
        },
        "end": {
          "row": 67
        }
      },
      {
        "start": {
          "row": 69
        },
        "end": {
          "row": 69
        }
      }
    ],
    "covered_lines": 37,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 75
        }
      },
      {
        "start": {
          "row": 87
        },
        "end": {
          "row": 87
        }
      },
      {
        "start": {
          "row": 93
        },
        "end": {
          "row": 94
        }
      },
      {
        "start": {
          "row": 106
        },
        "end": {
          "row": 106
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 75
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 26
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  }
},
"covered_lines": 522,
"not_covered_lines": 17,
"coverage": 96.84601113172542
}

@renovate renovate bot force-pushed the renovate/open-policy-agent-opa-0.x branch from d3d8eae to 14fd14d Compare May 4, 2024 04:33
Copy link

github-actions bot commented May 4, 2024

coverage: 96.84601113172542%

details
{
"files": {
  "pod-security-standards/deny.rego": {
    "not_covered": [
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 44
        },
        "end": {
          "row": 44
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 60
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 70
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 82
        },
        "end": {
          "row": 82
        }
      },
      {
        "start": {
          "row": 86
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 90
        },
        "end": {
          "row": 90
        }
      }
    ],
    "not_covered_lines": 17
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 30
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      }
    ],
    "covered_lines": 10,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 72
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 21,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 49
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 63
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      },
      {
        "start": {
          "row": 68
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 73
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 76
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 81
        },
        "end": {
          "row": 83
        }
      },
      {
        "start": {
          "row": 85
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 88
        },
        "end": {
          "row": 90
        }
      },
      {
        "start": {
          "row": 92
        },
        "end": {
          "row": 92
        }
      }
    ],
    "covered_lines": 52,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 59
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 76
        },
        "end": {
          "row": 76
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 48
        }
      }
    ],
    "covered_lines": 20,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 31
        }
      },
      {
        "start": {
          "row": 33
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 22,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 19,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 53
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 45
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 57
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 62
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 66
        },
        "end": {
          "row": 67
        }
      },
      {
        "start": {
          "row": 69
        },
        "end": {
          "row": 69
        }
      }
    ],
    "covered_lines": 37,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 75
        }
      },
      {
        "start": {
          "row": 87
        },
        "end": {
          "row": 87
        }
      },
      {
        "start": {
          "row": 93
        },
        "end": {
          "row": 94
        }
      },
      {
        "start": {
          "row": 106
        },
        "end": {
          "row": 106
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 75
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 26
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  }
},
"covered_lines": 522,
"not_covered_lines": 17,
"coverage": 96.84601113172542
}

@renovate renovate bot force-pushed the renovate/open-policy-agent-opa-0.x branch from 14fd14d to 4b5f430 Compare May 5, 2024 15:27
Copy link

github-actions bot commented May 5, 2024

coverage: 96.84601113172542%

details
{
"files": {
  "pod-security-standards/deny.rego": {
    "not_covered": [
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 44
        },
        "end": {
          "row": 44
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 60
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 70
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 82
        },
        "end": {
          "row": 82
        }
      },
      {
        "start": {
          "row": 86
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 90
        },
        "end": {
          "row": 90
        }
      }
    ],
    "not_covered_lines": 17
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 30
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      }
    ],
    "covered_lines": 10,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 72
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 21,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 49
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 63
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      },
      {
        "start": {
          "row": 68
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 73
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 76
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 81
        },
        "end": {
          "row": 83
        }
      },
      {
        "start": {
          "row": 85
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 88
        },
        "end": {
          "row": 90
        }
      },
      {
        "start": {
          "row": 92
        },
        "end": {
          "row": 92
        }
      }
    ],
    "covered_lines": 52,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 59
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 76
        },
        "end": {
          "row": 76
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 48
        }
      }
    ],
    "covered_lines": 20,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 31
        }
      },
      {
        "start": {
          "row": 33
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 22,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 19,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 53
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 45
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 57
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 62
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 66
        },
        "end": {
          "row": 67
        }
      },
      {
        "start": {
          "row": 69
        },
        "end": {
          "row": 69
        }
      }
    ],
    "covered_lines": 37,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 75
        }
      },
      {
        "start": {
          "row": 87
        },
        "end": {
          "row": 87
        }
      },
      {
        "start": {
          "row": 93
        },
        "end": {
          "row": 94
        }
      },
      {
        "start": {
          "row": 106
        },
        "end": {
          "row": 106
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 75
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 26
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  }
},
"covered_lines": 522,
"not_covered_lines": 17,
"coverage": 96.84601113172542
}

@renovate renovate bot force-pushed the renovate/open-policy-agent-opa-0.x branch from 4b5f430 to 802fac6 Compare May 7, 2024 09:13
Copy link

github-actions bot commented May 7, 2024

coverage: 96.84601113172542%

details
{
"files": {
  "pod-security-standards/deny.rego": {
    "not_covered": [
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 44
        },
        "end": {
          "row": 44
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 60
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 70
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 82
        },
        "end": {
          "row": 82
        }
      },
      {
        "start": {
          "row": 86
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 90
        },
        "end": {
          "row": 90
        }
      }
    ],
    "not_covered_lines": 17
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 30
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      }
    ],
    "covered_lines": 10,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 72
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 21,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 49
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 63
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      },
      {
        "start": {
          "row": 68
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 73
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 76
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 81
        },
        "end": {
          "row": 83
        }
      },
      {
        "start": {
          "row": 85
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 88
        },
        "end": {
          "row": 90
        }
      },
      {
        "start": {
          "row": 92
        },
        "end": {
          "row": 92
        }
      }
    ],
    "covered_lines": 52,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 59
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 76
        },
        "end": {
          "row": 76
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 48
        }
      }
    ],
    "covered_lines": 20,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 31
        }
      },
      {
        "start": {
          "row": 33
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 22,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 19,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 53
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 45
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 57
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 62
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 66
        },
        "end": {
          "row": 67
        }
      },
      {
        "start": {
          "row": 69
        },
        "end": {
          "row": 69
        }
      }
    ],
    "covered_lines": 37,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 75
        }
      },
      {
        "start": {
          "row": 87
        },
        "end": {
          "row": 87
        }
      },
      {
        "start": {
          "row": 93
        },
        "end": {
          "row": 94
        }
      },
      {
        "start": {
          "row": 106
        },
        "end": {
          "row": 106
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 75
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 26
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  }
},
"covered_lines": 522,
"not_covered_lines": 17,
"coverage": 96.84601113172542
}

@renovate renovate bot force-pushed the renovate/open-policy-agent-opa-0.x branch from 802fac6 to d53776a Compare May 7, 2024 17:48
Copy link

github-actions bot commented May 7, 2024

coverage: 96.84601113172542%

details
{
"files": {
  "pod-security-standards/deny.rego": {
    "not_covered": [
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 44
        },
        "end": {
          "row": 44
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 60
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 70
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 82
        },
        "end": {
          "row": 82
        }
      },
      {
        "start": {
          "row": 86
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 90
        },
        "end": {
          "row": 90
        }
      }
    ],
    "not_covered_lines": 17
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 30
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      }
    ],
    "covered_lines": 10,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 72
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 21,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 49
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 63
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      },
      {
        "start": {
          "row": 68
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 73
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 76
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 81
        },
        "end": {
          "row": 83
        }
      },
      {
        "start": {
          "row": 85
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 88
        },
        "end": {
          "row": 90
        }
      },
      {
        "start": {
          "row": 92
        },
        "end": {
          "row": 92
        }
      }
    ],
    "covered_lines": 52,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 59
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 76
        },
        "end": {
          "row": 76
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 48
        }
      }
    ],
    "covered_lines": 20,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 31
        }
      },
      {
        "start": {
          "row": 33
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 22,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 19,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 53
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 45
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 57
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 62
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 66
        },
        "end": {
          "row": 67
        }
      },
      {
        "start": {
          "row": 69
        },
        "end": {
          "row": 69
        }
      }
    ],
    "covered_lines": 37,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 75
        }
      },
      {
        "start": {
          "row": 87
        },
        "end": {
          "row": 87
        }
      },
      {
        "start": {
          "row": 93
        },
        "end": {
          "row": 94
        }
      },
      {
        "start": {
          "row": 106
        },
        "end": {
          "row": 106
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 75
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 26
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  }
},
"covered_lines": 522,
"not_covered_lines": 17,
"coverage": 96.84601113172542
}

@renovate renovate bot force-pushed the renovate/open-policy-agent-opa-0.x branch from d53776a to c04744b Compare May 8, 2024 10:45
Copy link

github-actions bot commented May 8, 2024

coverage: 96.84601113172542%

details
{
"files": {
  "pod-security-standards/deny.rego": {
    "not_covered": [
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 44
        },
        "end": {
          "row": 44
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 60
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 70
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 82
        },
        "end": {
          "row": 82
        }
      },
      {
        "start": {
          "row": 86
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 90
        },
        "end": {
          "row": 90
        }
      }
    ],
    "not_covered_lines": 17
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 30
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      }
    ],
    "covered_lines": 10,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 72
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 21,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 49
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 63
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      },
      {
        "start": {
          "row": 68
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 73
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 76
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 81
        },
        "end": {
          "row": 83
        }
      },
      {
        "start": {
          "row": 85
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 88
        },
        "end": {
          "row": 90
        }
      },
      {
        "start": {
          "row": 92
        },
        "end": {
          "row": 92
        }
      }
    ],
    "covered_lines": 52,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 59
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 76
        },
        "end": {
          "row": 76
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 48
        }
      }
    ],
    "covered_lines": 20,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 31
        }
      },
      {
        "start": {
          "row": 33
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 22,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 19,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 53
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 45
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 57
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 62
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 66
        },
        "end": {
          "row": 67
        }
      },
      {
        "start": {
          "row": 69
        },
        "end": {
          "row": 69
        }
      }
    ],
    "covered_lines": 37,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 75
        }
      },
      {
        "start": {
          "row": 87
        },
        "end": {
          "row": 87
        }
      },
      {
        "start": {
          "row": 93
        },
        "end": {
          "row": 94
        }
      },
      {
        "start": {
          "row": 106
        },
        "end": {
          "row": 106
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 75
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 26
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  }
},
"covered_lines": 522,
"not_covered_lines": 17,
"coverage": 96.84601113172542
}

Copy link

coverage: 96.84601113172542%

details
{
"files": {
  "pod-security-standards/deny.rego": {
    "not_covered": [
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 44
        },
        "end": {
          "row": 44
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 60
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 70
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 82
        },
        "end": {
          "row": 82
        }
      },
      {
        "start": {
          "row": 86
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 90
        },
        "end": {
          "row": 90
        }
      }
    ],
    "not_covered_lines": 17
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 30
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      }
    ],
    "covered_lines": 10,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 72
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 21,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 49
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 63
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      },
      {
        "start": {
          "row": 68
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 73
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 76
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 81
        },
        "end": {
          "row": 83
        }
      },
      {
        "start": {
          "row": 85
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 88
        },
        "end": {
          "row": 90
        }
      },
      {
        "start": {
          "row": 92
        },
        "end": {
          "row": 92
        }
      }
    ],
    "covered_lines": 52,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 59
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 76
        },
        "end": {
          "row": 76
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 48
        }
      }
    ],
    "covered_lines": 20,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 31
        }
      },
      {
        "start": {
          "row": 33
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 22,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 19,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 53
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 45
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 57
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 62
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 66
        },
        "end": {
          "row": 67
        }
      },
      {
        "start": {
          "row": 69
        },
        "end": {
          "row": 69
        }
      }
    ],
    "covered_lines": 37,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 75
        }
      },
      {
        "start": {
          "row": 87
        },
        "end": {
          "row": 87
        }
      },
      {
        "start": {
          "row": 93
        },
        "end": {
          "row": 94
        }
      },
      {
        "start": {
          "row": 106
        },
        "end": {
          "row": 106
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 75
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 26
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  }
},
"covered_lines": 522,
"not_covered_lines": 17,
"coverage": 96.84601113172542
}

@renovate renovate bot force-pushed the renovate/open-policy-agent-opa-0.x branch from a2ef733 to 67f55d2 Compare January 16, 2025 09:30
Copy link

coverage: 96.84601113172542%

details
{
"files": {
  "pod-security-standards/deny.rego": {
    "not_covered": [
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 44
        },
        "end": {
          "row": 44
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 60
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 70
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 82
        },
        "end": {
          "row": 82
        }
      },
      {
        "start": {
          "row": 86
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 90
        },
        "end": {
          "row": 90
        }
      }
    ],
    "not_covered_lines": 17
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 30
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      }
    ],
    "covered_lines": 10,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 72
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 21,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 49
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 63
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      },
      {
        "start": {
          "row": 68
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 73
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 76
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 81
        },
        "end": {
          "row": 83
        }
      },
      {
        "start": {
          "row": 85
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 88
        },
        "end": {
          "row": 90
        }
      },
      {
        "start": {
          "row": 92
        },
        "end": {
          "row": 92
        }
      }
    ],
    "covered_lines": 52,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 59
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 76
        },
        "end": {
          "row": 76
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 48
        }
      }
    ],
    "covered_lines": 20,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 31
        }
      },
      {
        "start": {
          "row": 33
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 22,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 19,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 53
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 45
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 57
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 62
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 66
        },
        "end": {
          "row": 67
        }
      },
      {
        "start": {
          "row": 69
        },
        "end": {
          "row": 69
        }
      }
    ],
    "covered_lines": 37,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 75
        }
      },
      {
        "start": {
          "row": 87
        },
        "end": {
          "row": 87
        }
      },
      {
        "start": {
          "row": 93
        },
        "end": {
          "row": 94
        }
      },
      {
        "start": {
          "row": 106
        },
        "end": {
          "row": 106
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 75
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 26
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  }
},
"covered_lines": 522,
"not_covered_lines": 17,
"coverage": 96.84601113172542
}

@renovate renovate bot force-pushed the renovate/open-policy-agent-opa-0.x branch from 67f55d2 to 2d431d7 Compare January 17, 2025 05:42
Copy link

coverage: 96.84601113172542%

details
{
"files": {
  "pod-security-standards/deny.rego": {
    "not_covered": [
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 44
        },
        "end": {
          "row": 44
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 60
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 70
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 82
        },
        "end": {
          "row": 82
        }
      },
      {
        "start": {
          "row": 86
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 90
        },
        "end": {
          "row": 90
        }
      }
    ],
    "not_covered_lines": 17
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 30
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      }
    ],
    "covered_lines": 10,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 72
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 21,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 49
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 63
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      },
      {
        "start": {
          "row": 68
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 73
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 76
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 81
        },
        "end": {
          "row": 83
        }
      },
      {
        "start": {
          "row": 85
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 88
        },
        "end": {
          "row": 90
        }
      },
      {
        "start": {
          "row": 92
        },
        "end": {
          "row": 92
        }
      }
    ],
    "covered_lines": 52,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 59
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 76
        },
        "end": {
          "row": 76
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 48
        }
      }
    ],
    "covered_lines": 20,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 31
        }
      },
      {
        "start": {
          "row": 33
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 22,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 19,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 53
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 45
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 57
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 62
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 66
        },
        "end": {
          "row": 67
        }
      },
      {
        "start": {
          "row": 69
        },
        "end": {
          "row": 69
        }
      }
    ],
    "covered_lines": 37,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 75
        }
      },
      {
        "start": {
          "row": 87
        },
        "end": {
          "row": 87
        }
      },
      {
        "start": {
          "row": 93
        },
        "end": {
          "row": 94
        }
      },
      {
        "start": {
          "row": 106
        },
        "end": {
          "row": 106
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 75
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 26
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  }
},
"covered_lines": 522,
"not_covered_lines": 17,
"coverage": 96.84601113172542
}

@renovate renovate bot force-pushed the renovate/open-policy-agent-opa-0.x branch from 2d431d7 to a396325 Compare January 18, 2025 08:16
Copy link

coverage: 96.84601113172542%

details
{
"files": {
  "pod-security-standards/deny.rego": {
    "not_covered": [
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 44
        },
        "end": {
          "row": 44
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 60
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 70
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 82
        },
        "end": {
          "row": 82
        }
      },
      {
        "start": {
          "row": 86
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 90
        },
        "end": {
          "row": 90
        }
      }
    ],
    "not_covered_lines": 17
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 30
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      }
    ],
    "covered_lines": 10,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 72
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 21,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 49
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 63
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      },
      {
        "start": {
          "row": 68
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 73
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 76
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 81
        },
        "end": {
          "row": 83
        }
      },
      {
        "start": {
          "row": 85
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 88
        },
        "end": {
          "row": 90
        }
      },
      {
        "start": {
          "row": 92
        },
        "end": {
          "row": 92
        }
      }
    ],
    "covered_lines": 52,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 59
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 76
        },
        "end": {
          "row": 76
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 48
        }
      }
    ],
    "covered_lines": 20,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 31
        }
      },
      {
        "start": {
          "row": 33
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 22,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 19,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 53
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 45
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 57
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 62
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 66
        },
        "end": {
          "row": 67
        }
      },
      {
        "start": {
          "row": 69
        },
        "end": {
          "row": 69
        }
      }
    ],
    "covered_lines": 37,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 75
        }
      },
      {
        "start": {
          "row": 87
        },
        "end": {
          "row": 87
        }
      },
      {
        "start": {
          "row": 93
        },
        "end": {
          "row": 94
        }
      },
      {
        "start": {
          "row": 106
        },
        "end": {
          "row": 106
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 75
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 26
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  }
},
"covered_lines": 522,
"not_covered_lines": 17,
"coverage": 96.84601113172542
}

@renovate renovate bot force-pushed the renovate/open-policy-agent-opa-0.x branch from a396325 to 485e079 Compare January 20, 2025 04:48
Copy link

coverage: 96.84601113172542%

details
{
"files": {
  "pod-security-standards/deny.rego": {
    "not_covered": [
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 44
        },
        "end": {
          "row": 44
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 60
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 70
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 82
        },
        "end": {
          "row": 82
        }
      },
      {
        "start": {
          "row": 86
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 90
        },
        "end": {
          "row": 90
        }
      }
    ],
    "not_covered_lines": 17
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 30
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      }
    ],
    "covered_lines": 10,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 72
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 21,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 49
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 63
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      },
      {
        "start": {
          "row": 68
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 73
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 76
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 81
        },
        "end": {
          "row": 83
        }
      },
      {
        "start": {
          "row": 85
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 88
        },
        "end": {
          "row": 90
        }
      },
      {
        "start": {
          "row": 92
        },
        "end": {
          "row": 92
        }
      }
    ],
    "covered_lines": 52,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 59
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 76
        },
        "end": {
          "row": 76
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 48
        }
      }
    ],
    "covered_lines": 20,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 31
        }
      },
      {
        "start": {
          "row": 33
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 22,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 19,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 53
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 45
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 57
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 62
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 66
        },
        "end": {
          "row": 67
        }
      },
      {
        "start": {
          "row": 69
        },
        "end": {
          "row": 69
        }
      }
    ],
    "covered_lines": 37,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 75
        }
      },
      {
        "start": {
          "row": 87
        },
        "end": {
          "row": 87
        }
      },
      {
        "start": {
          "row": 93
        },
        "end": {
          "row": 94
        }
      },
      {
        "start": {
          "row": 106
        },
        "end": {
          "row": 106
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 75
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 26
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  }
},
"covered_lines": 522,
"not_covered_lines": 17,
"coverage": 96.84601113172542
}

@renovate renovate bot force-pushed the renovate/open-policy-agent-opa-0.x branch from 485e079 to c6c6046 Compare January 21, 2025 08:46
Copy link

coverage: 96.84601113172542%

details
{
"files": {
  "pod-security-standards/deny.rego": {
    "not_covered": [
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 44
        },
        "end": {
          "row": 44
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 60
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 70
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 82
        },
        "end": {
          "row": 82
        }
      },
      {
        "start": {
          "row": 86
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 90
        },
        "end": {
          "row": 90
        }
      }
    ],
    "not_covered_lines": 17
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 30
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      }
    ],
    "covered_lines": 10,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 72
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 21,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 49
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 63
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      },
      {
        "start": {
          "row": 68
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 73
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 76
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 81
        },
        "end": {
          "row": 83
        }
      },
      {
        "start": {
          "row": 85
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 88
        },
        "end": {
          "row": 90
        }
      },
      {
        "start": {
          "row": 92
        },
        "end": {
          "row": 92
        }
      }
    ],
    "covered_lines": 52,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 59
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 76
        },
        "end": {
          "row": 76
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 48
        }
      }
    ],
    "covered_lines": 20,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 31
        }
      },
      {
        "start": {
          "row": 33
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 22,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 19,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 53
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 45
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 57
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 62
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 66
        },
        "end": {
          "row": 67
        }
      },
      {
        "start": {
          "row": 69
        },
        "end": {
          "row": 69
        }
      }
    ],
    "covered_lines": 37,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 75
        }
      },
      {
        "start": {
          "row": 87
        },
        "end": {
          "row": 87
        }
      },
      {
        "start": {
          "row": 93
        },
        "end": {
          "row": 94
        }
      },
      {
        "start": {
          "row": 106
        },
        "end": {
          "row": 106
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 75
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 26
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  }
},
"covered_lines": 522,
"not_covered_lines": 17,
"coverage": 96.84601113172542
}

@renovate renovate bot force-pushed the renovate/open-policy-agent-opa-0.x branch from c6c6046 to ef931b9 Compare January 22, 2025 22:11
Copy link

coverage: 96.84601113172542%

details
{
"files": {
  "pod-security-standards/deny.rego": {
    "not_covered": [
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 44
        },
        "end": {
          "row": 44
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 60
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 70
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 82
        },
        "end": {
          "row": 82
        }
      },
      {
        "start": {
          "row": 86
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 90
        },
        "end": {
          "row": 90
        }
      }
    ],
    "not_covered_lines": 17
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 30
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      }
    ],
    "covered_lines": 10,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 72
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 21,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 49
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 63
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      },
      {
        "start": {
          "row": 68
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 73
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 76
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 81
        },
        "end": {
          "row": 83
        }
      },
      {
        "start": {
          "row": 85
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 88
        },
        "end": {
          "row": 90
        }
      },
      {
        "start": {
          "row": 92
        },
        "end": {
          "row": 92
        }
      }
    ],
    "covered_lines": 52,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 59
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 76
        },
        "end": {
          "row": 76
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 48
        }
      }
    ],
    "covered_lines": 20,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 31
        }
      },
      {
        "start": {
          "row": 33
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 22,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 19,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 53
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 45
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 57
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 62
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 66
        },
        "end": {
          "row": 67
        }
      },
      {
        "start": {
          "row": 69
        },
        "end": {
          "row": 69
        }
      }
    ],
    "covered_lines": 37,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 75
        }
      },
      {
        "start": {
          "row": 87
        },
        "end": {
          "row": 87
        }
      },
      {
        "start": {
          "row": 93
        },
        "end": {
          "row": 94
        }
      },
      {
        "start": {
          "row": 106
        },
        "end": {
          "row": 106
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 75
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 26
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  }
},
"covered_lines": 522,
"not_covered_lines": 17,
"coverage": 96.84601113172542
}

@renovate renovate bot force-pushed the renovate/open-policy-agent-opa-0.x branch from ef931b9 to 8ab6ae9 Compare January 23, 2025 05:02
Copy link

coverage: 96.84601113172542%

details
{
"files": {
  "pod-security-standards/deny.rego": {
    "not_covered": [
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 44
        },
        "end": {
          "row": 44
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 60
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 70
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 82
        },
        "end": {
          "row": 82
        }
      },
      {
        "start": {
          "row": 86
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 90
        },
        "end": {
          "row": 90
        }
      }
    ],
    "not_covered_lines": 17
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 30
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      }
    ],
    "covered_lines": 10,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 72
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 21,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 49
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 63
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      },
      {
        "start": {
          "row": 68
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 73
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 76
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 81
        },
        "end": {
          "row": 83
        }
      },
      {
        "start": {
          "row": 85
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 88
        },
        "end": {
          "row": 90
        }
      },
      {
        "start": {
          "row": 92
        },
        "end": {
          "row": 92
        }
      }
    ],
    "covered_lines": 52,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 59
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 76
        },
        "end": {
          "row": 76
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 48
        }
      }
    ],
    "covered_lines": 20,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 31
        }
      },
      {
        "start": {
          "row": 33
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 22,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 19,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 53
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 45
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 57
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 62
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 66
        },
        "end": {
          "row": 67
        }
      },
      {
        "start": {
          "row": 69
        },
        "end": {
          "row": 69
        }
      }
    ],
    "covered_lines": 37,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 75
        }
      },
      {
        "start": {
          "row": 87
        },
        "end": {
          "row": 87
        }
      },
      {
        "start": {
          "row": 93
        },
        "end": {
          "row": 94
        }
      },
      {
        "start": {
          "row": 106
        },
        "end": {
          "row": 106
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 75
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 26
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  }
},
"covered_lines": 522,
"not_covered_lines": 17,
"coverage": 96.84601113172542
}

@renovate renovate bot force-pushed the renovate/open-policy-agent-opa-0.x branch from 8ab6ae9 to 30c664c Compare January 23, 2025 17:24
Copy link

coverage: 96.84601113172542%

details
{
"files": {
  "pod-security-standards/deny.rego": {
    "not_covered": [
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 44
        },
        "end": {
          "row": 44
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 60
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 70
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 82
        },
        "end": {
          "row": 82
        }
      },
      {
        "start": {
          "row": 86
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 90
        },
        "end": {
          "row": 90
        }
      }
    ],
    "not_covered_lines": 17
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 30
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      }
    ],
    "covered_lines": 10,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 72
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 21,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 49
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 63
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      },
      {
        "start": {
          "row": 68
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 73
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 76
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 81
        },
        "end": {
          "row": 83
        }
      },
      {
        "start": {
          "row": 85
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 88
        },
        "end": {
          "row": 90
        }
      },
      {
        "start": {
          "row": 92
        },
        "end": {
          "row": 92
        }
      }
    ],
    "covered_lines": 52,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 59
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 76
        },
        "end": {
          "row": 76
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 48
        }
      }
    ],
    "covered_lines": 20,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 31
        }
      },
      {
        "start": {
          "row": 33
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 22,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 19,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 53
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 45
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 57
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 62
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 66
        },
        "end": {
          "row": 67
        }
      },
      {
        "start": {
          "row": 69
        },
        "end": {
          "row": 69
        }
      }
    ],
    "covered_lines": 37,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 75
        }
      },
      {
        "start": {
          "row": 87
        },
        "end": {
          "row": 87
        }
      },
      {
        "start": {
          "row": 93
        },
        "end": {
          "row": 94
        }
      },
      {
        "start": {
          "row": 106
        },
        "end": {
          "row": 106
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 75
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 26
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  }
},
"covered_lines": 522,
"not_covered_lines": 17,
"coverage": 96.84601113172542
}

@renovate renovate bot force-pushed the renovate/open-policy-agent-opa-0.x branch from 30c664c to 4338f72 Compare January 24, 2025 13:19
Copy link

coverage: 96.84601113172542%

details
{
"files": {
  "pod-security-standards/deny.rego": {
    "not_covered": [
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 44
        },
        "end": {
          "row": 44
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 60
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 70
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 82
        },
        "end": {
          "row": 82
        }
      },
      {
        "start": {
          "row": 86
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 90
        },
        "end": {
          "row": 90
        }
      }
    ],
    "not_covered_lines": 17
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 30
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      }
    ],
    "covered_lines": 10,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 72
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 21,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 49
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 63
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      },
      {
        "start": {
          "row": 68
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 73
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 76
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 81
        },
        "end": {
          "row": 83
        }
      },
      {
        "start": {
          "row": 85
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 88
        },
        "end": {
          "row": 90
        }
      },
      {
        "start": {
          "row": 92
        },
        "end": {
          "row": 92
        }
      }
    ],
    "covered_lines": 52,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 59
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 76
        },
        "end": {
          "row": 76
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 48
        }
      }
    ],
    "covered_lines": 20,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 31
        }
      },
      {
        "start": {
          "row": 33
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 22,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 19,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 53
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 45
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 57
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 62
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 66
        },
        "end": {
          "row": 67
        }
      },
      {
        "start": {
          "row": 69
        },
        "end": {
          "row": 69
        }
      }
    ],
    "covered_lines": 37,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 75
        }
      },
      {
        "start": {
          "row": 87
        },
        "end": {
          "row": 87
        }
      },
      {
        "start": {
          "row": 93
        },
        "end": {
          "row": 94
        }
      },
      {
        "start": {
          "row": 106
        },
        "end": {
          "row": 106
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 75
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 26
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  }
},
"covered_lines": 522,
"not_covered_lines": 17,
"coverage": 96.84601113172542
}

@renovate renovate bot force-pushed the renovate/open-policy-agent-opa-0.x branch from 4338f72 to de42552 Compare January 26, 2025 12:23
Copy link

coverage: 96.84601113172542%

details
{
"files": {
  "pod-security-standards/deny.rego": {
    "not_covered": [
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 44
        },
        "end": {
          "row": 44
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 60
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 70
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 82
        },
        "end": {
          "row": 82
        }
      },
      {
        "start": {
          "row": 86
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 90
        },
        "end": {
          "row": 90
        }
      }
    ],
    "not_covered_lines": 17
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 30
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      }
    ],
    "covered_lines": 10,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 72
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 21,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 49
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 63
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      },
      {
        "start": {
          "row": 68
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 73
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 76
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 81
        },
        "end": {
          "row": 83
        }
      },
      {
        "start": {
          "row": 85
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 88
        },
        "end": {
          "row": 90
        }
      },
      {
        "start": {
          "row": 92
        },
        "end": {
          "row": 92
        }
      }
    ],
    "covered_lines": 52,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 59
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 76
        },
        "end": {
          "row": 76
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 48
        }
      }
    ],
    "covered_lines": 20,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 31
        }
      },
      {
        "start": {
          "row": 33
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 22,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 19,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 53
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 45
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 57
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 62
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 66
        },
        "end": {
          "row": 67
        }
      },
      {
        "start": {
          "row": 69
        },
        "end": {
          "row": 69
        }
      }
    ],
    "covered_lines": 37,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 75
        }
      },
      {
        "start": {
          "row": 87
        },
        "end": {
          "row": 87
        }
      },
      {
        "start": {
          "row": 93
        },
        "end": {
          "row": 94
        }
      },
      {
        "start": {
          "row": 106
        },
        "end": {
          "row": 106
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 75
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 26
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  }
},
"covered_lines": 522,
"not_covered_lines": 17,
"coverage": 96.84601113172542
}

@renovate renovate bot force-pushed the renovate/open-policy-agent-opa-0.x branch from de42552 to e289581 Compare January 26, 2025 17:37
Copy link

coverage: 96.84601113172542%

details
{
"files": {
  "pod-security-standards/deny.rego": {
    "not_covered": [
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 44
        },
        "end": {
          "row": 44
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 60
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 70
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 82
        },
        "end": {
          "row": 82
        }
      },
      {
        "start": {
          "row": 86
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 90
        },
        "end": {
          "row": 90
        }
      }
    ],
    "not_covered_lines": 17
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 30
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      }
    ],
    "covered_lines": 10,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 72
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 21,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 49
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 63
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      },
      {
        "start": {
          "row": 68
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 73
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 76
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 81
        },
        "end": {
          "row": 83
        }
      },
      {
        "start": {
          "row": 85
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 88
        },
        "end": {
          "row": 90
        }
      },
      {
        "start": {
          "row": 92
        },
        "end": {
          "row": 92
        }
      }
    ],
    "covered_lines": 52,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 59
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 76
        },
        "end": {
          "row": 76
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 48
        }
      }
    ],
    "covered_lines": 20,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 31
        }
      },
      {
        "start": {
          "row": 33
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 22,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 19,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 53
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 45
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 57
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 62
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 66
        },
        "end": {
          "row": 67
        }
      },
      {
        "start": {
          "row": 69
        },
        "end": {
          "row": 69
        }
      }
    ],
    "covered_lines": 37,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 75
        }
      },
      {
        "start": {
          "row": 87
        },
        "end": {
          "row": 87
        }
      },
      {
        "start": {
          "row": 93
        },
        "end": {
          "row": 94
        }
      },
      {
        "start": {
          "row": 106
        },
        "end": {
          "row": 106
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 75
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 26
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  }
},
"covered_lines": 522,
"not_covered_lines": 17,
"coverage": 96.84601113172542
}

@renovate renovate bot force-pushed the renovate/open-policy-agent-opa-0.x branch from e289581 to 02a6694 Compare January 28, 2025 13:20
Copy link

coverage: 96.84601113172542%

details
{
"files": {
  "pod-security-standards/deny.rego": {
    "not_covered": [
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 44
        },
        "end": {
          "row": 44
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 60
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 70
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 82
        },
        "end": {
          "row": 82
        }
      },
      {
        "start": {
          "row": 86
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 90
        },
        "end": {
          "row": 90
        }
      }
    ],
    "not_covered_lines": 17
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 30
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      }
    ],
    "covered_lines": 10,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 72
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 21,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 49
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 63
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      },
      {
        "start": {
          "row": 68
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 73
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 76
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 81
        },
        "end": {
          "row": 83
        }
      },
      {
        "start": {
          "row": 85
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 88
        },
        "end": {
          "row": 90
        }
      },
      {
        "start": {
          "row": 92
        },
        "end": {
          "row": 92
        }
      }
    ],
    "covered_lines": 52,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 59
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 76
        },
        "end": {
          "row": 76
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 48
        }
      }
    ],
    "covered_lines": 20,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 31
        }
      },
      {
        "start": {
          "row": 33
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 22,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 19,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 53
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 45
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 57
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 62
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 66
        },
        "end": {
          "row": 67
        }
      },
      {
        "start": {
          "row": 69
        },
        "end": {
          "row": 69
        }
      }
    ],
    "covered_lines": 37,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 75
        }
      },
      {
        "start": {
          "row": 87
        },
        "end": {
          "row": 87
        }
      },
      {
        "start": {
          "row": 93
        },
        "end": {
          "row": 94
        }
      },
      {
        "start": {
          "row": 106
        },
        "end": {
          "row": 106
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 75
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 26
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  }
},
"covered_lines": 522,
"not_covered_lines": 17,
"coverage": 96.84601113172542
}

@renovate renovate bot force-pushed the renovate/open-policy-agent-opa-0.x branch from 02a6694 to b652b53 Compare January 29, 2025 05:47
Copy link

coverage: 96.84601113172542%

details
{
"files": {
  "pod-security-standards/deny.rego": {
    "not_covered": [
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 44
        },
        "end": {
          "row": 44
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 60
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 70
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 82
        },
        "end": {
          "row": 82
        }
      },
      {
        "start": {
          "row": 86
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 90
        },
        "end": {
          "row": 90
        }
      }
    ],
    "not_covered_lines": 17
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 30
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      }
    ],
    "covered_lines": 10,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 72
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 21,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 49
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 63
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      },
      {
        "start": {
          "row": 68
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 73
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 76
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 81
        },
        "end": {
          "row": 83
        }
      },
      {
        "start": {
          "row": 85
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 88
        },
        "end": {
          "row": 90
        }
      },
      {
        "start": {
          "row": 92
        },
        "end": {
          "row": 92
        }
      }
    ],
    "covered_lines": 52,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 59
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 76
        },
        "end": {
          "row": 76
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 48
        }
      }
    ],
    "covered_lines": 20,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 31
        }
      },
      {
        "start": {
          "row": 33
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 22,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 19,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 53
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 45
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 57
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 62
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 66
        },
        "end": {
          "row": 67
        }
      },
      {
        "start": {
          "row": 69
        },
        "end": {
          "row": 69
        }
      }
    ],
    "covered_lines": 37,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 75
        }
      },
      {
        "start": {
          "row": 87
        },
        "end": {
          "row": 87
        }
      },
      {
        "start": {
          "row": 93
        },
        "end": {
          "row": 94
        }
      },
      {
        "start": {
          "row": 106
        },
        "end": {
          "row": 106
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 75
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 26
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  }
},
"covered_lines": 522,
"not_covered_lines": 17,
"coverage": 96.84601113172542
}

@renovate renovate bot force-pushed the renovate/open-policy-agent-opa-0.x branch from b652b53 to 6513180 Compare January 29, 2025 21:54
Copy link

coverage: 96.84601113172542%

details
{
"files": {
  "pod-security-standards/deny.rego": {
    "not_covered": [
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 44
        },
        "end": {
          "row": 44
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 60
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 70
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 82
        },
        "end": {
          "row": 82
        }
      },
      {
        "start": {
          "row": 86
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 90
        },
        "end": {
          "row": 90
        }
      }
    ],
    "not_covered_lines": 17
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/app_armor_profile/violation_disallowed_app_armor_profile_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 30
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      }
    ],
    "covered_lines": 10,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 36
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/baseline_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 72
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 21,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_namespaces/violation_host_namespaces_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_path/violation_host_path_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_port/violation_host_port_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/host_process/violation_host_process_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/privileged/violation_privileged_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      }
    ],
    "covered_lines": 8,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/proc_mount/violation_unmasked_proc_mount_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 32
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 46
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 38
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 49
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 63
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      },
      {
        "start": {
          "row": 68
        },
        "end": {
          "row": 70
        }
      },
      {
        "start": {
          "row": 72
        },
        "end": {
          "row": 73
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 76
        }
      },
      {
        "start": {
          "row": 78
        },
        "end": {
          "row": 78
        }
      },
      {
        "start": {
          "row": 81
        },
        "end": {
          "row": 83
        }
      },
      {
        "start": {
          "row": 85
        },
        "end": {
          "row": 86
        }
      },
      {
        "start": {
          "row": 88
        },
        "end": {
          "row": 90
        }
      },
      {
        "start": {
          "row": 92
        },
        "end": {
          "row": 92
        }
      }
    ],
    "covered_lines": 52,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/selinux_options/violation_disallowed_selinux_options_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 56
        },
        "end": {
          "row": 56
        }
      },
      {
        "start": {
          "row": 59
        },
        "end": {
          "row": 60
        }
      },
      {
        "start": {
          "row": 76
        },
        "end": {
          "row": 76
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 25
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/baseline/sysctls/violation_disallowed_sysctls_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 49
        },
        "end": {
          "row": 49
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 41
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 46
        },
        "end": {
          "row": 48
        }
      }
    ],
    "covered_lines": 20,
    "coverage": 100
  },
  "pod-security-standards/lib/k8s/k8s_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 25
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 31
        }
      },
      {
        "start": {
          "row": 33
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 63
        },
        "end": {
          "row": 63
        }
      }
    ],
    "covered_lines": 22,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/privilege_escalation/violation_privilege_escalation_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 36
        }
      },
      {
        "start": {
          "row": 48
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 65
        },
        "end": {
          "row": 65
        }
      }
    ],
    "covered_lines": 9,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 15
        }
      },
      {
        "start": {
          "row": 17
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 20
        },
        "end": {
          "row": 20
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 33
        }
      },
      {
        "start": {
          "row": 35
        },
        "end": {
          "row": 35
        }
      }
    ],
    "covered_lines": 19,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_capabilities/violation_disallowed_capabilities_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 47
        }
      },
      {
        "start": {
          "row": 53
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 74
        }
      }
    ],
    "covered_lines": 6,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 7
        }
      },
      {
        "start": {
          "row": 12
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 17
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 27
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 40
        }
      },
      {
        "start": {
          "row": 43
        },
        "end": {
          "row": 45
        }
      },
      {
        "start": {
          "row": 47
        },
        "end": {
          "row": 48
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 54
        }
      },
      {
        "start": {
          "row": 57
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 61
        },
        "end": {
          "row": 62
        }
      },
      {
        "start": {
          "row": 64
        },
        "end": {
          "row": 64
        }
      },
      {
        "start": {
          "row": 66
        },
        "end": {
          "row": 67
        }
      },
      {
        "start": {
          "row": 69
        },
        "end": {
          "row": 69
        }
      }
    ],
    "covered_lines": 37,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/restricted_seccomp_types/violation_disallowed_seccomp_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 39
        },
        "end": {
          "row": 39
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 43
        }
      },
      {
        "start": {
          "row": 52
        },
        "end": {
          "row": 52
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      },
      {
        "start": {
          "row": 74
        },
        "end": {
          "row": 75
        }
      },
      {
        "start": {
          "row": 87
        },
        "end": {
          "row": 87
        }
      },
      {
        "start": {
          "row": 93
        },
        "end": {
          "row": 94
        }
      },
      {
        "start": {
          "row": 106
        },
        "end": {
          "row": 106
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root/violation_run_as_root_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      },
      {
        "start": {
          "row": 36
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 51
        },
        "end": {
          "row": 51
        }
      },
      {
        "start": {
          "row": 54
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 71
        },
        "end": {
          "row": 71
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 16
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 23
        },
        "end": {
          "row": 24
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 27
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 29
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/run_as_root_user/violation_run_as_root_user_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 19
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 23
        }
      },
      {
        "start": {
          "row": 28
        },
        "end": {
          "row": 28
        }
      },
      {
        "start": {
          "row": 31
        },
        "end": {
          "row": 32
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      },
      {
        "start": {
          "row": 58
        },
        "end": {
          "row": 59
        }
      },
      {
        "start": {
          "row": 75
        },
        "end": {
          "row": 75
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types.rego": {
    "covered": [
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 9
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 14
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 24
        }
      }
    ],
    "covered_lines": 15,
    "coverage": 100
  },
  "pod-security-standards/lib/restricted/volume_types/violation_disallowed_volume_types_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 22
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 25
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 37
        }
      },
      {
        "start": {
          "row": 40
        },
        "end": {
          "row": 41
        }
      },
      {
        "start": {
          "row": 55
        },
        "end": {
          "row": 55
        }
      }
    ],
    "covered_lines": 12,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 5
        }
      },
      {
        "start": {
          "row": 7
        },
        "end": {
          "row": 8
        }
      },
      {
        "start": {
          "row": 11
        },
        "end": {
          "row": 12
        }
      },
      {
        "start": {
          "row": 15
        },
        "end": {
          "row": 16
        }
      },
      {
        "start": {
          "row": 19
        },
        "end": {
          "row": 21
        }
      },
      {
        "start": {
          "row": 24
        },
        "end": {
          "row": 26
        }
      }
    ],
    "covered_lines": 13,
    "coverage": 100
  },
  "pod-security-standards/lib/wrapper/wrapper_test.rego": {
    "covered": [
      {
        "start": {
          "row": 5
        },
        "end": {
          "row": 6
        }
      },
      {
        "start": {
          "row": 10
        },
        "end": {
          "row": 10
        }
      },
      {
        "start": {
          "row": 13
        },
        "end": {
          "row": 14
        }
      },
      {
        "start": {
          "row": 18
        },
        "end": {
          "row": 18
        }
      },
      {
        "start": {
          "row": 21
        },
        "end": {
          "row": 22
        }
      },
      {
        "start": {
          "row": 26
        },
        "end": {
          "row": 26
        }
      },
      {
        "start": {
          "row": 29
        },
        "end": {
          "row": 30
        }
      },
      {
        "start": {
          "row": 34
        },
        "end": {
          "row": 34
        }
      },
      {
        "start": {
          "row": 37
        },
        "end": {
          "row": 38
        }
      },
      {
        "start": {
          "row": 42
        },
        "end": {
          "row": 42
        }
      },
      {
        "start": {
          "row": 45
        },
        "end": {
          "row": 46
        }
      },
      {
        "start": {
          "row": 50
        },
        "end": {
          "row": 50
        }
      }
    ],
    "covered_lines": 18,
    "coverage": 100
  }
},
"covered_lines": 522,
"not_covered_lines": 17,
"coverage": 96.84601113172542
}

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.

0 participants