├── .github └── workflows │ ├── deploy.yml │ ├── test.yml │ ├── update-ref-docs.yml │ └── updatecli.yml ├── .gitignore ├── CNAME ├── CODEOWNERS ├── LICENSE.txt ├── README.md ├── babel.config.js ├── docs ├── disclosure.md ├── enterprise.md ├── explanations │ ├── _category_.json │ ├── architecture.md │ ├── audit-scanner │ │ ├── audit-scanner.md │ │ ├── limitations.md │ │ └── policy-reports.md │ ├── certificates.md │ ├── comparisons │ │ ├── _category_.json │ │ └── opa-comparison.md │ ├── context-aware-policies.md │ ├── distributing-policies.md │ ├── mutating-policies.md │ └── policy-groups.md ├── glossary.md ├── howtos │ ├── Rancher-Fleet.md │ ├── _category_.json │ ├── airgap │ │ ├── 01-requirements.md │ │ ├── 02-install.md │ │ ├── 03-hauler.md │ │ └── _category_.json │ ├── application-collection │ │ ├── 01-verify-images.md │ │ └── _category_.json │ ├── argocd-installation.md │ ├── audit-scanner.md │ ├── contribution-guide │ │ ├── _category_.json │ │ ├── contributing.md │ │ ├── contribution-guide.md │ │ └── suggesting-an-improvement.md │ ├── custom-certificate-authorities.md │ ├── deploy-at-scale.md │ ├── emergency-disable.md │ ├── gatekeeper-migration.md │ ├── install-kwctl.md │ ├── pod-security-admission-with-kubewarden.md │ ├── policies.md │ ├── policy-groups.md │ ├── policy-servers │ │ ├── 01-custom-cas.md │ │ ├── 02-private-registry.md │ │ ├── 03-production-deployments.md │ │ └── _category_.json │ ├── production-deployments.md │ ├── psp-migration.md │ ├── rancher-backup-operator.md │ ├── raw-policies.md │ ├── security-hardening │ │ ├── _category_.json │ │ ├── secure-supply-chain.md │ │ ├── security-hardening.md │ │ └── webhook-mtls.md │ ├── tasks.md │ ├── telemetry │ │ ├── 10-opentelemetry-qs.md │ │ ├── 20-tracing-qs.md │ │ ├── 30-metrics-qs.md │ │ ├── 40-custom-otel-collector.md │ │ └── _category_.json │ ├── ui-extension │ │ ├── 01-install.md │ │ ├── 02-metrics.md │ │ ├── 03-tracing.md │ │ └── _category_.json │ ├── vap-migration.md │ └── workarounds │ │ ├── _category_.json │ │ └── policy-server-certificate-expiry.md ├── images │ ├── architecture.png │ ├── architecture_sequence_01.png │ ├── architecture_sequence_02.png │ ├── architecture_sequence_03.png │ ├── architecture_sequence_04.png │ ├── architecture_sequence_05.png │ ├── grafana_dashboard_1.png │ ├── grafana_dashboard_2.png │ ├── grafana_dashboard_3.png │ ├── grafana_dashboard_4.png │ └── tasks-policy-hub.png ├── introduction.md ├── organization.md ├── personas.md ├── quick-start.md ├── reference │ ├── CRDs.md │ ├── _category_.json │ ├── artifacts.md │ ├── dependency-matrix.md │ ├── kwctl-cli.md │ ├── metrics-reference.md │ ├── monitor-mode.md │ ├── oci-registries-support.md │ ├── policy-evaluation-timeout.md │ ├── policy-server-cli.md │ ├── security-hardening │ │ ├── _category_.json │ │ └── webhooks-hardening.md │ ├── sources_yaml.md │ ├── spec │ │ ├── 01-intro-spec.md │ │ ├── 02-settings.md │ │ ├── 03-validating-policies.md │ │ ├── 04-mutating-policies.md │ │ ├── 05-context-aware-policies.md │ │ ├── _category_.json │ │ └── host-capabilities │ │ │ ├── 01-intro-host-capabilities.md │ │ │ ├── 02-signature-verifier-policies.md │ │ │ ├── 03-container-registry.md │ │ │ ├── 04-net.md │ │ │ ├── 05-crypto.md │ │ │ ├── 06-kubernetes.md │ │ │ └── _category_.json │ ├── threat-model.md │ ├── upgrade-path.md │ └── verification-config.md ├── tutorials │ ├── _category_.json │ ├── publish-policy-to-artifact-hub.md │ ├── testing-policies │ │ ├── 02-policy-authors.md │ │ ├── 03-cluster-operators.md │ │ ├── _category_.json │ │ └── index.md │ ├── validate-charts-with-kwctl.md │ ├── verifying-kubewarden.md │ └── writing-policies │ │ ├── CEL │ │ ├── 01-intro-cel.md │ │ ├── 02-reusing-vap.md │ │ ├── 03-context-aware.md │ │ ├── 04-example-sigstore.md │ │ └── _category_.json │ │ ├── _category_.json │ │ ├── dotnet.md │ │ ├── go │ │ ├── 01-intro-go.md │ │ ├── 02-scaffold.md │ │ ├── 03-policy-settings.md │ │ ├── 04-validation.md │ │ ├── 05-e2e-tests.md │ │ ├── 06-logging.md │ │ ├── 07-automate.md │ │ ├── 08-distribute.md │ │ ├── 09-validation-with-queries.md │ │ ├── 10-raw-policies.md │ │ └── _category_.json │ │ ├── index.md │ │ ├── metadata.md │ │ ├── other-languages.md │ │ ├── rego │ │ ├── 01-intro-rego.md │ │ ├── 02-builtin-support.md │ │ ├── _category_.json │ │ ├── gatekeeper │ │ │ ├── 01-intro.md │ │ │ ├── 02-create-policy.md │ │ │ ├── 03-build-and-run.md │ │ │ ├── 04-distribute.md │ │ │ └── _category_.json │ │ └── open-policy-agent │ │ │ ├── 01-intro.md │ │ │ ├── 02-create-policy.md │ │ │ ├── 03-build-and-run.md │ │ │ ├── 04-distribute.md │ │ │ ├── 05-raw-policies.md │ │ │ └── _category_.json │ │ ├── rust │ │ ├── 01-intro-rust.md │ │ ├── 02-create-policy.md │ │ ├── 03-define-policy-settings.md │ │ ├── 04-write-validation-logic.md │ │ ├── 05-mutation-policy.md │ │ ├── 06-logging.md │ │ ├── 07-build-and-distribute.md │ │ ├── 08-raw-policies.md │ │ └── _category_.json │ │ ├── swift.md │ │ ├── typescript │ │ ├── 01-intro-typescript.md │ │ ├── 02-scaffold.md │ │ ├── 03-policy-settings.md │ │ ├── 04-validation.md │ │ ├── 05-e2e-tests.md │ │ └── _category_.json │ │ └── wasi │ │ ├── 01-intro-wasi.md │ │ ├── 02-raw-policies.md │ │ └── _category_.json └── use-cases.md ├── docusaurus.config.js ├── js-lib ├── current-version.js └── docusaurus-variables.js ├── netlify.toml ├── package.json ├── sidebars.js ├── src ├── css │ └── custom.css └── fonts │ ├── Poppins │ ├── Poppins-Bold.woff │ └── Poppins-Bold.woff2 │ ├── Roboto │ ├── Roboto-Light.woff │ └── Roboto-Light.woff2 │ └── Space_Mono │ ├── SpaceMono-Regular.woff │ └── SpaceMono-Regular.woff2 ├── static ├── .nojekyll ├── CNAME ├── css │ └── style-bundle.css ├── img │ ├── architecture.png │ ├── architecture_sequence_01.png │ ├── architecture_sequence_02.png │ ├── architecture_sequence_03.png │ ├── architecture_sequence_04.png │ ├── architecture_sequence_05.png │ ├── favicon.svg │ ├── grafana_dashboard.png │ ├── grafana_dashboard_1.png │ ├── grafana_dashboard_2.png │ ├── grafana_dashboard_3.png │ ├── grafana_dashboard_4.png │ ├── how-it-works-kubewarden.svg │ ├── icon-kubewarden.svg │ ├── jaeger-custom-otel-collector.png │ ├── jaeger-ui-home.png │ ├── policy-reporter_dashboard.png │ ├── policy-reporter_kubewarden-filter.png │ ├── policy-reporter_per-resource.png │ ├── policy-reporter_policyreports.png │ ├── tasks-artifact-hub.png │ ├── tasks-policy-hub.png │ ├── ui_airgap_01.png │ ├── ui_airgap_02.png │ ├── ui_airgap_03.png │ ├── ui_airgap_04.png │ ├── ui_dashboard.png │ ├── ui_policy_create.png │ ├── ui_policy_custom.png │ ├── ui_policy_tracing.png │ ├── ui_policy_whitelist.png │ └── ui_policyserver_detail.png └── robots.txt ├── updatecli ├── update-cli-ref-docs.yaml ├── updatecli-compose.yaml ├── updatecli.d │ └── headers.yaml └── values.d │ ├── headers.yaml │ ├── update-kwctl-cli-ref-docs.yaml │ └── update-policy-server-cli-ref-docs.yaml ├── variables.json ├── versioned_docs ├── version-1.10 │ ├── architecture.md │ ├── contribution-guide │ │ ├── contributing.md │ │ └── suggesting-an-improvement.md │ ├── distributing-policies.md │ ├── distributing-policies │ │ ├── custom-certificate-authorities.md │ │ ├── oci-registries-support.md │ │ ├── publish-policy-to-artifact-hub.md │ │ └── secure-supply-chain.md │ ├── explanations │ │ ├── audit-scanner │ │ │ ├── audit-scanner.md │ │ │ ├── limitations.md │ │ │ └── policy-reports.md │ │ ├── context-aware-policies.md │ │ └── opa-comparison.md │ ├── howtos │ │ ├── audit-scanner.md │ │ └── raw-policies.md │ ├── images │ │ ├── architecture.png │ │ ├── architecture_sequence_01.png │ │ ├── architecture_sequence_02.png │ │ ├── architecture_sequence_03.png │ │ ├── architecture_sequence_04.png │ │ ├── architecture_sequence_05.png │ │ ├── grafana_dashboard_1.png │ │ ├── grafana_dashboard_2.png │ │ ├── grafana_dashboard_3.png │ │ ├── grafana_dashboard_4.png │ │ └── tasks-policy-hub.png │ ├── introduction.md │ ├── operator-manual │ │ ├── 01-intro.md │ │ ├── CRDs.md │ │ ├── Rancher-Fleet.md │ │ ├── airgap │ │ │ ├── 01-requirements.md │ │ │ └── 02-install.md │ │ ├── dependency-matrix.md │ │ ├── monitor-mode.md │ │ ├── policies.md │ │ ├── policy-evaluation-timeout.md │ │ ├── policy-servers │ │ │ ├── 01-custom-cas.md │ │ │ └── 02-private-registry.md │ │ ├── telemetry │ │ │ ├── metrics │ │ │ │ ├── 01-quickstart.md │ │ │ │ └── 02-reference.md │ │ │ ├── opentelemetry │ │ │ │ └── 01-quickstart.md │ │ │ └── tracing │ │ │ │ └── 01-quickstart.md │ │ ├── ui-extension │ │ │ ├── 01-install.md │ │ │ ├── 02-metrics.md │ │ │ └── 03-tracing.md │ │ ├── upgrade-path.md │ │ └── verification-config.md │ ├── quick-start.md │ ├── security │ │ ├── 01-intro.md │ │ ├── disclosure.md │ │ ├── threat-model.md │ │ └── verifying-kubewarden.md │ ├── tasks.md │ ├── tasksDir │ │ ├── mutating-policies.md │ │ ├── pod-security-admission-with-kubewarden.md │ │ └── psp-migration.md │ ├── testing-policies │ │ ├── 01-intro.md │ │ ├── 02-policy-authors.md │ │ └── 03-cluster-operators.md │ └── writing-policies │ │ ├── dotnet.md │ │ ├── go │ │ ├── 01-intro-go.md │ │ ├── 02-scaffold.md │ │ ├── 03-policy-settings.md │ │ ├── 04-validation.md │ │ ├── 05-e2e-tests.md │ │ ├── 06-logging.md │ │ ├── 07-automate.md │ │ ├── 08-distribute.md │ │ ├── 09-validation-with-queries.md │ │ └── 10-raw-policies.md │ │ ├── index.md │ │ ├── metadata.md │ │ ├── other-languages.md │ │ ├── rego │ │ ├── 01-intro-rego.md │ │ ├── 02-builtin-support.md │ │ ├── gatekeeper │ │ │ ├── 01-intro.md │ │ │ ├── 02-create-policy.md │ │ │ ├── 03-build-and-run.md │ │ │ └── 04-distribute.md │ │ └── open-policy-agent │ │ │ ├── 01-intro.md │ │ │ ├── 02-create-policy.md │ │ │ ├── 03-build-and-run.md │ │ │ ├── 04-distribute.md │ │ │ └── 05-raw-policies.md │ │ ├── rust │ │ ├── 01-intro-rust.md │ │ ├── 02-create-policy.md │ │ ├── 03-define-policy-settings.md │ │ ├── 04-write-validation-logic.md │ │ ├── 05-mutation-policy.md │ │ ├── 06-logging.md │ │ ├── 07-build-and-distribute.md │ │ └── 08-raw-policies.md │ │ ├── spec │ │ ├── 01-intro-spec.md │ │ ├── 02-settings.md │ │ ├── 03-validating-policies.md │ │ ├── 04-mutating-policies.md │ │ ├── 05-context-aware-policies.md │ │ └── host-capabilities │ │ │ ├── 01-intro-host-capabilities.md │ │ │ ├── 02-signature-verifier-policies.md │ │ │ ├── 03-container-registry.md │ │ │ ├── 04-net.md │ │ │ ├── 05-crypto.md │ │ │ └── 06-kubernetes.md │ │ ├── swift.md │ │ ├── typescript.md │ │ └── wasi │ │ ├── 01-intro-wasi.md │ │ └── 02-raw-policies.md ├── version-1.11 │ ├── disclosure.md │ ├── explanations │ │ ├── _category_.json │ │ ├── architecture.md │ │ ├── audit-scanner │ │ │ ├── audit-scanner.md │ │ │ ├── limitations.md │ │ │ └── policy-reports.md │ │ ├── comparisons │ │ │ ├── _category_.json │ │ │ └── opa-comparison.md │ │ ├── context-aware-policies.md │ │ ├── distributing-policies.md │ │ └── mutating-policies.md │ ├── howtos │ │ ├── Rancher-Fleet.md │ │ ├── _category_.json │ │ ├── airgap │ │ │ ├── 01-requirements.md │ │ │ ├── 02-install.md │ │ │ └── _category_.json │ │ ├── audit-scanner.md │ │ ├── contribution-guide │ │ │ ├── _category_.json │ │ │ ├── contributing.md │ │ │ └── suggesting-an-improvement.md │ │ ├── custom-certificate-authorities.md │ │ ├── pod-security-admission-with-kubewarden.md │ │ ├── policies.md │ │ ├── policy-servers │ │ │ ├── 01-custom-cas.md │ │ │ ├── 02-private-registry.md │ │ │ └── _category_.json │ │ ├── psp-migration.md │ │ ├── raw-policies.md │ │ ├── secure-supply-chain.md │ │ ├── tasks.md │ │ ├── telemetry │ │ │ ├── 10-opentelemetry-qs.md │ │ │ ├── 20-tracing-qs.md │ │ │ ├── 30-metrics-qs.md │ │ │ └── _category_.json │ │ └── ui-extension │ │ │ ├── 01-install.md │ │ │ ├── 02-metrics.md │ │ │ ├── 03-tracing.md │ │ │ └── _category_.json │ ├── images │ │ ├── architecture.png │ │ ├── architecture_sequence_01.png │ │ ├── architecture_sequence_02.png │ │ ├── architecture_sequence_03.png │ │ ├── architecture_sequence_04.png │ │ ├── architecture_sequence_05.png │ │ ├── grafana_dashboard_1.png │ │ ├── grafana_dashboard_2.png │ │ ├── grafana_dashboard_3.png │ │ ├── grafana_dashboard_4.png │ │ └── tasks-policy-hub.png │ ├── introduction.md │ ├── quick-start.md │ ├── reference │ │ ├── CRDs.md │ │ ├── _category_.json │ │ ├── dependency-matrix.md │ │ ├── metrics-reference.md │ │ ├── monitor-mode.md │ │ ├── oci-registries-support.md │ │ ├── policy-evaluation-timeout.md │ │ ├── sources_yaml.md │ │ ├── spec │ │ │ ├── 01-intro-spec.md │ │ │ ├── 02-settings.md │ │ │ ├── 03-validating-policies.md │ │ │ ├── 04-mutating-policies.md │ │ │ ├── 05-context-aware-policies.md │ │ │ ├── _category_.json │ │ │ └── host-capabilities │ │ │ │ ├── 01-intro-host-capabilities.md │ │ │ │ ├── 02-signature-verifier-policies.md │ │ │ │ ├── 03-container-registry.md │ │ │ │ ├── 04-net.md │ │ │ │ ├── 05-crypto.md │ │ │ │ ├── 06-kubernetes.md │ │ │ │ └── _category_.json │ │ ├── threat-model.md │ │ ├── upgrade-path.md │ │ └── verification-config.md │ └── tutorials │ │ ├── _category_.json │ │ ├── publish-policy-to-artifact-hub.md │ │ ├── testing-policies │ │ ├── 02-policy-authors.md │ │ ├── 03-cluster-operators.md │ │ ├── _category_.json │ │ └── index.md │ │ ├── verifying-kubewarden.md │ │ └── writing-policies │ │ ├── _category_.json │ │ ├── dotnet.md │ │ ├── go │ │ ├── 01-intro-go.md │ │ ├── 02-scaffold.md │ │ ├── 03-policy-settings.md │ │ ├── 04-validation.md │ │ ├── 05-e2e-tests.md │ │ ├── 06-logging.md │ │ ├── 07-automate.md │ │ ├── 08-distribute.md │ │ ├── 09-validation-with-queries.md │ │ ├── 10-raw-policies.md │ │ └── _category_.json │ │ ├── index.md │ │ ├── metadata.md │ │ ├── other-languages.md │ │ ├── rego │ │ ├── 01-intro-rego.md │ │ ├── 02-builtin-support.md │ │ ├── _category_.json │ │ ├── gatekeeper │ │ │ ├── 01-intro.md │ │ │ ├── 02-create-policy.md │ │ │ ├── 03-build-and-run.md │ │ │ ├── 04-distribute.md │ │ │ └── _category_.json │ │ └── open-policy-agent │ │ │ ├── 01-intro.md │ │ │ ├── 02-create-policy.md │ │ │ ├── 03-build-and-run.md │ │ │ ├── 04-distribute.md │ │ │ ├── 05-raw-policies.md │ │ │ └── _category_.json │ │ ├── rust │ │ ├── 01-intro-rust.md │ │ ├── 02-create-policy.md │ │ ├── 03-define-policy-settings.md │ │ ├── 04-write-validation-logic.md │ │ ├── 05-mutation-policy.md │ │ ├── 06-logging.md │ │ ├── 07-build-and-distribute.md │ │ ├── 08-raw-policies.md │ │ └── _category_.json │ │ ├── swift.md │ │ ├── typescript.md │ │ └── wasi │ │ ├── 01-intro-wasi.md │ │ ├── 02-raw-policies.md │ │ └── _category_.json ├── version-1.12 │ ├── disclosure.md │ ├── explanations │ │ ├── _category_.json │ │ ├── architecture.md │ │ ├── audit-scanner │ │ │ ├── audit-scanner.md │ │ │ ├── limitations.md │ │ │ └── policy-reports.md │ │ ├── comparisons │ │ │ ├── _category_.json │ │ │ └── opa-comparison.md │ │ ├── context-aware-policies.md │ │ ├── distributing-policies.md │ │ └── mutating-policies.md │ ├── howtos │ │ ├── Rancher-Fleet.md │ │ ├── _category_.json │ │ ├── airgap │ │ │ ├── 01-requirements.md │ │ │ ├── 02-install.md │ │ │ └── _category_.json │ │ ├── audit-scanner.md │ │ ├── contribution-guide │ │ │ ├── _category_.json │ │ │ ├── contributing.md │ │ │ ├── contribution-guide.md │ │ │ └── suggesting-an-improvement.md │ │ ├── custom-certificate-authorities.md │ │ ├── pod-security-admission-with-kubewarden.md │ │ ├── policies.md │ │ ├── policy-servers │ │ │ ├── 01-custom-cas.md │ │ │ ├── 02-private-registry.md │ │ │ ├── 03-production-deployments.md │ │ │ └── _category_.json │ │ ├── psp-migration.md │ │ ├── raw-policies.md │ │ ├── secure-supply-chain.md │ │ ├── tasks.md │ │ ├── telemetry │ │ │ ├── 10-opentelemetry-qs.md │ │ │ ├── 20-tracing-qs.md │ │ │ ├── 30-metrics-qs.md │ │ │ └── _category_.json │ │ └── ui-extension │ │ │ ├── 01-install.md │ │ │ ├── 02-metrics.md │ │ │ ├── 03-tracing.md │ │ │ └── _category_.json │ ├── images │ │ ├── architecture.png │ │ ├── architecture_sequence_01.png │ │ ├── architecture_sequence_02.png │ │ ├── architecture_sequence_03.png │ │ ├── architecture_sequence_04.png │ │ ├── architecture_sequence_05.png │ │ ├── grafana_dashboard_1.png │ │ ├── grafana_dashboard_2.png │ │ ├── grafana_dashboard_3.png │ │ ├── grafana_dashboard_4.png │ │ └── tasks-policy-hub.png │ ├── introduction.md │ ├── quick-start.md │ ├── reference │ │ ├── CRDs.md │ │ ├── _category_.json │ │ ├── dependency-matrix.md │ │ ├── metrics-reference.md │ │ ├── monitor-mode.md │ │ ├── oci-registries-support.md │ │ ├── policy-evaluation-timeout.md │ │ ├── sources_yaml.md │ │ ├── spec │ │ │ ├── 01-intro-spec.md │ │ │ ├── 02-settings.md │ │ │ ├── 03-validating-policies.md │ │ │ ├── 04-mutating-policies.md │ │ │ ├── 05-context-aware-policies.md │ │ │ ├── _category_.json │ │ │ └── host-capabilities │ │ │ │ ├── 01-intro-host-capabilities.md │ │ │ │ ├── 02-signature-verifier-policies.md │ │ │ │ ├── 03-container-registry.md │ │ │ │ ├── 04-net.md │ │ │ │ ├── 05-crypto.md │ │ │ │ ├── 06-kubernetes.md │ │ │ │ └── _category_.json │ │ ├── threat-model.md │ │ ├── upgrade-path.md │ │ └── verification-config.md │ └── tutorials │ │ ├── _category_.json │ │ ├── publish-policy-to-artifact-hub.md │ │ ├── testing-policies │ │ ├── 02-policy-authors.md │ │ ├── 03-cluster-operators.md │ │ ├── _category_.json │ │ └── index.md │ │ ├── verifying-kubewarden.md │ │ └── writing-policies │ │ ├── _category_.json │ │ ├── dotnet.md │ │ ├── go │ │ ├── 01-intro-go.md │ │ ├── 02-scaffold.md │ │ ├── 03-policy-settings.md │ │ ├── 04-validation.md │ │ ├── 05-e2e-tests.md │ │ ├── 06-logging.md │ │ ├── 07-automate.md │ │ ├── 08-distribute.md │ │ ├── 09-validation-with-queries.md │ │ ├── 10-raw-policies.md │ │ └── _category_.json │ │ ├── index.md │ │ ├── metadata.md │ │ ├── other-languages.md │ │ ├── rego │ │ ├── 01-intro-rego.md │ │ ├── 02-builtin-support.md │ │ ├── _category_.json │ │ ├── gatekeeper │ │ │ ├── 01-intro.md │ │ │ ├── 02-create-policy.md │ │ │ ├── 03-build-and-run.md │ │ │ ├── 04-distribute.md │ │ │ └── _category_.json │ │ └── open-policy-agent │ │ │ ├── 01-intro.md │ │ │ ├── 02-create-policy.md │ │ │ ├── 03-build-and-run.md │ │ │ ├── 04-distribute.md │ │ │ ├── 05-raw-policies.md │ │ │ └── _category_.json │ │ ├── rust │ │ ├── 01-intro-rust.md │ │ ├── 02-create-policy.md │ │ ├── 03-define-policy-settings.md │ │ ├── 04-write-validation-logic.md │ │ ├── 05-mutation-policy.md │ │ ├── 06-logging.md │ │ ├── 07-build-and-distribute.md │ │ ├── 08-raw-policies.md │ │ └── _category_.json │ │ ├── swift.md │ │ ├── typescript.md │ │ └── wasi │ │ ├── 01-intro-wasi.md │ │ ├── 02-raw-policies.md │ │ └── _category_.json ├── version-1.13 │ ├── disclosure.md │ ├── explanations │ │ ├── _category_.json │ │ ├── architecture.md │ │ ├── audit-scanner │ │ │ ├── audit-scanner.md │ │ │ ├── limitations.md │ │ │ └── policy-reports.md │ │ ├── comparisons │ │ │ ├── _category_.json │ │ │ └── opa-comparison.md │ │ ├── context-aware-policies.md │ │ ├── distributing-policies.md │ │ └── mutating-policies.md │ ├── glossary.md │ ├── howtos │ │ ├── Rancher-Fleet.md │ │ ├── _category_.json │ │ ├── airgap │ │ │ ├── 01-requirements.md │ │ │ ├── 02-install.md │ │ │ └── _category_.json │ │ ├── audit-scanner.md │ │ ├── contribution-guide │ │ │ ├── _category_.json │ │ │ ├── contributing.md │ │ │ ├── contribution-guide.md │ │ │ └── suggesting-an-improvement.md │ │ ├── custom-certificate-authorities.md │ │ ├── pod-security-admission-with-kubewarden.md │ │ ├── policies.md │ │ ├── policy-servers │ │ │ ├── 01-custom-cas.md │ │ │ ├── 02-private-registry.md │ │ │ ├── 03-production-deployments.md │ │ │ └── _category_.json │ │ ├── psp-migration.md │ │ ├── raw-policies.md │ │ ├── secure-supply-chain.md │ │ ├── tasks.md │ │ ├── telemetry │ │ │ ├── 10-opentelemetry-qs.md │ │ │ ├── 20-tracing-qs.md │ │ │ ├── 30-metrics-qs.md │ │ │ └── _category_.json │ │ └── ui-extension │ │ │ ├── 01-install.md │ │ │ ├── 02-metrics.md │ │ │ ├── 03-tracing.md │ │ │ └── _category_.json │ ├── images │ │ ├── architecture.png │ │ ├── architecture_sequence_01.png │ │ ├── architecture_sequence_02.png │ │ ├── architecture_sequence_03.png │ │ ├── architecture_sequence_04.png │ │ ├── architecture_sequence_05.png │ │ ├── grafana_dashboard_1.png │ │ ├── grafana_dashboard_2.png │ │ ├── grafana_dashboard_3.png │ │ ├── grafana_dashboard_4.png │ │ └── tasks-policy-hub.png │ ├── introduction.md │ ├── quick-start.md │ ├── reference │ │ ├── CRDs.md │ │ ├── _category_.json │ │ ├── dependency-matrix.md │ │ ├── metrics-reference.md │ │ ├── monitor-mode.md │ │ ├── oci-registries-support.md │ │ ├── policy-evaluation-timeout.md │ │ ├── sources_yaml.md │ │ ├── spec │ │ │ ├── 01-intro-spec.md │ │ │ ├── 02-settings.md │ │ │ ├── 03-validating-policies.md │ │ │ ├── 04-mutating-policies.md │ │ │ ├── 05-context-aware-policies.md │ │ │ ├── _category_.json │ │ │ └── host-capabilities │ │ │ │ ├── 01-intro-host-capabilities.md │ │ │ │ ├── 02-signature-verifier-policies.md │ │ │ │ ├── 03-container-registry.md │ │ │ │ ├── 04-net.md │ │ │ │ ├── 05-crypto.md │ │ │ │ ├── 06-kubernetes.md │ │ │ │ └── _category_.json │ │ ├── threat-model.md │ │ ├── upgrade-path.md │ │ └── verification-config.md │ └── tutorials │ │ ├── _category_.json │ │ ├── publish-policy-to-artifact-hub.md │ │ ├── testing-policies │ │ ├── 02-policy-authors.md │ │ ├── 03-cluster-operators.md │ │ ├── _category_.json │ │ └── index.md │ │ ├── verifying-kubewarden.md │ │ └── writing-policies │ │ ├── CEL │ │ ├── 01-intro-cel.md │ │ ├── 02-reusing-vap.md │ │ ├── 03-context-aware.md │ │ ├── 04-example-sigstore.md │ │ └── _category_.json │ │ ├── _category_.json │ │ ├── dotnet.md │ │ ├── go │ │ ├── 01-intro-go.md │ │ ├── 02-scaffold.md │ │ ├── 03-policy-settings.md │ │ ├── 04-validation.md │ │ ├── 05-e2e-tests.md │ │ ├── 06-logging.md │ │ ├── 07-automate.md │ │ ├── 08-distribute.md │ │ ├── 09-validation-with-queries.md │ │ ├── 10-raw-policies.md │ │ └── _category_.json │ │ ├── index.md │ │ ├── metadata.md │ │ ├── other-languages.md │ │ ├── rego │ │ ├── 01-intro-rego.md │ │ ├── 02-builtin-support.md │ │ ├── _category_.json │ │ ├── gatekeeper │ │ │ ├── 01-intro.md │ │ │ ├── 02-create-policy.md │ │ │ ├── 03-build-and-run.md │ │ │ ├── 04-distribute.md │ │ │ └── _category_.json │ │ └── open-policy-agent │ │ │ ├── 01-intro.md │ │ │ ├── 02-create-policy.md │ │ │ ├── 03-build-and-run.md │ │ │ ├── 04-distribute.md │ │ │ ├── 05-raw-policies.md │ │ │ └── _category_.json │ │ ├── rust │ │ ├── 01-intro-rust.md │ │ ├── 02-create-policy.md │ │ ├── 03-define-policy-settings.md │ │ ├── 04-write-validation-logic.md │ │ ├── 05-mutation-policy.md │ │ ├── 06-logging.md │ │ ├── 07-build-and-distribute.md │ │ ├── 08-raw-policies.md │ │ └── _category_.json │ │ ├── swift.md │ │ ├── typescript.md │ │ └── wasi │ │ ├── 01-intro-wasi.md │ │ ├── 02-raw-policies.md │ │ └── _category_.json ├── version-1.14 │ ├── disclosure.md │ ├── explanations │ │ ├── _category_.json │ │ ├── architecture.md │ │ ├── audit-scanner │ │ │ ├── audit-scanner.md │ │ │ ├── limitations.md │ │ │ └── policy-reports.md │ │ ├── comparisons │ │ │ ├── _category_.json │ │ │ └── opa-comparison.md │ │ ├── context-aware-policies.md │ │ ├── distributing-policies.md │ │ └── mutating-policies.md │ ├── glossary.md │ ├── howtos │ │ ├── Rancher-Fleet.md │ │ ├── _category_.json │ │ ├── airgap │ │ │ ├── 01-requirements.md │ │ │ ├── 02-install.md │ │ │ └── _category_.json │ │ ├── audit-scanner.md │ │ ├── contribution-guide │ │ │ ├── _category_.json │ │ │ ├── contributing.md │ │ │ ├── contribution-guide.md │ │ │ └── suggesting-an-improvement.md │ │ ├── custom-certificate-authorities.md │ │ ├── pod-security-admission-with-kubewarden.md │ │ ├── policies.md │ │ ├── policy-servers │ │ │ ├── 01-custom-cas.md │ │ │ ├── 02-private-registry.md │ │ │ ├── 03-production-deployments.md │ │ │ └── _category_.json │ │ ├── psp-migration.md │ │ ├── raw-policies.md │ │ ├── secure-supply-chain.md │ │ ├── tasks.md │ │ ├── telemetry │ │ │ ├── 10-opentelemetry-qs.md │ │ │ ├── 20-tracing-qs.md │ │ │ ├── 30-metrics-qs.md │ │ │ └── _category_.json │ │ ├── ui-extension │ │ │ ├── 01-install.md │ │ │ ├── 02-metrics.md │ │ │ ├── 03-tracing.md │ │ │ └── _category_.json │ │ ├── vap-migration.md │ │ └── workarounds │ │ │ ├── _category_.json │ │ │ └── policy-server-certificate-expiry.md │ ├── images │ │ ├── architecture.png │ │ ├── architecture_sequence_01.png │ │ ├── architecture_sequence_02.png │ │ ├── architecture_sequence_03.png │ │ ├── architecture_sequence_04.png │ │ ├── architecture_sequence_05.png │ │ ├── grafana_dashboard_1.png │ │ ├── grafana_dashboard_2.png │ │ ├── grafana_dashboard_3.png │ │ ├── grafana_dashboard_4.png │ │ └── tasks-policy-hub.png │ ├── introduction.md │ ├── quick-start.md │ ├── reference │ │ ├── CRDs.md │ │ ├── _category_.json │ │ ├── dependency-matrix.md │ │ ├── metrics-reference.md │ │ ├── monitor-mode.md │ │ ├── oci-registries-support.md │ │ ├── policy-evaluation-timeout.md │ │ ├── sources_yaml.md │ │ ├── spec │ │ │ ├── 01-intro-spec.md │ │ │ ├── 02-settings.md │ │ │ ├── 03-validating-policies.md │ │ │ ├── 04-mutating-policies.md │ │ │ ├── 05-context-aware-policies.md │ │ │ ├── _category_.json │ │ │ └── host-capabilities │ │ │ │ ├── 01-intro-host-capabilities.md │ │ │ │ ├── 02-signature-verifier-policies.md │ │ │ │ ├── 03-container-registry.md │ │ │ │ ├── 04-net.md │ │ │ │ ├── 05-crypto.md │ │ │ │ ├── 06-kubernetes.md │ │ │ │ └── _category_.json │ │ ├── threat-model.md │ │ ├── upgrade-path.md │ │ └── verification-config.md │ └── tutorials │ │ ├── _category_.json │ │ ├── publish-policy-to-artifact-hub.md │ │ ├── testing-policies │ │ ├── 02-policy-authors.md │ │ ├── 03-cluster-operators.md │ │ ├── _category_.json │ │ └── index.md │ │ ├── verifying-kubewarden.md │ │ └── writing-policies │ │ ├── CEL │ │ ├── 01-intro-cel.md │ │ ├── 02-reusing-vap.md │ │ ├── 03-context-aware.md │ │ ├── 04-example-sigstore.md │ │ └── _category_.json │ │ ├── _category_.json │ │ ├── dotnet.md │ │ ├── go │ │ ├── 01-intro-go.md │ │ ├── 02-scaffold.md │ │ ├── 03-policy-settings.md │ │ ├── 04-validation.md │ │ ├── 05-e2e-tests.md │ │ ├── 06-logging.md │ │ ├── 07-automate.md │ │ ├── 08-distribute.md │ │ ├── 09-validation-with-queries.md │ │ ├── 10-raw-policies.md │ │ └── _category_.json │ │ ├── index.md │ │ ├── metadata.md │ │ ├── other-languages.md │ │ ├── rego │ │ ├── 01-intro-rego.md │ │ ├── 02-builtin-support.md │ │ ├── _category_.json │ │ ├── gatekeeper │ │ │ ├── 01-intro.md │ │ │ ├── 02-create-policy.md │ │ │ ├── 03-build-and-run.md │ │ │ ├── 04-distribute.md │ │ │ └── _category_.json │ │ └── open-policy-agent │ │ │ ├── 01-intro.md │ │ │ ├── 02-create-policy.md │ │ │ ├── 03-build-and-run.md │ │ │ ├── 04-distribute.md │ │ │ ├── 05-raw-policies.md │ │ │ └── _category_.json │ │ ├── rust │ │ ├── 01-intro-rust.md │ │ ├── 02-create-policy.md │ │ ├── 03-define-policy-settings.md │ │ ├── 04-write-validation-logic.md │ │ ├── 05-mutation-policy.md │ │ ├── 06-logging.md │ │ ├── 07-build-and-distribute.md │ │ ├── 08-raw-policies.md │ │ └── _category_.json │ │ ├── swift.md │ │ ├── typescript.md │ │ └── wasi │ │ ├── 01-intro-wasi.md │ │ ├── 02-raw-policies.md │ │ └── _category_.json ├── version-1.15 │ ├── disclosure.md │ ├── explanations │ │ ├── _category_.json │ │ ├── architecture.md │ │ ├── audit-scanner │ │ │ ├── audit-scanner.md │ │ │ ├── limitations.md │ │ │ └── policy-reports.md │ │ ├── comparisons │ │ │ ├── _category_.json │ │ │ └── opa-comparison.md │ │ ├── context-aware-policies.md │ │ ├── distributing-policies.md │ │ └── mutating-policies.md │ ├── glossary.md │ ├── howtos │ │ ├── Rancher-Fleet.md │ │ ├── _category_.json │ │ ├── airgap │ │ │ ├── 01-requirements.md │ │ │ ├── 02-install.md │ │ │ └── _category_.json │ │ ├── audit-scanner.md │ │ ├── contribution-guide │ │ │ ├── _category_.json │ │ │ ├── contributing.md │ │ │ ├── contribution-guide.md │ │ │ └── suggesting-an-improvement.md │ │ ├── custom-certificate-authorities.md │ │ ├── pod-security-admission-with-kubewarden.md │ │ ├── policies.md │ │ ├── policy-servers │ │ │ ├── 01-custom-cas.md │ │ │ ├── 02-private-registry.md │ │ │ ├── 03-production-deployments.md │ │ │ └── _category_.json │ │ ├── production-deployments.md │ │ ├── psp-migration.md │ │ ├── raw-policies.md │ │ ├── secure-supply-chain.md │ │ ├── tasks.md │ │ ├── telemetry │ │ │ ├── 10-opentelemetry-qs.md │ │ │ ├── 20-tracing-qs.md │ │ │ ├── 30-metrics-qs.md │ │ │ └── _category_.json │ │ ├── ui-extension │ │ │ ├── 01-install.md │ │ │ ├── 02-metrics.md │ │ │ ├── 03-tracing.md │ │ │ └── _category_.json │ │ ├── vap-migration.md │ │ └── workarounds │ │ │ ├── _category_.json │ │ │ └── policy-server-certificate-expiry.md │ ├── images │ │ ├── architecture.png │ │ ├── architecture_sequence_01.png │ │ ├── architecture_sequence_02.png │ │ ├── architecture_sequence_03.png │ │ ├── architecture_sequence_04.png │ │ ├── architecture_sequence_05.png │ │ ├── grafana_dashboard_1.png │ │ ├── grafana_dashboard_2.png │ │ ├── grafana_dashboard_3.png │ │ ├── grafana_dashboard_4.png │ │ └── tasks-policy-hub.png │ ├── introduction.md │ ├── quick-start.md │ ├── reference │ │ ├── CRDs.md │ │ ├── _category_.json │ │ ├── dependency-matrix.md │ │ ├── metrics-reference.md │ │ ├── monitor-mode.md │ │ ├── oci-registries-support.md │ │ ├── policy-evaluation-timeout.md │ │ ├── sources_yaml.md │ │ ├── spec │ │ │ ├── 01-intro-spec.md │ │ │ ├── 02-settings.md │ │ │ ├── 03-validating-policies.md │ │ │ ├── 04-mutating-policies.md │ │ │ ├── 05-context-aware-policies.md │ │ │ ├── _category_.json │ │ │ └── host-capabilities │ │ │ │ ├── 01-intro-host-capabilities.md │ │ │ │ ├── 02-signature-verifier-policies.md │ │ │ │ ├── 03-container-registry.md │ │ │ │ ├── 04-net.md │ │ │ │ ├── 05-crypto.md │ │ │ │ ├── 06-kubernetes.md │ │ │ │ └── _category_.json │ │ ├── threat-model.md │ │ ├── upgrade-path.md │ │ └── verification-config.md │ └── tutorials │ │ ├── _category_.json │ │ ├── publish-policy-to-artifact-hub.md │ │ ├── testing-policies │ │ ├── 02-policy-authors.md │ │ ├── 03-cluster-operators.md │ │ ├── _category_.json │ │ └── index.md │ │ ├── verifying-kubewarden.md │ │ └── writing-policies │ │ ├── CEL │ │ ├── 01-intro-cel.md │ │ ├── 02-reusing-vap.md │ │ ├── 03-context-aware.md │ │ ├── 04-example-sigstore.md │ │ └── _category_.json │ │ ├── _category_.json │ │ ├── dotnet.md │ │ ├── go │ │ ├── 01-intro-go.md │ │ ├── 02-scaffold.md │ │ ├── 03-policy-settings.md │ │ ├── 04-validation.md │ │ ├── 05-e2e-tests.md │ │ ├── 06-logging.md │ │ ├── 07-automate.md │ │ ├── 08-distribute.md │ │ ├── 09-validation-with-queries.md │ │ ├── 10-raw-policies.md │ │ └── _category_.json │ │ ├── index.md │ │ ├── metadata.md │ │ ├── other-languages.md │ │ ├── rego │ │ ├── 01-intro-rego.md │ │ ├── 02-builtin-support.md │ │ ├── _category_.json │ │ ├── gatekeeper │ │ │ ├── 01-intro.md │ │ │ ├── 02-create-policy.md │ │ │ ├── 03-build-and-run.md │ │ │ ├── 04-distribute.md │ │ │ └── _category_.json │ │ └── open-policy-agent │ │ │ ├── 01-intro.md │ │ │ ├── 02-create-policy.md │ │ │ ├── 03-build-and-run.md │ │ │ ├── 04-distribute.md │ │ │ ├── 05-raw-policies.md │ │ │ └── _category_.json │ │ ├── rust │ │ ├── 01-intro-rust.md │ │ ├── 02-create-policy.md │ │ ├── 03-define-policy-settings.md │ │ ├── 04-write-validation-logic.md │ │ ├── 05-mutation-policy.md │ │ ├── 06-logging.md │ │ ├── 07-build-and-distribute.md │ │ ├── 08-raw-policies.md │ │ └── _category_.json │ │ ├── swift.md │ │ ├── typescript.md │ │ └── wasi │ │ ├── 01-intro-wasi.md │ │ ├── 02-raw-policies.md │ │ └── _category_.json ├── version-1.16 │ ├── disclosure.md │ ├── explanations │ │ ├── _category_.json │ │ ├── architecture.md │ │ ├── audit-scanner │ │ │ ├── audit-scanner.md │ │ │ ├── limitations.md │ │ │ └── policy-reports.md │ │ ├── comparisons │ │ │ ├── _category_.json │ │ │ └── opa-comparison.md │ │ ├── context-aware-policies.md │ │ ├── distributing-policies.md │ │ └── mutating-policies.md │ ├── glossary.md │ ├── howtos │ │ ├── Rancher-Fleet.md │ │ ├── _category_.json │ │ ├── airgap │ │ │ ├── 01-requirements.md │ │ │ ├── 02-install.md │ │ │ └── _category_.json │ │ ├── audit-scanner.md │ │ ├── contribution-guide │ │ │ ├── _category_.json │ │ │ ├── contributing.md │ │ │ ├── contribution-guide.md │ │ │ └── suggesting-an-improvement.md │ │ ├── custom-certificate-authorities.md │ │ ├── pod-security-admission-with-kubewarden.md │ │ ├── policies.md │ │ ├── policy-servers │ │ │ ├── 01-custom-cas.md │ │ │ ├── 02-private-registry.md │ │ │ ├── 03-production-deployments.md │ │ │ └── _category_.json │ │ ├── production-deployments.md │ │ ├── psp-migration.md │ │ ├── raw-policies.md │ │ ├── secure-supply-chain.md │ │ ├── tasks.md │ │ ├── telemetry │ │ │ ├── 10-opentelemetry-qs.md │ │ │ ├── 20-tracing-qs.md │ │ │ ├── 30-metrics-qs.md │ │ │ └── _category_.json │ │ ├── ui-extension │ │ │ ├── 01-install.md │ │ │ ├── 02-metrics.md │ │ │ ├── 03-tracing.md │ │ │ └── _category_.json │ │ ├── vap-migration.md │ │ └── workarounds │ │ │ ├── _category_.json │ │ │ └── policy-server-certificate-expiry.md │ ├── images │ │ ├── architecture.png │ │ ├── architecture_sequence_01.png │ │ ├── architecture_sequence_02.png │ │ ├── architecture_sequence_03.png │ │ ├── architecture_sequence_04.png │ │ ├── architecture_sequence_05.png │ │ ├── grafana_dashboard_1.png │ │ ├── grafana_dashboard_2.png │ │ ├── grafana_dashboard_3.png │ │ ├── grafana_dashboard_4.png │ │ └── tasks-policy-hub.png │ ├── introduction.md │ ├── quick-start.md │ ├── reference │ │ ├── CRDs.md │ │ ├── _category_.json │ │ ├── dependency-matrix.md │ │ ├── metrics-reference.md │ │ ├── monitor-mode.md │ │ ├── oci-registries-support.md │ │ ├── policy-evaluation-timeout.md │ │ ├── sources_yaml.md │ │ ├── spec │ │ │ ├── 01-intro-spec.md │ │ │ ├── 02-settings.md │ │ │ ├── 03-validating-policies.md │ │ │ ├── 04-mutating-policies.md │ │ │ ├── 05-context-aware-policies.md │ │ │ ├── _category_.json │ │ │ └── host-capabilities │ │ │ │ ├── 01-intro-host-capabilities.md │ │ │ │ ├── 02-signature-verifier-policies.md │ │ │ │ ├── 03-container-registry.md │ │ │ │ ├── 04-net.md │ │ │ │ ├── 05-crypto.md │ │ │ │ ├── 06-kubernetes.md │ │ │ │ └── _category_.json │ │ ├── threat-model.md │ │ ├── upgrade-path.md │ │ └── verification-config.md │ └── tutorials │ │ ├── _category_.json │ │ ├── publish-policy-to-artifact-hub.md │ │ ├── testing-policies │ │ ├── 02-policy-authors.md │ │ ├── 03-cluster-operators.md │ │ ├── _category_.json │ │ └── index.md │ │ ├── verifying-kubewarden.md │ │ └── writing-policies │ │ ├── CEL │ │ ├── 01-intro-cel.md │ │ ├── 02-reusing-vap.md │ │ ├── 03-context-aware.md │ │ ├── 04-example-sigstore.md │ │ └── _category_.json │ │ ├── _category_.json │ │ ├── dotnet.md │ │ ├── go │ │ ├── 01-intro-go.md │ │ ├── 02-scaffold.md │ │ ├── 03-policy-settings.md │ │ ├── 04-validation.md │ │ ├── 05-e2e-tests.md │ │ ├── 06-logging.md │ │ ├── 07-automate.md │ │ ├── 08-distribute.md │ │ ├── 09-validation-with-queries.md │ │ ├── 10-raw-policies.md │ │ └── _category_.json │ │ ├── index.md │ │ ├── metadata.md │ │ ├── other-languages.md │ │ ├── rego │ │ ├── 01-intro-rego.md │ │ ├── 02-builtin-support.md │ │ ├── _category_.json │ │ ├── gatekeeper │ │ │ ├── 01-intro.md │ │ │ ├── 02-create-policy.md │ │ │ ├── 03-build-and-run.md │ │ │ ├── 04-distribute.md │ │ │ └── _category_.json │ │ └── open-policy-agent │ │ │ ├── 01-intro.md │ │ │ ├── 02-create-policy.md │ │ │ ├── 03-build-and-run.md │ │ │ ├── 04-distribute.md │ │ │ ├── 05-raw-policies.md │ │ │ └── _category_.json │ │ ├── rust │ │ ├── 01-intro-rust.md │ │ ├── 02-create-policy.md │ │ ├── 03-define-policy-settings.md │ │ ├── 04-write-validation-logic.md │ │ ├── 05-mutation-policy.md │ │ ├── 06-logging.md │ │ ├── 07-build-and-distribute.md │ │ ├── 08-raw-policies.md │ │ └── _category_.json │ │ ├── swift.md │ │ ├── typescript.md │ │ └── wasi │ │ ├── 01-intro-wasi.md │ │ ├── 02-raw-policies.md │ │ └── _category_.json ├── version-1.17 │ ├── disclosure.md │ ├── explanations │ │ ├── _category_.json │ │ ├── architecture.md │ │ ├── audit-scanner │ │ │ ├── audit-scanner.md │ │ │ ├── limitations.md │ │ │ └── policy-reports.md │ │ ├── certificates.md │ │ ├── comparisons │ │ │ ├── _category_.json │ │ │ └── opa-comparison.md │ │ ├── context-aware-policies.md │ │ ├── distributing-policies.md │ │ ├── mutating-policies.md │ │ └── policy-groups.md │ ├── glossary.md │ ├── howtos │ │ ├── Rancher-Fleet.md │ │ ├── _category_.json │ │ ├── airgap │ │ │ ├── 01-requirements.md │ │ │ ├── 02-install.md │ │ │ └── _category_.json │ │ ├── application-collection │ │ │ ├── 01-verify-images.md │ │ │ └── _category_.json │ │ ├── audit-scanner.md │ │ ├── contribution-guide │ │ │ ├── _category_.json │ │ │ ├── contributing.md │ │ │ ├── contribution-guide.md │ │ │ └── suggesting-an-improvement.md │ │ ├── custom-certificate-authorities.md │ │ ├── pod-security-admission-with-kubewarden.md │ │ ├── policies.md │ │ ├── policy-groups.md │ │ ├── policy-servers │ │ │ ├── 01-custom-cas.md │ │ │ ├── 02-private-registry.md │ │ │ ├── 03-production-deployments.md │ │ │ └── _category_.json │ │ ├── production-deployments.md │ │ ├── psp-migration.md │ │ ├── raw-policies.md │ │ ├── secure-supply-chain.md │ │ ├── tasks.md │ │ ├── telemetry │ │ │ ├── 10-opentelemetry-qs.md │ │ │ ├── 20-tracing-qs.md │ │ │ ├── 30-metrics-qs.md │ │ │ └── _category_.json │ │ ├── ui-extension │ │ │ ├── 01-install.md │ │ │ ├── 02-metrics.md │ │ │ ├── 03-tracing.md │ │ │ └── _category_.json │ │ ├── vap-migration.md │ │ └── workarounds │ │ │ ├── _category_.json │ │ │ └── policy-server-certificate-expiry.md │ ├── images │ │ ├── architecture.png │ │ ├── architecture_sequence_01.png │ │ ├── architecture_sequence_02.png │ │ ├── architecture_sequence_03.png │ │ ├── architecture_sequence_04.png │ │ ├── architecture_sequence_05.png │ │ ├── grafana_dashboard_1.png │ │ ├── grafana_dashboard_2.png │ │ ├── grafana_dashboard_3.png │ │ ├── grafana_dashboard_4.png │ │ └── tasks-policy-hub.png │ ├── introduction.md │ ├── quick-start.md │ ├── reference │ │ ├── CRDs.md │ │ ├── _category_.json │ │ ├── dependency-matrix.md │ │ ├── metrics-reference.md │ │ ├── monitor-mode.md │ │ ├── oci-registries-support.md │ │ ├── policy-evaluation-timeout.md │ │ ├── sources_yaml.md │ │ ├── spec │ │ │ ├── 01-intro-spec.md │ │ │ ├── 02-settings.md │ │ │ ├── 03-validating-policies.md │ │ │ ├── 04-mutating-policies.md │ │ │ ├── 05-context-aware-policies.md │ │ │ ├── _category_.json │ │ │ └── host-capabilities │ │ │ │ ├── 01-intro-host-capabilities.md │ │ │ │ ├── 02-signature-verifier-policies.md │ │ │ │ ├── 03-container-registry.md │ │ │ │ ├── 04-net.md │ │ │ │ ├── 05-crypto.md │ │ │ │ ├── 06-kubernetes.md │ │ │ │ └── _category_.json │ │ ├── threat-model.md │ │ ├── upgrade-path.md │ │ └── verification-config.md │ └── tutorials │ │ ├── _category_.json │ │ ├── publish-policy-to-artifact-hub.md │ │ ├── testing-policies │ │ ├── 02-policy-authors.md │ │ ├── 03-cluster-operators.md │ │ ├── _category_.json │ │ └── index.md │ │ ├── verifying-kubewarden.md │ │ └── writing-policies │ │ ├── CEL │ │ ├── 01-intro-cel.md │ │ ├── 02-reusing-vap.md │ │ ├── 03-context-aware.md │ │ ├── 04-example-sigstore.md │ │ └── _category_.json │ │ ├── _category_.json │ │ ├── dotnet.md │ │ ├── go │ │ ├── 01-intro-go.md │ │ ├── 02-scaffold.md │ │ ├── 03-policy-settings.md │ │ ├── 04-validation.md │ │ ├── 05-e2e-tests.md │ │ ├── 06-logging.md │ │ ├── 07-automate.md │ │ ├── 08-distribute.md │ │ ├── 09-validation-with-queries.md │ │ ├── 10-raw-policies.md │ │ └── _category_.json │ │ ├── index.md │ │ ├── metadata.md │ │ ├── other-languages.md │ │ ├── rego │ │ ├── 01-intro-rego.md │ │ ├── 02-builtin-support.md │ │ ├── _category_.json │ │ ├── gatekeeper │ │ │ ├── 01-intro.md │ │ │ ├── 02-create-policy.md │ │ │ ├── 03-build-and-run.md │ │ │ ├── 04-distribute.md │ │ │ └── _category_.json │ │ └── open-policy-agent │ │ │ ├── 01-intro.md │ │ │ ├── 02-create-policy.md │ │ │ ├── 03-build-and-run.md │ │ │ ├── 04-distribute.md │ │ │ ├── 05-raw-policies.md │ │ │ └── _category_.json │ │ ├── rust │ │ ├── 01-intro-rust.md │ │ ├── 02-create-policy.md │ │ ├── 03-define-policy-settings.md │ │ ├── 04-write-validation-logic.md │ │ ├── 05-mutation-policy.md │ │ ├── 06-logging.md │ │ ├── 07-build-and-distribute.md │ │ ├── 08-raw-policies.md │ │ └── _category_.json │ │ ├── swift.md │ │ ├── typescript.md │ │ └── wasi │ │ ├── 01-intro-wasi.md │ │ ├── 02-raw-policies.md │ │ └── _category_.json ├── version-1.18 │ ├── disclosure.md │ ├── explanations │ │ ├── _category_.json │ │ ├── architecture.md │ │ ├── audit-scanner │ │ │ ├── audit-scanner.md │ │ │ ├── limitations.md │ │ │ └── policy-reports.md │ │ ├── certificates.md │ │ ├── comparisons │ │ │ ├── _category_.json │ │ │ └── opa-comparison.md │ │ ├── context-aware-policies.md │ │ ├── distributing-policies.md │ │ ├── mutating-policies.md │ │ └── policy-groups.md │ ├── glossary.md │ ├── howtos │ │ ├── Rancher-Fleet.md │ │ ├── _category_.json │ │ ├── airgap │ │ │ ├── 01-requirements.md │ │ │ ├── 02-install.md │ │ │ └── _category_.json │ │ ├── application-collection │ │ │ ├── 01-verify-images.md │ │ │ └── _category_.json │ │ ├── audit-scanner.md │ │ ├── contribution-guide │ │ │ ├── _category_.json │ │ │ ├── contributing.md │ │ │ ├── contribution-guide.md │ │ │ └── suggesting-an-improvement.md │ │ ├── custom-certificate-authorities.md │ │ ├── pod-security-admission-with-kubewarden.md │ │ ├── policies.md │ │ ├── policy-groups.md │ │ ├── policy-servers │ │ │ ├── 01-custom-cas.md │ │ │ ├── 02-private-registry.md │ │ │ ├── 03-production-deployments.md │ │ │ └── _category_.json │ │ ├── production-deployments.md │ │ ├── psp-migration.md │ │ ├── raw-policies.md │ │ ├── secure-supply-chain.md │ │ ├── tasks.md │ │ ├── telemetry │ │ │ ├── 10-opentelemetry-qs.md │ │ │ ├── 20-tracing-qs.md │ │ │ ├── 30-metrics-qs.md │ │ │ └── _category_.json │ │ ├── ui-extension │ │ │ ├── 01-install.md │ │ │ ├── 02-metrics.md │ │ │ ├── 03-tracing.md │ │ │ └── _category_.json │ │ ├── vap-migration.md │ │ └── workarounds │ │ │ ├── _category_.json │ │ │ └── policy-server-certificate-expiry.md │ ├── images │ │ ├── architecture.png │ │ ├── architecture_sequence_01.png │ │ ├── architecture_sequence_02.png │ │ ├── architecture_sequence_03.png │ │ ├── architecture_sequence_04.png │ │ ├── architecture_sequence_05.png │ │ ├── grafana_dashboard_1.png │ │ ├── grafana_dashboard_2.png │ │ ├── grafana_dashboard_3.png │ │ ├── grafana_dashboard_4.png │ │ └── tasks-policy-hub.png │ ├── introduction.md │ ├── quick-start.md │ ├── reference │ │ ├── CRDs.md │ │ ├── _category_.json │ │ ├── dependency-matrix.md │ │ ├── metrics-reference.md │ │ ├── monitor-mode.md │ │ ├── oci-registries-support.md │ │ ├── policy-evaluation-timeout.md │ │ ├── sources_yaml.md │ │ ├── spec │ │ │ ├── 01-intro-spec.md │ │ │ ├── 02-settings.md │ │ │ ├── 03-validating-policies.md │ │ │ ├── 04-mutating-policies.md │ │ │ ├── 05-context-aware-policies.md │ │ │ ├── _category_.json │ │ │ └── host-capabilities │ │ │ │ ├── 01-intro-host-capabilities.md │ │ │ │ ├── 02-signature-verifier-policies.md │ │ │ │ ├── 03-container-registry.md │ │ │ │ ├── 04-net.md │ │ │ │ ├── 05-crypto.md │ │ │ │ ├── 06-kubernetes.md │ │ │ │ └── _category_.json │ │ ├── threat-model.md │ │ ├── upgrade-path.md │ │ └── verification-config.md │ └── tutorials │ │ ├── _category_.json │ │ ├── publish-policy-to-artifact-hub.md │ │ ├── testing-policies │ │ ├── 02-policy-authors.md │ │ ├── 03-cluster-operators.md │ │ ├── _category_.json │ │ └── index.md │ │ ├── verifying-kubewarden.md │ │ └── writing-policies │ │ ├── CEL │ │ ├── 01-intro-cel.md │ │ ├── 02-reusing-vap.md │ │ ├── 03-context-aware.md │ │ ├── 04-example-sigstore.md │ │ └── _category_.json │ │ ├── _category_.json │ │ ├── dotnet.md │ │ ├── go │ │ ├── 01-intro-go.md │ │ ├── 02-scaffold.md │ │ ├── 03-policy-settings.md │ │ ├── 04-validation.md │ │ ├── 05-e2e-tests.md │ │ ├── 06-logging.md │ │ ├── 07-automate.md │ │ ├── 08-distribute.md │ │ ├── 09-validation-with-queries.md │ │ ├── 10-raw-policies.md │ │ └── _category_.json │ │ ├── index.md │ │ ├── metadata.md │ │ ├── other-languages.md │ │ ├── rego │ │ ├── 01-intro-rego.md │ │ ├── 02-builtin-support.md │ │ ├── _category_.json │ │ ├── gatekeeper │ │ │ ├── 01-intro.md │ │ │ ├── 02-create-policy.md │ │ │ ├── 03-build-and-run.md │ │ │ ├── 04-distribute.md │ │ │ └── _category_.json │ │ └── open-policy-agent │ │ │ ├── 01-intro.md │ │ │ ├── 02-create-policy.md │ │ │ ├── 03-build-and-run.md │ │ │ ├── 04-distribute.md │ │ │ ├── 05-raw-policies.md │ │ │ └── _category_.json │ │ ├── rust │ │ ├── 01-intro-rust.md │ │ ├── 02-create-policy.md │ │ ├── 03-define-policy-settings.md │ │ ├── 04-write-validation-logic.md │ │ ├── 05-mutation-policy.md │ │ ├── 06-logging.md │ │ ├── 07-build-and-distribute.md │ │ ├── 08-raw-policies.md │ │ └── _category_.json │ │ ├── swift.md │ │ ├── typescript.md │ │ └── wasi │ │ ├── 01-intro-wasi.md │ │ ├── 02-raw-policies.md │ │ └── _category_.json ├── version-1.19 │ ├── disclosure.md │ ├── explanations │ │ ├── _category_.json │ │ ├── architecture.md │ │ ├── audit-scanner │ │ │ ├── audit-scanner.md │ │ │ ├── limitations.md │ │ │ └── policy-reports.md │ │ ├── certificates.md │ │ ├── comparisons │ │ │ ├── _category_.json │ │ │ └── opa-comparison.md │ │ ├── context-aware-policies.md │ │ ├── distributing-policies.md │ │ ├── mutating-policies.md │ │ └── policy-groups.md │ ├── glossary.md │ ├── howtos │ │ ├── Rancher-Fleet.md │ │ ├── _category_.json │ │ ├── airgap │ │ │ ├── 01-requirements.md │ │ │ ├── 02-install.md │ │ │ └── _category_.json │ │ ├── application-collection │ │ │ ├── 01-verify-images.md │ │ │ └── _category_.json │ │ ├── audit-scanner.md │ │ ├── contribution-guide │ │ │ ├── _category_.json │ │ │ ├── contributing.md │ │ │ ├── contribution-guide.md │ │ │ └── suggesting-an-improvement.md │ │ ├── custom-certificate-authorities.md │ │ ├── pod-security-admission-with-kubewarden.md │ │ ├── policies.md │ │ ├── policy-groups.md │ │ ├── policy-servers │ │ │ ├── 01-custom-cas.md │ │ │ ├── 02-private-registry.md │ │ │ ├── 03-production-deployments.md │ │ │ └── _category_.json │ │ ├── production-deployments.md │ │ ├── psp-migration.md │ │ ├── raw-policies.md │ │ ├── secure-supply-chain.md │ │ ├── tasks.md │ │ ├── telemetry │ │ │ ├── 10-opentelemetry-qs.md │ │ │ ├── 20-tracing-qs.md │ │ │ ├── 30-metrics-qs.md │ │ │ └── _category_.json │ │ ├── ui-extension │ │ │ ├── 01-install.md │ │ │ ├── 02-metrics.md │ │ │ ├── 03-tracing.md │ │ │ └── _category_.json │ │ ├── vap-migration.md │ │ └── workarounds │ │ │ ├── _category_.json │ │ │ └── policy-server-certificate-expiry.md │ ├── images │ │ ├── architecture.png │ │ ├── architecture_sequence_01.png │ │ ├── architecture_sequence_02.png │ │ ├── architecture_sequence_03.png │ │ ├── architecture_sequence_04.png │ │ ├── architecture_sequence_05.png │ │ ├── grafana_dashboard_1.png │ │ ├── grafana_dashboard_2.png │ │ ├── grafana_dashboard_3.png │ │ ├── grafana_dashboard_4.png │ │ └── tasks-policy-hub.png │ ├── introduction.md │ ├── quick-start.md │ ├── reference │ │ ├── CRDs.md │ │ ├── _category_.json │ │ ├── dependency-matrix.md │ │ ├── metrics-reference.md │ │ ├── monitor-mode.md │ │ ├── oci-registries-support.md │ │ ├── policy-evaluation-timeout.md │ │ ├── sources_yaml.md │ │ ├── spec │ │ │ ├── 01-intro-spec.md │ │ │ ├── 02-settings.md │ │ │ ├── 03-validating-policies.md │ │ │ ├── 04-mutating-policies.md │ │ │ ├── 05-context-aware-policies.md │ │ │ ├── _category_.json │ │ │ └── host-capabilities │ │ │ │ ├── 01-intro-host-capabilities.md │ │ │ │ ├── 02-signature-verifier-policies.md │ │ │ │ ├── 03-container-registry.md │ │ │ │ ├── 04-net.md │ │ │ │ ├── 05-crypto.md │ │ │ │ ├── 06-kubernetes.md │ │ │ │ └── _category_.json │ │ ├── threat-model.md │ │ ├── upgrade-path.md │ │ └── verification-config.md │ └── tutorials │ │ ├── _category_.json │ │ ├── publish-policy-to-artifact-hub.md │ │ ├── testing-policies │ │ ├── 02-policy-authors.md │ │ ├── 03-cluster-operators.md │ │ ├── _category_.json │ │ └── index.md │ │ ├── verifying-kubewarden.md │ │ └── writing-policies │ │ ├── CEL │ │ ├── 01-intro-cel.md │ │ ├── 02-reusing-vap.md │ │ ├── 03-context-aware.md │ │ ├── 04-example-sigstore.md │ │ └── _category_.json │ │ ├── _category_.json │ │ ├── dotnet.md │ │ ├── go │ │ ├── 01-intro-go.md │ │ ├── 02-scaffold.md │ │ ├── 03-policy-settings.md │ │ ├── 04-validation.md │ │ ├── 05-e2e-tests.md │ │ ├── 06-logging.md │ │ ├── 07-automate.md │ │ ├── 08-distribute.md │ │ ├── 09-validation-with-queries.md │ │ ├── 10-raw-policies.md │ │ └── _category_.json │ │ ├── index.md │ │ ├── metadata.md │ │ ├── other-languages.md │ │ ├── rego │ │ ├── 01-intro-rego.md │ │ ├── 02-builtin-support.md │ │ ├── _category_.json │ │ ├── gatekeeper │ │ │ ├── 01-intro.md │ │ │ ├── 02-create-policy.md │ │ │ ├── 03-build-and-run.md │ │ │ ├── 04-distribute.md │ │ │ └── _category_.json │ │ └── open-policy-agent │ │ │ ├── 01-intro.md │ │ │ ├── 02-create-policy.md │ │ │ ├── 03-build-and-run.md │ │ │ ├── 04-distribute.md │ │ │ ├── 05-raw-policies.md │ │ │ └── _category_.json │ │ ├── rust │ │ ├── 01-intro-rust.md │ │ ├── 02-create-policy.md │ │ ├── 03-define-policy-settings.md │ │ ├── 04-write-validation-logic.md │ │ ├── 05-mutation-policy.md │ │ ├── 06-logging.md │ │ ├── 07-build-and-distribute.md │ │ ├── 08-raw-policies.md │ │ └── _category_.json │ │ ├── swift.md │ │ ├── typescript.md │ │ └── wasi │ │ ├── 01-intro-wasi.md │ │ ├── 02-raw-policies.md │ │ └── _category_.json ├── version-1.20 │ ├── disclosure.md │ ├── explanations │ │ ├── _category_.json │ │ ├── architecture.md │ │ ├── audit-scanner │ │ │ ├── audit-scanner.md │ │ │ ├── limitations.md │ │ │ └── policy-reports.md │ │ ├── certificates.md │ │ ├── comparisons │ │ │ ├── _category_.json │ │ │ └── opa-comparison.md │ │ ├── context-aware-policies.md │ │ ├── distributing-policies.md │ │ ├── mutating-policies.md │ │ └── policy-groups.md │ ├── glossary.md │ ├── howtos │ │ ├── Rancher-Fleet.md │ │ ├── _category_.json │ │ ├── airgap │ │ │ ├── 01-requirements.md │ │ │ ├── 02-install.md │ │ │ └── _category_.json │ │ ├── application-collection │ │ │ ├── 01-verify-images.md │ │ │ └── _category_.json │ │ ├── audit-scanner.md │ │ ├── contribution-guide │ │ │ ├── _category_.json │ │ │ ├── contributing.md │ │ │ ├── contribution-guide.md │ │ │ └── suggesting-an-improvement.md │ │ ├── custom-certificate-authorities.md │ │ ├── pod-security-admission-with-kubewarden.md │ │ ├── policies.md │ │ ├── policy-groups.md │ │ ├── policy-servers │ │ │ ├── 01-custom-cas.md │ │ │ ├── 02-private-registry.md │ │ │ ├── 03-production-deployments.md │ │ │ └── _category_.json │ │ ├── production-deployments.md │ │ ├── psp-migration.md │ │ ├── raw-policies.md │ │ ├── secure-supply-chain.md │ │ ├── tasks.md │ │ ├── telemetry │ │ │ ├── 10-opentelemetry-qs.md │ │ │ ├── 20-tracing-qs.md │ │ │ ├── 30-metrics-qs.md │ │ │ ├── 40-custom-otel-collector.md │ │ │ └── _category_.json │ │ ├── ui-extension │ │ │ ├── 01-install.md │ │ │ ├── 02-metrics.md │ │ │ ├── 03-tracing.md │ │ │ └── _category_.json │ │ ├── vap-migration.md │ │ └── workarounds │ │ │ ├── _category_.json │ │ │ └── policy-server-certificate-expiry.md │ ├── images │ │ ├── architecture.png │ │ ├── architecture_sequence_01.png │ │ ├── architecture_sequence_02.png │ │ ├── architecture_sequence_03.png │ │ ├── architecture_sequence_04.png │ │ ├── architecture_sequence_05.png │ │ ├── grafana_dashboard_1.png │ │ ├── grafana_dashboard_2.png │ │ ├── grafana_dashboard_3.png │ │ ├── grafana_dashboard_4.png │ │ └── tasks-policy-hub.png │ ├── introduction.md │ ├── quick-start.md │ ├── reference │ │ ├── CRDs.md │ │ ├── _category_.json │ │ ├── artifacts.md │ │ ├── dependency-matrix.md │ │ ├── metrics-reference.md │ │ ├── monitor-mode.md │ │ ├── oci-registries-support.md │ │ ├── policy-evaluation-timeout.md │ │ ├── sources_yaml.md │ │ ├── spec │ │ │ ├── 01-intro-spec.md │ │ │ ├── 02-settings.md │ │ │ ├── 03-validating-policies.md │ │ │ ├── 04-mutating-policies.md │ │ │ ├── 05-context-aware-policies.md │ │ │ ├── _category_.json │ │ │ └── host-capabilities │ │ │ │ ├── 01-intro-host-capabilities.md │ │ │ │ ├── 02-signature-verifier-policies.md │ │ │ │ ├── 03-container-registry.md │ │ │ │ ├── 04-net.md │ │ │ │ ├── 05-crypto.md │ │ │ │ ├── 06-kubernetes.md │ │ │ │ └── _category_.json │ │ ├── threat-model.md │ │ ├── upgrade-path.md │ │ └── verification-config.md │ └── tutorials │ │ ├── _category_.json │ │ ├── publish-policy-to-artifact-hub.md │ │ ├── testing-policies │ │ ├── 02-policy-authors.md │ │ ├── 03-cluster-operators.md │ │ ├── _category_.json │ │ └── index.md │ │ ├── verifying-kubewarden.md │ │ └── writing-policies │ │ ├── CEL │ │ ├── 01-intro-cel.md │ │ ├── 02-reusing-vap.md │ │ ├── 03-context-aware.md │ │ ├── 04-example-sigstore.md │ │ └── _category_.json │ │ ├── _category_.json │ │ ├── dotnet.md │ │ ├── go │ │ ├── 01-intro-go.md │ │ ├── 02-scaffold.md │ │ ├── 03-policy-settings.md │ │ ├── 04-validation.md │ │ ├── 05-e2e-tests.md │ │ ├── 06-logging.md │ │ ├── 07-automate.md │ │ ├── 08-distribute.md │ │ ├── 09-validation-with-queries.md │ │ ├── 10-raw-policies.md │ │ └── _category_.json │ │ ├── index.md │ │ ├── metadata.md │ │ ├── other-languages.md │ │ ├── rego │ │ ├── 01-intro-rego.md │ │ ├── 02-builtin-support.md │ │ ├── _category_.json │ │ ├── gatekeeper │ │ │ ├── 01-intro.md │ │ │ ├── 02-create-policy.md │ │ │ ├── 03-build-and-run.md │ │ │ ├── 04-distribute.md │ │ │ └── _category_.json │ │ └── open-policy-agent │ │ │ ├── 01-intro.md │ │ │ ├── 02-create-policy.md │ │ │ ├── 03-build-and-run.md │ │ │ ├── 04-distribute.md │ │ │ ├── 05-raw-policies.md │ │ │ └── _category_.json │ │ ├── rust │ │ ├── 01-intro-rust.md │ │ ├── 02-create-policy.md │ │ ├── 03-define-policy-settings.md │ │ ├── 04-write-validation-logic.md │ │ ├── 05-mutation-policy.md │ │ ├── 06-logging.md │ │ ├── 07-build-and-distribute.md │ │ ├── 08-raw-policies.md │ │ └── _category_.json │ │ ├── swift.md │ │ ├── typescript.md │ │ └── wasi │ │ ├── 01-intro-wasi.md │ │ ├── 02-raw-policies.md │ │ └── _category_.json ├── version-1.21 │ ├── disclosure.md │ ├── explanations │ │ ├── _category_.json │ │ ├── architecture.md │ │ ├── audit-scanner │ │ │ ├── audit-scanner.md │ │ │ ├── limitations.md │ │ │ └── policy-reports.md │ │ ├── certificates.md │ │ ├── comparisons │ │ │ ├── _category_.json │ │ │ └── opa-comparison.md │ │ ├── context-aware-policies.md │ │ ├── distributing-policies.md │ │ ├── mutating-policies.md │ │ └── policy-groups.md │ ├── glossary.md │ ├── howtos │ │ ├── Rancher-Fleet.md │ │ ├── _category_.json │ │ ├── airgap │ │ │ ├── 01-requirements.md │ │ │ ├── 02-install.md │ │ │ └── _category_.json │ │ ├── application-collection │ │ │ ├── 01-verify-images.md │ │ │ └── _category_.json │ │ ├── argocd-installation.md │ │ ├── audit-scanner.md │ │ ├── contribution-guide │ │ │ ├── _category_.json │ │ │ ├── contributing.md │ │ │ ├── contribution-guide.md │ │ │ └── suggesting-an-improvement.md │ │ ├── custom-certificate-authorities.md │ │ ├── pod-security-admission-with-kubewarden.md │ │ ├── policies.md │ │ ├── policy-groups.md │ │ ├── policy-servers │ │ │ ├── 01-custom-cas.md │ │ │ ├── 02-private-registry.md │ │ │ ├── 03-production-deployments.md │ │ │ └── _category_.json │ │ ├── production-deployments.md │ │ ├── psp-migration.md │ │ ├── raw-policies.md │ │ ├── secure-supply-chain.md │ │ ├── tasks.md │ │ ├── telemetry │ │ │ ├── 10-opentelemetry-qs.md │ │ │ ├── 20-tracing-qs.md │ │ │ ├── 30-metrics-qs.md │ │ │ ├── 40-custom-otel-collector.md │ │ │ └── _category_.json │ │ ├── ui-extension │ │ │ ├── 01-install.md │ │ │ ├── 02-metrics.md │ │ │ ├── 03-tracing.md │ │ │ └── _category_.json │ │ ├── vap-migration.md │ │ └── workarounds │ │ │ ├── _category_.json │ │ │ └── policy-server-certificate-expiry.md │ ├── images │ │ ├── architecture.png │ │ ├── architecture_sequence_01.png │ │ ├── architecture_sequence_02.png │ │ ├── architecture_sequence_03.png │ │ ├── architecture_sequence_04.png │ │ ├── architecture_sequence_05.png │ │ ├── grafana_dashboard_1.png │ │ ├── grafana_dashboard_2.png │ │ ├── grafana_dashboard_3.png │ │ ├── grafana_dashboard_4.png │ │ └── tasks-policy-hub.png │ ├── introduction.md │ ├── organization.md │ ├── personas.md │ ├── quick-start.md │ ├── reference │ │ ├── CRDs.md │ │ ├── _category_.json │ │ ├── artifacts.md │ │ ├── dependency-matrix.md │ │ ├── kwctl-cli.md │ │ ├── metrics-reference.md │ │ ├── monitor-mode.md │ │ ├── oci-registries-support.md │ │ ├── policy-evaluation-timeout.md │ │ ├── policy-server-cli.md │ │ ├── sources_yaml.md │ │ ├── spec │ │ │ ├── 01-intro-spec.md │ │ │ ├── 02-settings.md │ │ │ ├── 03-validating-policies.md │ │ │ ├── 04-mutating-policies.md │ │ │ ├── 05-context-aware-policies.md │ │ │ ├── _category_.json │ │ │ └── host-capabilities │ │ │ │ ├── 01-intro-host-capabilities.md │ │ │ │ ├── 02-signature-verifier-policies.md │ │ │ │ ├── 03-container-registry.md │ │ │ │ ├── 04-net.md │ │ │ │ ├── 05-crypto.md │ │ │ │ ├── 06-kubernetes.md │ │ │ │ └── _category_.json │ │ ├── threat-model.md │ │ ├── upgrade-path.md │ │ └── verification-config.md │ └── tutorials │ │ ├── _category_.json │ │ ├── publish-policy-to-artifact-hub.md │ │ ├── testing-policies │ │ ├── 02-policy-authors.md │ │ ├── 03-cluster-operators.md │ │ ├── _category_.json │ │ └── index.md │ │ ├── verifying-kubewarden.md │ │ └── writing-policies │ │ ├── CEL │ │ ├── 01-intro-cel.md │ │ ├── 02-reusing-vap.md │ │ ├── 03-context-aware.md │ │ ├── 04-example-sigstore.md │ │ └── _category_.json │ │ ├── _category_.json │ │ ├── dotnet.md │ │ ├── go │ │ ├── 01-intro-go.md │ │ ├── 02-scaffold.md │ │ ├── 03-policy-settings.md │ │ ├── 04-validation.md │ │ ├── 05-e2e-tests.md │ │ ├── 06-logging.md │ │ ├── 07-automate.md │ │ ├── 08-distribute.md │ │ ├── 09-validation-with-queries.md │ │ ├── 10-raw-policies.md │ │ └── _category_.json │ │ ├── index.md │ │ ├── metadata.md │ │ ├── other-languages.md │ │ ├── rego │ │ ├── 01-intro-rego.md │ │ ├── 02-builtin-support.md │ │ ├── _category_.json │ │ ├── gatekeeper │ │ │ ├── 01-intro.md │ │ │ ├── 02-create-policy.md │ │ │ ├── 03-build-and-run.md │ │ │ ├── 04-distribute.md │ │ │ └── _category_.json │ │ └── open-policy-agent │ │ │ ├── 01-intro.md │ │ │ ├── 02-create-policy.md │ │ │ ├── 03-build-and-run.md │ │ │ ├── 04-distribute.md │ │ │ ├── 05-raw-policies.md │ │ │ └── _category_.json │ │ ├── rust │ │ ├── 01-intro-rust.md │ │ ├── 02-create-policy.md │ │ ├── 03-define-policy-settings.md │ │ ├── 04-write-validation-logic.md │ │ ├── 05-mutation-policy.md │ │ ├── 06-logging.md │ │ ├── 07-build-and-distribute.md │ │ ├── 08-raw-policies.md │ │ └── _category_.json │ │ ├── swift.md │ │ ├── typescript.md │ │ └── wasi │ │ ├── 01-intro-wasi.md │ │ ├── 02-raw-policies.md │ │ └── _category_.json ├── version-1.22 │ ├── disclosure.md │ ├── enterprise.md │ ├── explanations │ │ ├── _category_.json │ │ ├── architecture.md │ │ ├── audit-scanner │ │ │ ├── audit-scanner.md │ │ │ ├── limitations.md │ │ │ └── policy-reports.md │ │ ├── certificates.md │ │ ├── comparisons │ │ │ ├── _category_.json │ │ │ └── opa-comparison.md │ │ ├── context-aware-policies.md │ │ ├── distributing-policies.md │ │ ├── mutating-policies.md │ │ └── policy-groups.md │ ├── glossary.md │ ├── howtos │ │ ├── Rancher-Fleet.md │ │ ├── _category_.json │ │ ├── airgap │ │ │ ├── 01-requirements.md │ │ │ ├── 02-install.md │ │ │ └── _category_.json │ │ ├── application-collection │ │ │ ├── 01-verify-images.md │ │ │ └── _category_.json │ │ ├── argocd-installation.md │ │ ├── audit-scanner.md │ │ ├── contribution-guide │ │ │ ├── _category_.json │ │ │ ├── contributing.md │ │ │ ├── contribution-guide.md │ │ │ └── suggesting-an-improvement.md │ │ ├── custom-certificate-authorities.md │ │ ├── pod-security-admission-with-kubewarden.md │ │ ├── policies.md │ │ ├── policy-groups.md │ │ ├── policy-servers │ │ │ ├── 01-custom-cas.md │ │ │ ├── 02-private-registry.md │ │ │ ├── 03-production-deployments.md │ │ │ └── _category_.json │ │ ├── production-deployments.md │ │ ├── psp-migration.md │ │ ├── raw-policies.md │ │ ├── secure-supply-chain.md │ │ ├── tasks.md │ │ ├── telemetry │ │ │ ├── 10-opentelemetry-qs.md │ │ │ ├── 20-tracing-qs.md │ │ │ ├── 30-metrics-qs.md │ │ │ ├── 40-custom-otel-collector.md │ │ │ └── _category_.json │ │ ├── ui-extension │ │ │ ├── 01-install.md │ │ │ ├── 02-metrics.md │ │ │ ├── 03-tracing.md │ │ │ └── _category_.json │ │ ├── vap-migration.md │ │ └── workarounds │ │ │ ├── _category_.json │ │ │ └── policy-server-certificate-expiry.md │ ├── images │ │ ├── architecture.png │ │ ├── architecture_sequence_01.png │ │ ├── architecture_sequence_02.png │ │ ├── architecture_sequence_03.png │ │ ├── architecture_sequence_04.png │ │ ├── architecture_sequence_05.png │ │ ├── grafana_dashboard_1.png │ │ ├── grafana_dashboard_2.png │ │ ├── grafana_dashboard_3.png │ │ ├── grafana_dashboard_4.png │ │ └── tasks-policy-hub.png │ ├── introduction.md │ ├── organization.md │ ├── personas.md │ ├── quick-start.md │ ├── reference │ │ ├── CRDs.md │ │ ├── _category_.json │ │ ├── artifacts.md │ │ ├── dependency-matrix.md │ │ ├── kwctl-cli.md │ │ ├── metrics-reference.md │ │ ├── monitor-mode.md │ │ ├── oci-registries-support.md │ │ ├── policy-evaluation-timeout.md │ │ ├── policy-server-cli.md │ │ ├── sources_yaml.md │ │ ├── spec │ │ │ ├── 01-intro-spec.md │ │ │ ├── 02-settings.md │ │ │ ├── 03-validating-policies.md │ │ │ ├── 04-mutating-policies.md │ │ │ ├── 05-context-aware-policies.md │ │ │ ├── _category_.json │ │ │ └── host-capabilities │ │ │ │ ├── 01-intro-host-capabilities.md │ │ │ │ ├── 02-signature-verifier-policies.md │ │ │ │ ├── 03-container-registry.md │ │ │ │ ├── 04-net.md │ │ │ │ ├── 05-crypto.md │ │ │ │ ├── 06-kubernetes.md │ │ │ │ └── _category_.json │ │ ├── threat-model.md │ │ ├── upgrade-path.md │ │ └── verification-config.md │ └── tutorials │ │ ├── _category_.json │ │ ├── publish-policy-to-artifact-hub.md │ │ ├── testing-policies │ │ ├── 02-policy-authors.md │ │ ├── 03-cluster-operators.md │ │ ├── _category_.json │ │ └── index.md │ │ ├── verifying-kubewarden.md │ │ └── writing-policies │ │ ├── CEL │ │ ├── 01-intro-cel.md │ │ ├── 02-reusing-vap.md │ │ ├── 03-context-aware.md │ │ ├── 04-example-sigstore.md │ │ └── _category_.json │ │ ├── _category_.json │ │ ├── dotnet.md │ │ ├── go │ │ ├── 01-intro-go.md │ │ ├── 02-scaffold.md │ │ ├── 03-policy-settings.md │ │ ├── 04-validation.md │ │ ├── 05-e2e-tests.md │ │ ├── 06-logging.md │ │ ├── 07-automate.md │ │ ├── 08-distribute.md │ │ ├── 09-validation-with-queries.md │ │ ├── 10-raw-policies.md │ │ └── _category_.json │ │ ├── index.md │ │ ├── metadata.md │ │ ├── other-languages.md │ │ ├── rego │ │ ├── 01-intro-rego.md │ │ ├── 02-builtin-support.md │ │ ├── _category_.json │ │ ├── gatekeeper │ │ │ ├── 01-intro.md │ │ │ ├── 02-create-policy.md │ │ │ ├── 03-build-and-run.md │ │ │ ├── 04-distribute.md │ │ │ └── _category_.json │ │ └── open-policy-agent │ │ │ ├── 01-intro.md │ │ │ ├── 02-create-policy.md │ │ │ ├── 03-build-and-run.md │ │ │ ├── 04-distribute.md │ │ │ ├── 05-raw-policies.md │ │ │ └── _category_.json │ │ ├── rust │ │ ├── 01-intro-rust.md │ │ ├── 02-create-policy.md │ │ ├── 03-define-policy-settings.md │ │ ├── 04-write-validation-logic.md │ │ ├── 05-mutation-policy.md │ │ ├── 06-logging.md │ │ ├── 07-build-and-distribute.md │ │ ├── 08-raw-policies.md │ │ └── _category_.json │ │ ├── swift.md │ │ ├── typescript.md │ │ └── wasi │ │ ├── 01-intro-wasi.md │ │ ├── 02-raw-policies.md │ │ └── _category_.json ├── version-1.23 │ ├── disclosure.md │ ├── enterprise.md │ ├── explanations │ │ ├── _category_.json │ │ ├── architecture.md │ │ ├── audit-scanner │ │ │ ├── audit-scanner.md │ │ │ ├── limitations.md │ │ │ └── policy-reports.md │ │ ├── certificates.md │ │ ├── comparisons │ │ │ ├── _category_.json │ │ │ └── opa-comparison.md │ │ ├── context-aware-policies.md │ │ ├── distributing-policies.md │ │ ├── mutating-policies.md │ │ └── policy-groups.md │ ├── glossary.md │ ├── howtos │ │ ├── Rancher-Fleet.md │ │ ├── _category_.json │ │ ├── airgap │ │ │ ├── 01-requirements.md │ │ │ ├── 02-install.md │ │ │ └── _category_.json │ │ ├── application-collection │ │ │ ├── 01-verify-images.md │ │ │ └── _category_.json │ │ ├── argocd-installation.md │ │ ├── audit-scanner.md │ │ ├── contribution-guide │ │ │ ├── _category_.json │ │ │ ├── contributing.md │ │ │ ├── contribution-guide.md │ │ │ └── suggesting-an-improvement.md │ │ ├── custom-certificate-authorities.md │ │ ├── pod-security-admission-with-kubewarden.md │ │ ├── policies.md │ │ ├── policy-groups.md │ │ ├── policy-servers │ │ │ ├── 01-custom-cas.md │ │ │ ├── 02-private-registry.md │ │ │ ├── 03-production-deployments.md │ │ │ └── _category_.json │ │ ├── production-deployments.md │ │ ├── psp-migration.md │ │ ├── raw-policies.md │ │ ├── security-hardening │ │ │ ├── _category_.json │ │ │ ├── secure-supply-chain.md │ │ │ ├── security-hardening.md │ │ │ └── webhook-mtls.md │ │ ├── tasks.md │ │ ├── telemetry │ │ │ ├── 10-opentelemetry-qs.md │ │ │ ├── 20-tracing-qs.md │ │ │ ├── 30-metrics-qs.md │ │ │ ├── 40-custom-otel-collector.md │ │ │ └── _category_.json │ │ ├── ui-extension │ │ │ ├── 01-install.md │ │ │ ├── 02-metrics.md │ │ │ ├── 03-tracing.md │ │ │ └── _category_.json │ │ ├── vap-migration.md │ │ └── workarounds │ │ │ ├── _category_.json │ │ │ └── policy-server-certificate-expiry.md │ ├── images │ │ ├── architecture.png │ │ ├── architecture_sequence_01.png │ │ ├── architecture_sequence_02.png │ │ ├── architecture_sequence_03.png │ │ ├── architecture_sequence_04.png │ │ ├── architecture_sequence_05.png │ │ ├── grafana_dashboard_1.png │ │ ├── grafana_dashboard_2.png │ │ ├── grafana_dashboard_3.png │ │ ├── grafana_dashboard_4.png │ │ └── tasks-policy-hub.png │ ├── introduction.md │ ├── organization.md │ ├── personas.md │ ├── quick-start.md │ ├── reference │ │ ├── CRDs.md │ │ ├── _category_.json │ │ ├── artifacts.md │ │ ├── dependency-matrix.md │ │ ├── kwctl-cli.md │ │ ├── metrics-reference.md │ │ ├── monitor-mode.md │ │ ├── oci-registries-support.md │ │ ├── policy-evaluation-timeout.md │ │ ├── policy-server-cli.md │ │ ├── security-hardening │ │ │ ├── _category_.json │ │ │ └── webhooks-hardening.md │ │ ├── sources_yaml.md │ │ ├── spec │ │ │ ├── 01-intro-spec.md │ │ │ ├── 02-settings.md │ │ │ ├── 03-validating-policies.md │ │ │ ├── 04-mutating-policies.md │ │ │ ├── 05-context-aware-policies.md │ │ │ ├── _category_.json │ │ │ └── host-capabilities │ │ │ │ ├── 01-intro-host-capabilities.md │ │ │ │ ├── 02-signature-verifier-policies.md │ │ │ │ ├── 03-container-registry.md │ │ │ │ ├── 04-net.md │ │ │ │ ├── 05-crypto.md │ │ │ │ ├── 06-kubernetes.md │ │ │ │ └── _category_.json │ │ ├── threat-model.md │ │ ├── upgrade-path.md │ │ └── verification-config.md │ └── tutorials │ │ ├── _category_.json │ │ ├── publish-policy-to-artifact-hub.md │ │ ├── testing-policies │ │ ├── 02-policy-authors.md │ │ ├── 03-cluster-operators.md │ │ ├── _category_.json │ │ └── index.md │ │ ├── verifying-kubewarden.md │ │ └── writing-policies │ │ ├── CEL │ │ ├── 01-intro-cel.md │ │ ├── 02-reusing-vap.md │ │ ├── 03-context-aware.md │ │ ├── 04-example-sigstore.md │ │ └── _category_.json │ │ ├── _category_.json │ │ ├── dotnet.md │ │ ├── go │ │ ├── 01-intro-go.md │ │ ├── 02-scaffold.md │ │ ├── 03-policy-settings.md │ │ ├── 04-validation.md │ │ ├── 05-e2e-tests.md │ │ ├── 06-logging.md │ │ ├── 07-automate.md │ │ ├── 08-distribute.md │ │ ├── 09-validation-with-queries.md │ │ ├── 10-raw-policies.md │ │ └── _category_.json │ │ ├── index.md │ │ ├── metadata.md │ │ ├── other-languages.md │ │ ├── rego │ │ ├── 01-intro-rego.md │ │ ├── 02-builtin-support.md │ │ ├── _category_.json │ │ ├── gatekeeper │ │ │ ├── 01-intro.md │ │ │ ├── 02-create-policy.md │ │ │ ├── 03-build-and-run.md │ │ │ ├── 04-distribute.md │ │ │ └── _category_.json │ │ └── open-policy-agent │ │ │ ├── 01-intro.md │ │ │ ├── 02-create-policy.md │ │ │ ├── 03-build-and-run.md │ │ │ ├── 04-distribute.md │ │ │ ├── 05-raw-policies.md │ │ │ └── _category_.json │ │ ├── rust │ │ ├── 01-intro-rust.md │ │ ├── 02-create-policy.md │ │ ├── 03-define-policy-settings.md │ │ ├── 04-write-validation-logic.md │ │ ├── 05-mutation-policy.md │ │ ├── 06-logging.md │ │ ├── 07-build-and-distribute.md │ │ ├── 08-raw-policies.md │ │ └── _category_.json │ │ ├── swift.md │ │ ├── typescript.md │ │ └── wasi │ │ ├── 01-intro-wasi.md │ │ ├── 02-raw-policies.md │ │ └── _category_.json ├── version-1.24 │ ├── disclosure.md │ ├── enterprise.md │ ├── explanations │ │ ├── _category_.json │ │ ├── architecture.md │ │ ├── audit-scanner │ │ │ ├── audit-scanner.md │ │ │ ├── limitations.md │ │ │ └── policy-reports.md │ │ ├── certificates.md │ │ ├── comparisons │ │ │ ├── _category_.json │ │ │ └── opa-comparison.md │ │ ├── context-aware-policies.md │ │ ├── distributing-policies.md │ │ ├── mutating-policies.md │ │ └── policy-groups.md │ ├── glossary.md │ ├── howtos │ │ ├── Rancher-Fleet.md │ │ ├── _category_.json │ │ ├── airgap │ │ │ ├── 01-requirements.md │ │ │ ├── 02-install.md │ │ │ └── _category_.json │ │ ├── application-collection │ │ │ ├── 01-verify-images.md │ │ │ └── _category_.json │ │ ├── argocd-installation.md │ │ ├── audit-scanner.md │ │ ├── contribution-guide │ │ │ ├── _category_.json │ │ │ ├── contributing.md │ │ │ ├── contribution-guide.md │ │ │ └── suggesting-an-improvement.md │ │ ├── custom-certificate-authorities.md │ │ ├── emergency-disable.md │ │ ├── install-kwctl.md │ │ ├── pod-security-admission-with-kubewarden.md │ │ ├── policies.md │ │ ├── policy-groups.md │ │ ├── policy-servers │ │ │ ├── 01-custom-cas.md │ │ │ ├── 02-private-registry.md │ │ │ ├── 03-production-deployments.md │ │ │ └── _category_.json │ │ ├── production-deployments.md │ │ ├── psp-migration.md │ │ ├── raw-policies.md │ │ ├── security-hardening │ │ │ ├── _category_.json │ │ │ ├── secure-supply-chain.md │ │ │ ├── security-hardening.md │ │ │ └── webhook-mtls.md │ │ ├── tasks.md │ │ ├── telemetry │ │ │ ├── 10-opentelemetry-qs.md │ │ │ ├── 20-tracing-qs.md │ │ │ ├── 30-metrics-qs.md │ │ │ ├── 40-custom-otel-collector.md │ │ │ └── _category_.json │ │ ├── ui-extension │ │ │ ├── 01-install.md │ │ │ ├── 02-metrics.md │ │ │ ├── 03-tracing.md │ │ │ └── _category_.json │ │ ├── vap-migration.md │ │ └── workarounds │ │ │ ├── _category_.json │ │ │ └── policy-server-certificate-expiry.md │ ├── images │ │ ├── architecture.png │ │ ├── architecture_sequence_01.png │ │ ├── architecture_sequence_02.png │ │ ├── architecture_sequence_03.png │ │ ├── architecture_sequence_04.png │ │ ├── architecture_sequence_05.png │ │ ├── grafana_dashboard_1.png │ │ ├── grafana_dashboard_2.png │ │ ├── grafana_dashboard_3.png │ │ ├── grafana_dashboard_4.png │ │ └── tasks-policy-hub.png │ ├── introduction.md │ ├── organization.md │ ├── personas.md │ ├── quick-start.md │ ├── reference │ │ ├── CRDs.md │ │ ├── _category_.json │ │ ├── artifacts.md │ │ ├── dependency-matrix.md │ │ ├── kwctl-cli.md │ │ ├── metrics-reference.md │ │ ├── monitor-mode.md │ │ ├── oci-registries-support.md │ │ ├── policy-evaluation-timeout.md │ │ ├── policy-server-cli.md │ │ ├── security-hardening │ │ │ ├── _category_.json │ │ │ └── webhooks-hardening.md │ │ ├── sources_yaml.md │ │ ├── spec │ │ │ ├── 01-intro-spec.md │ │ │ ├── 02-settings.md │ │ │ ├── 03-validating-policies.md │ │ │ ├── 04-mutating-policies.md │ │ │ ├── 05-context-aware-policies.md │ │ │ ├── _category_.json │ │ │ └── host-capabilities │ │ │ │ ├── 01-intro-host-capabilities.md │ │ │ │ ├── 02-signature-verifier-policies.md │ │ │ │ ├── 03-container-registry.md │ │ │ │ ├── 04-net.md │ │ │ │ ├── 05-crypto.md │ │ │ │ ├── 06-kubernetes.md │ │ │ │ └── _category_.json │ │ ├── threat-model.md │ │ ├── upgrade-path.md │ │ └── verification-config.md │ ├── tutorials │ │ ├── _category_.json │ │ ├── publish-policy-to-artifact-hub.md │ │ ├── testing-policies │ │ │ ├── 02-policy-authors.md │ │ │ ├── 03-cluster-operators.md │ │ │ ├── _category_.json │ │ │ └── index.md │ │ ├── verifying-kubewarden.md │ │ └── writing-policies │ │ │ ├── CEL │ │ │ ├── 01-intro-cel.md │ │ │ ├── 02-reusing-vap.md │ │ │ ├── 03-context-aware.md │ │ │ ├── 04-example-sigstore.md │ │ │ └── _category_.json │ │ │ ├── _category_.json │ │ │ ├── dotnet.md │ │ │ ├── go │ │ │ ├── 01-intro-go.md │ │ │ ├── 02-scaffold.md │ │ │ ├── 03-policy-settings.md │ │ │ ├── 04-validation.md │ │ │ ├── 05-e2e-tests.md │ │ │ ├── 06-logging.md │ │ │ ├── 07-automate.md │ │ │ ├── 08-distribute.md │ │ │ ├── 09-validation-with-queries.md │ │ │ ├── 10-raw-policies.md │ │ │ └── _category_.json │ │ │ ├── index.md │ │ │ ├── metadata.md │ │ │ ├── other-languages.md │ │ │ ├── rego │ │ │ ├── 01-intro-rego.md │ │ │ ├── 02-builtin-support.md │ │ │ ├── _category_.json │ │ │ ├── gatekeeper │ │ │ │ ├── 01-intro.md │ │ │ │ ├── 02-create-policy.md │ │ │ │ ├── 03-build-and-run.md │ │ │ │ ├── 04-distribute.md │ │ │ │ └── _category_.json │ │ │ └── open-policy-agent │ │ │ │ ├── 01-intro.md │ │ │ │ ├── 02-create-policy.md │ │ │ │ ├── 03-build-and-run.md │ │ │ │ ├── 04-distribute.md │ │ │ │ ├── 05-raw-policies.md │ │ │ │ └── _category_.json │ │ │ ├── rust │ │ │ ├── 01-intro-rust.md │ │ │ ├── 02-create-policy.md │ │ │ ├── 03-define-policy-settings.md │ │ │ ├── 04-write-validation-logic.md │ │ │ ├── 05-mutation-policy.md │ │ │ ├── 06-logging.md │ │ │ ├── 07-build-and-distribute.md │ │ │ ├── 08-raw-policies.md │ │ │ └── _category_.json │ │ │ ├── swift.md │ │ │ ├── typescript.md │ │ │ └── wasi │ │ │ ├── 01-intro-wasi.md │ │ │ ├── 02-raw-policies.md │ │ │ └── _category_.json │ └── use-cases.md ├── version-1.25 │ ├── disclosure.md │ ├── enterprise.md │ ├── explanations │ │ ├── _category_.json │ │ ├── architecture.md │ │ ├── audit-scanner │ │ │ ├── audit-scanner.md │ │ │ ├── limitations.md │ │ │ └── policy-reports.md │ │ ├── certificates.md │ │ ├── comparisons │ │ │ ├── _category_.json │ │ │ └── opa-comparison.md │ │ ├── context-aware-policies.md │ │ ├── distributing-policies.md │ │ ├── mutating-policies.md │ │ └── policy-groups.md │ ├── glossary.md │ ├── howtos │ │ ├── Rancher-Fleet.md │ │ ├── _category_.json │ │ ├── airgap │ │ │ ├── 01-requirements.md │ │ │ ├── 02-install.md │ │ │ └── _category_.json │ │ ├── application-collection │ │ │ ├── 01-verify-images.md │ │ │ └── _category_.json │ │ ├── argocd-installation.md │ │ ├── audit-scanner.md │ │ ├── contribution-guide │ │ │ ├── _category_.json │ │ │ ├── contributing.md │ │ │ ├── contribution-guide.md │ │ │ └── suggesting-an-improvement.md │ │ ├── custom-certificate-authorities.md │ │ ├── emergency-disable.md │ │ ├── install-kwctl.md │ │ ├── pod-security-admission-with-kubewarden.md │ │ ├── policies.md │ │ ├── policy-groups.md │ │ ├── policy-servers │ │ │ ├── 01-custom-cas.md │ │ │ ├── 02-private-registry.md │ │ │ ├── 03-production-deployments.md │ │ │ └── _category_.json │ │ ├── production-deployments.md │ │ ├── psp-migration.md │ │ ├── raw-policies.md │ │ ├── security-hardening │ │ │ ├── _category_.json │ │ │ ├── secure-supply-chain.md │ │ │ ├── security-hardening.md │ │ │ └── webhook-mtls.md │ │ ├── tasks.md │ │ ├── telemetry │ │ │ ├── 10-opentelemetry-qs.md │ │ │ ├── 20-tracing-qs.md │ │ │ ├── 30-metrics-qs.md │ │ │ ├── 40-custom-otel-collector.md │ │ │ └── _category_.json │ │ ├── ui-extension │ │ │ ├── 01-install.md │ │ │ ├── 02-metrics.md │ │ │ ├── 03-tracing.md │ │ │ └── _category_.json │ │ ├── vap-migration.md │ │ └── workarounds │ │ │ ├── _category_.json │ │ │ └── policy-server-certificate-expiry.md │ ├── images │ │ ├── architecture.png │ │ ├── architecture_sequence_01.png │ │ ├── architecture_sequence_02.png │ │ ├── architecture_sequence_03.png │ │ ├── architecture_sequence_04.png │ │ ├── architecture_sequence_05.png │ │ ├── grafana_dashboard_1.png │ │ ├── grafana_dashboard_2.png │ │ ├── grafana_dashboard_3.png │ │ ├── grafana_dashboard_4.png │ │ └── tasks-policy-hub.png │ ├── introduction.md │ ├── organization.md │ ├── personas.md │ ├── quick-start.md │ ├── reference │ │ ├── CRDs.md │ │ ├── _category_.json │ │ ├── artifacts.md │ │ ├── dependency-matrix.md │ │ ├── kwctl-cli.md │ │ ├── metrics-reference.md │ │ ├── monitor-mode.md │ │ ├── oci-registries-support.md │ │ ├── policy-evaluation-timeout.md │ │ ├── policy-server-cli.md │ │ ├── security-hardening │ │ │ ├── _category_.json │ │ │ └── webhooks-hardening.md │ │ ├── sources_yaml.md │ │ ├── spec │ │ │ ├── 01-intro-spec.md │ │ │ ├── 02-settings.md │ │ │ ├── 03-validating-policies.md │ │ │ ├── 04-mutating-policies.md │ │ │ ├── 05-context-aware-policies.md │ │ │ ├── _category_.json │ │ │ └── host-capabilities │ │ │ │ ├── 01-intro-host-capabilities.md │ │ │ │ ├── 02-signature-verifier-policies.md │ │ │ │ ├── 03-container-registry.md │ │ │ │ ├── 04-net.md │ │ │ │ ├── 05-crypto.md │ │ │ │ ├── 06-kubernetes.md │ │ │ │ └── _category_.json │ │ ├── threat-model.md │ │ ├── upgrade-path.md │ │ └── verification-config.md │ ├── tutorials │ │ ├── _category_.json │ │ ├── publish-policy-to-artifact-hub.md │ │ ├── testing-policies │ │ │ ├── 02-policy-authors.md │ │ │ ├── 03-cluster-operators.md │ │ │ ├── _category_.json │ │ │ └── index.md │ │ ├── verifying-kubewarden.md │ │ └── writing-policies │ │ │ ├── CEL │ │ │ ├── 01-intro-cel.md │ │ │ ├── 02-reusing-vap.md │ │ │ ├── 03-context-aware.md │ │ │ ├── 04-example-sigstore.md │ │ │ └── _category_.json │ │ │ ├── _category_.json │ │ │ ├── dotnet.md │ │ │ ├── go │ │ │ ├── 01-intro-go.md │ │ │ ├── 02-scaffold.md │ │ │ ├── 03-policy-settings.md │ │ │ ├── 04-validation.md │ │ │ ├── 05-e2e-tests.md │ │ │ ├── 06-logging.md │ │ │ ├── 07-automate.md │ │ │ ├── 08-distribute.md │ │ │ ├── 09-validation-with-queries.md │ │ │ ├── 10-raw-policies.md │ │ │ └── _category_.json │ │ │ ├── index.md │ │ │ ├── metadata.md │ │ │ ├── other-languages.md │ │ │ ├── rego │ │ │ ├── 01-intro-rego.md │ │ │ ├── 02-builtin-support.md │ │ │ ├── _category_.json │ │ │ ├── gatekeeper │ │ │ │ ├── 01-intro.md │ │ │ │ ├── 02-create-policy.md │ │ │ │ ├── 03-build-and-run.md │ │ │ │ ├── 04-distribute.md │ │ │ │ └── _category_.json │ │ │ └── open-policy-agent │ │ │ │ ├── 01-intro.md │ │ │ │ ├── 02-create-policy.md │ │ │ │ ├── 03-build-and-run.md │ │ │ │ ├── 04-distribute.md │ │ │ │ ├── 05-raw-policies.md │ │ │ │ └── _category_.json │ │ │ ├── rust │ │ │ ├── 01-intro-rust.md │ │ │ ├── 02-create-policy.md │ │ │ ├── 03-define-policy-settings.md │ │ │ ├── 04-write-validation-logic.md │ │ │ ├── 05-mutation-policy.md │ │ │ ├── 06-logging.md │ │ │ ├── 07-build-and-distribute.md │ │ │ ├── 08-raw-policies.md │ │ │ └── _category_.json │ │ │ ├── swift.md │ │ │ ├── typescript.md │ │ │ └── wasi │ │ │ ├── 01-intro-wasi.md │ │ │ ├── 02-raw-policies.md │ │ │ └── _category_.json │ └── use-cases.md ├── version-1.26 │ ├── disclosure.md │ ├── enterprise.md │ ├── explanations │ │ ├── _category_.json │ │ ├── architecture.md │ │ ├── audit-scanner │ │ │ ├── audit-scanner.md │ │ │ ├── limitations.md │ │ │ └── policy-reports.md │ │ ├── certificates.md │ │ ├── comparisons │ │ │ ├── _category_.json │ │ │ └── opa-comparison.md │ │ ├── context-aware-policies.md │ │ ├── distributing-policies.md │ │ ├── mutating-policies.md │ │ └── policy-groups.md │ ├── glossary.md │ ├── howtos │ │ ├── Rancher-Fleet.md │ │ ├── _category_.json │ │ ├── airgap │ │ │ ├── 01-requirements.md │ │ │ ├── 02-install.md │ │ │ └── _category_.json │ │ ├── application-collection │ │ │ ├── 01-verify-images.md │ │ │ └── _category_.json │ │ ├── argocd-installation.md │ │ ├── audit-scanner.md │ │ ├── contribution-guide │ │ │ ├── _category_.json │ │ │ ├── contributing.md │ │ │ ├── contribution-guide.md │ │ │ └── suggesting-an-improvement.md │ │ ├── custom-certificate-authorities.md │ │ ├── deploy-at-scale.md │ │ ├── emergency-disable.md │ │ ├── gatekeeper-migration.md │ │ ├── install-kwctl.md │ │ ├── pod-security-admission-with-kubewarden.md │ │ ├── policies.md │ │ ├── policy-groups.md │ │ ├── policy-servers │ │ │ ├── 01-custom-cas.md │ │ │ ├── 02-private-registry.md │ │ │ ├── 03-production-deployments.md │ │ │ └── _category_.json │ │ ├── production-deployments.md │ │ ├── psp-migration.md │ │ ├── raw-policies.md │ │ ├── security-hardening │ │ │ ├── _category_.json │ │ │ ├── secure-supply-chain.md │ │ │ ├── security-hardening.md │ │ │ └── webhook-mtls.md │ │ ├── tasks.md │ │ ├── telemetry │ │ │ ├── 10-opentelemetry-qs.md │ │ │ ├── 20-tracing-qs.md │ │ │ ├── 30-metrics-qs.md │ │ │ ├── 40-custom-otel-collector.md │ │ │ └── _category_.json │ │ ├── ui-extension │ │ │ ├── 01-install.md │ │ │ ├── 02-metrics.md │ │ │ ├── 03-tracing.md │ │ │ └── _category_.json │ │ ├── vap-migration.md │ │ └── workarounds │ │ │ ├── _category_.json │ │ │ └── policy-server-certificate-expiry.md │ ├── images │ │ ├── architecture.png │ │ ├── architecture_sequence_01.png │ │ ├── architecture_sequence_02.png │ │ ├── architecture_sequence_03.png │ │ ├── architecture_sequence_04.png │ │ ├── architecture_sequence_05.png │ │ ├── grafana_dashboard_1.png │ │ ├── grafana_dashboard_2.png │ │ ├── grafana_dashboard_3.png │ │ ├── grafana_dashboard_4.png │ │ └── tasks-policy-hub.png │ ├── introduction.md │ ├── organization.md │ ├── personas.md │ ├── quick-start.md │ ├── reference │ │ ├── CRDs.md │ │ ├── _category_.json │ │ ├── artifacts.md │ │ ├── dependency-matrix.md │ │ ├── kwctl-cli.md │ │ ├── metrics-reference.md │ │ ├── monitor-mode.md │ │ ├── oci-registries-support.md │ │ ├── policy-evaluation-timeout.md │ │ ├── policy-server-cli.md │ │ ├── security-hardening │ │ │ ├── _category_.json │ │ │ └── webhooks-hardening.md │ │ ├── sources_yaml.md │ │ ├── spec │ │ │ ├── 01-intro-spec.md │ │ │ ├── 02-settings.md │ │ │ ├── 03-validating-policies.md │ │ │ ├── 04-mutating-policies.md │ │ │ ├── 05-context-aware-policies.md │ │ │ ├── _category_.json │ │ │ └── host-capabilities │ │ │ │ ├── 01-intro-host-capabilities.md │ │ │ │ ├── 02-signature-verifier-policies.md │ │ │ │ ├── 03-container-registry.md │ │ │ │ ├── 04-net.md │ │ │ │ ├── 05-crypto.md │ │ │ │ ├── 06-kubernetes.md │ │ │ │ └── _category_.json │ │ ├── threat-model.md │ │ ├── upgrade-path.md │ │ └── verification-config.md │ ├── tutorials │ │ ├── _category_.json │ │ ├── publish-policy-to-artifact-hub.md │ │ ├── testing-policies │ │ │ ├── 02-policy-authors.md │ │ │ ├── 03-cluster-operators.md │ │ │ ├── _category_.json │ │ │ └── index.md │ │ ├── verifying-kubewarden.md │ │ └── writing-policies │ │ │ ├── CEL │ │ │ ├── 01-intro-cel.md │ │ │ ├── 02-reusing-vap.md │ │ │ ├── 03-context-aware.md │ │ │ ├── 04-example-sigstore.md │ │ │ └── _category_.json │ │ │ ├── _category_.json │ │ │ ├── dotnet.md │ │ │ ├── go │ │ │ ├── 01-intro-go.md │ │ │ ├── 02-scaffold.md │ │ │ ├── 03-policy-settings.md │ │ │ ├── 04-validation.md │ │ │ ├── 05-e2e-tests.md │ │ │ ├── 06-logging.md │ │ │ ├── 07-automate.md │ │ │ ├── 08-distribute.md │ │ │ ├── 09-validation-with-queries.md │ │ │ ├── 10-raw-policies.md │ │ │ └── _category_.json │ │ │ ├── index.md │ │ │ ├── metadata.md │ │ │ ├── other-languages.md │ │ │ ├── rego │ │ │ ├── 01-intro-rego.md │ │ │ ├── 02-builtin-support.md │ │ │ ├── _category_.json │ │ │ ├── gatekeeper │ │ │ │ ├── 01-intro.md │ │ │ │ ├── 02-create-policy.md │ │ │ │ ├── 03-build-and-run.md │ │ │ │ ├── 04-distribute.md │ │ │ │ └── _category_.json │ │ │ └── open-policy-agent │ │ │ │ ├── 01-intro.md │ │ │ │ ├── 02-create-policy.md │ │ │ │ ├── 03-build-and-run.md │ │ │ │ ├── 04-distribute.md │ │ │ │ ├── 05-raw-policies.md │ │ │ │ └── _category_.json │ │ │ ├── rust │ │ │ ├── 01-intro-rust.md │ │ │ ├── 02-create-policy.md │ │ │ ├── 03-define-policy-settings.md │ │ │ ├── 04-write-validation-logic.md │ │ │ ├── 05-mutation-policy.md │ │ │ ├── 06-logging.md │ │ │ ├── 07-build-and-distribute.md │ │ │ ├── 08-raw-policies.md │ │ │ └── _category_.json │ │ │ ├── swift.md │ │ │ ├── typescript.md │ │ │ └── wasi │ │ │ ├── 01-intro-wasi.md │ │ │ ├── 02-raw-policies.md │ │ │ └── _category_.json │ └── use-cases.md ├── version-1.27 │ ├── disclosure.md │ ├── enterprise.md │ ├── explanations │ │ ├── _category_.json │ │ ├── architecture.md │ │ ├── audit-scanner │ │ │ ├── audit-scanner.md │ │ │ ├── limitations.md │ │ │ └── policy-reports.md │ │ ├── certificates.md │ │ ├── comparisons │ │ │ ├── _category_.json │ │ │ └── opa-comparison.md │ │ ├── context-aware-policies.md │ │ ├── distributing-policies.md │ │ ├── mutating-policies.md │ │ └── policy-groups.md │ ├── glossary.md │ ├── howtos │ │ ├── Rancher-Fleet.md │ │ ├── _category_.json │ │ ├── airgap │ │ │ ├── 01-requirements.md │ │ │ ├── 02-install.md │ │ │ └── _category_.json │ │ ├── application-collection │ │ │ ├── 01-verify-images.md │ │ │ └── _category_.json │ │ ├── argocd-installation.md │ │ ├── audit-scanner.md │ │ ├── contribution-guide │ │ │ ├── _category_.json │ │ │ ├── contributing.md │ │ │ ├── contribution-guide.md │ │ │ └── suggesting-an-improvement.md │ │ ├── custom-certificate-authorities.md │ │ ├── deploy-at-scale.md │ │ ├── emergency-disable.md │ │ ├── gatekeeper-migration.md │ │ ├── install-kwctl.md │ │ ├── pod-security-admission-with-kubewarden.md │ │ ├── policies.md │ │ ├── policy-groups.md │ │ ├── policy-servers │ │ │ ├── 01-custom-cas.md │ │ │ ├── 02-private-registry.md │ │ │ ├── 03-production-deployments.md │ │ │ └── _category_.json │ │ ├── production-deployments.md │ │ ├── psp-migration.md │ │ ├── raw-policies.md │ │ ├── security-hardening │ │ │ ├── _category_.json │ │ │ ├── secure-supply-chain.md │ │ │ ├── security-hardening.md │ │ │ └── webhook-mtls.md │ │ ├── tasks.md │ │ ├── telemetry │ │ │ ├── 10-opentelemetry-qs.md │ │ │ ├── 20-tracing-qs.md │ │ │ ├── 30-metrics-qs.md │ │ │ ├── 40-custom-otel-collector.md │ │ │ └── _category_.json │ │ ├── ui-extension │ │ │ ├── 01-install.md │ │ │ ├── 02-metrics.md │ │ │ ├── 03-tracing.md │ │ │ └── _category_.json │ │ ├── vap-migration.md │ │ └── workarounds │ │ │ ├── _category_.json │ │ │ └── policy-server-certificate-expiry.md │ ├── images │ │ ├── architecture.png │ │ ├── architecture_sequence_01.png │ │ ├── architecture_sequence_02.png │ │ ├── architecture_sequence_03.png │ │ ├── architecture_sequence_04.png │ │ ├── architecture_sequence_05.png │ │ ├── grafana_dashboard_1.png │ │ ├── grafana_dashboard_2.png │ │ ├── grafana_dashboard_3.png │ │ ├── grafana_dashboard_4.png │ │ └── tasks-policy-hub.png │ ├── introduction.md │ ├── organization.md │ ├── personas.md │ ├── quick-start.md │ ├── reference │ │ ├── CRDs.md │ │ ├── _category_.json │ │ ├── artifacts.md │ │ ├── dependency-matrix.md │ │ ├── kwctl-cli.md │ │ ├── metrics-reference.md │ │ ├── monitor-mode.md │ │ ├── oci-registries-support.md │ │ ├── policy-evaluation-timeout.md │ │ ├── policy-server-cli.md │ │ ├── security-hardening │ │ │ ├── _category_.json │ │ │ └── webhooks-hardening.md │ │ ├── sources_yaml.md │ │ ├── spec │ │ │ ├── 01-intro-spec.md │ │ │ ├── 02-settings.md │ │ │ ├── 03-validating-policies.md │ │ │ ├── 04-mutating-policies.md │ │ │ ├── 05-context-aware-policies.md │ │ │ ├── _category_.json │ │ │ └── host-capabilities │ │ │ │ ├── 01-intro-host-capabilities.md │ │ │ │ ├── 02-signature-verifier-policies.md │ │ │ │ ├── 03-container-registry.md │ │ │ │ ├── 04-net.md │ │ │ │ ├── 05-crypto.md │ │ │ │ ├── 06-kubernetes.md │ │ │ │ └── _category_.json │ │ ├── threat-model.md │ │ ├── upgrade-path.md │ │ └── verification-config.md │ ├── tutorials │ │ ├── _category_.json │ │ ├── publish-policy-to-artifact-hub.md │ │ ├── testing-policies │ │ │ ├── 02-policy-authors.md │ │ │ ├── 03-cluster-operators.md │ │ │ ├── _category_.json │ │ │ └── index.md │ │ ├── verifying-kubewarden.md │ │ └── writing-policies │ │ │ ├── CEL │ │ │ ├── 01-intro-cel.md │ │ │ ├── 02-reusing-vap.md │ │ │ ├── 03-context-aware.md │ │ │ ├── 04-example-sigstore.md │ │ │ └── _category_.json │ │ │ ├── _category_.json │ │ │ ├── dotnet.md │ │ │ ├── go │ │ │ ├── 01-intro-go.md │ │ │ ├── 02-scaffold.md │ │ │ ├── 03-policy-settings.md │ │ │ ├── 04-validation.md │ │ │ ├── 05-e2e-tests.md │ │ │ ├── 06-logging.md │ │ │ ├── 07-automate.md │ │ │ ├── 08-distribute.md │ │ │ ├── 09-validation-with-queries.md │ │ │ ├── 10-raw-policies.md │ │ │ └── _category_.json │ │ │ ├── index.md │ │ │ ├── metadata.md │ │ │ ├── other-languages.md │ │ │ ├── rego │ │ │ ├── 01-intro-rego.md │ │ │ ├── 02-builtin-support.md │ │ │ ├── _category_.json │ │ │ ├── gatekeeper │ │ │ │ ├── 01-intro.md │ │ │ │ ├── 02-create-policy.md │ │ │ │ ├── 03-build-and-run.md │ │ │ │ ├── 04-distribute.md │ │ │ │ └── _category_.json │ │ │ └── open-policy-agent │ │ │ │ ├── 01-intro.md │ │ │ │ ├── 02-create-policy.md │ │ │ │ ├── 03-build-and-run.md │ │ │ │ ├── 04-distribute.md │ │ │ │ ├── 05-raw-policies.md │ │ │ │ └── _category_.json │ │ │ ├── rust │ │ │ ├── 01-intro-rust.md │ │ │ ├── 02-create-policy.md │ │ │ ├── 03-define-policy-settings.md │ │ │ ├── 04-write-validation-logic.md │ │ │ ├── 05-mutation-policy.md │ │ │ ├── 06-logging.md │ │ │ ├── 07-build-and-distribute.md │ │ │ ├── 08-raw-policies.md │ │ │ └── _category_.json │ │ │ ├── swift.md │ │ │ ├── typescript.md │ │ │ └── wasi │ │ │ ├── 01-intro-wasi.md │ │ │ ├── 02-raw-policies.md │ │ │ └── _category_.json │ └── use-cases.md ├── version-1.28 │ ├── disclosure.md │ ├── enterprise.md │ ├── explanations │ │ ├── _category_.json │ │ ├── architecture.md │ │ ├── audit-scanner │ │ │ ├── audit-scanner.md │ │ │ ├── limitations.md │ │ │ └── policy-reports.md │ │ ├── certificates.md │ │ ├── comparisons │ │ │ ├── _category_.json │ │ │ └── opa-comparison.md │ │ ├── context-aware-policies.md │ │ ├── distributing-policies.md │ │ ├── mutating-policies.md │ │ └── policy-groups.md │ ├── glossary.md │ ├── howtos │ │ ├── Rancher-Fleet.md │ │ ├── _category_.json │ │ ├── airgap │ │ │ ├── 01-requirements.md │ │ │ ├── 02-install.md │ │ │ ├── 03-hauler.md │ │ │ └── _category_.json │ │ ├── application-collection │ │ │ ├── 01-verify-images.md │ │ │ └── _category_.json │ │ ├── argocd-installation.md │ │ ├── audit-scanner.md │ │ ├── contribution-guide │ │ │ ├── _category_.json │ │ │ ├── contributing.md │ │ │ ├── contribution-guide.md │ │ │ └── suggesting-an-improvement.md │ │ ├── custom-certificate-authorities.md │ │ ├── deploy-at-scale.md │ │ ├── emergency-disable.md │ │ ├── gatekeeper-migration.md │ │ ├── install-kwctl.md │ │ ├── pod-security-admission-with-kubewarden.md │ │ ├── policies.md │ │ ├── policy-groups.md │ │ ├── policy-servers │ │ │ ├── 01-custom-cas.md │ │ │ ├── 02-private-registry.md │ │ │ ├── 03-production-deployments.md │ │ │ └── _category_.json │ │ ├── production-deployments.md │ │ ├── psp-migration.md │ │ ├── raw-policies.md │ │ ├── security-hardening │ │ │ ├── _category_.json │ │ │ ├── secure-supply-chain.md │ │ │ ├── security-hardening.md │ │ │ └── webhook-mtls.md │ │ ├── tasks.md │ │ ├── telemetry │ │ │ ├── 10-opentelemetry-qs.md │ │ │ ├── 20-tracing-qs.md │ │ │ ├── 30-metrics-qs.md │ │ │ ├── 40-custom-otel-collector.md │ │ │ └── _category_.json │ │ ├── ui-extension │ │ │ ├── 01-install.md │ │ │ ├── 02-metrics.md │ │ │ ├── 03-tracing.md │ │ │ └── _category_.json │ │ ├── vap-migration.md │ │ └── workarounds │ │ │ ├── _category_.json │ │ │ └── policy-server-certificate-expiry.md │ ├── images │ │ ├── architecture.png │ │ ├── architecture_sequence_01.png │ │ ├── architecture_sequence_02.png │ │ ├── architecture_sequence_03.png │ │ ├── architecture_sequence_04.png │ │ ├── architecture_sequence_05.png │ │ ├── grafana_dashboard_1.png │ │ ├── grafana_dashboard_2.png │ │ ├── grafana_dashboard_3.png │ │ ├── grafana_dashboard_4.png │ │ └── tasks-policy-hub.png │ ├── introduction.md │ ├── organization.md │ ├── personas.md │ ├── quick-start.md │ ├── reference │ │ ├── CRDs.md │ │ ├── _category_.json │ │ ├── artifacts.md │ │ ├── dependency-matrix.md │ │ ├── kwctl-cli.md │ │ ├── metrics-reference.md │ │ ├── monitor-mode.md │ │ ├── oci-registries-support.md │ │ ├── policy-evaluation-timeout.md │ │ ├── policy-server-cli.md │ │ ├── security-hardening │ │ │ ├── _category_.json │ │ │ └── webhooks-hardening.md │ │ ├── sources_yaml.md │ │ ├── spec │ │ │ ├── 01-intro-spec.md │ │ │ ├── 02-settings.md │ │ │ ├── 03-validating-policies.md │ │ │ ├── 04-mutating-policies.md │ │ │ ├── 05-context-aware-policies.md │ │ │ ├── _category_.json │ │ │ └── host-capabilities │ │ │ │ ├── 01-intro-host-capabilities.md │ │ │ │ ├── 02-signature-verifier-policies.md │ │ │ │ ├── 03-container-registry.md │ │ │ │ ├── 04-net.md │ │ │ │ ├── 05-crypto.md │ │ │ │ ├── 06-kubernetes.md │ │ │ │ └── _category_.json │ │ ├── threat-model.md │ │ ├── upgrade-path.md │ │ └── verification-config.md │ ├── tutorials │ │ ├── _category_.json │ │ ├── publish-policy-to-artifact-hub.md │ │ ├── testing-policies │ │ │ ├── 02-policy-authors.md │ │ │ ├── 03-cluster-operators.md │ │ │ ├── _category_.json │ │ │ └── index.md │ │ ├── verifying-kubewarden.md │ │ └── writing-policies │ │ │ ├── CEL │ │ │ ├── 01-intro-cel.md │ │ │ ├── 02-reusing-vap.md │ │ │ ├── 03-context-aware.md │ │ │ ├── 04-example-sigstore.md │ │ │ └── _category_.json │ │ │ ├── _category_.json │ │ │ ├── dotnet.md │ │ │ ├── go │ │ │ ├── 01-intro-go.md │ │ │ ├── 02-scaffold.md │ │ │ ├── 03-policy-settings.md │ │ │ ├── 04-validation.md │ │ │ ├── 05-e2e-tests.md │ │ │ ├── 06-logging.md │ │ │ ├── 07-automate.md │ │ │ ├── 08-distribute.md │ │ │ ├── 09-validation-with-queries.md │ │ │ ├── 10-raw-policies.md │ │ │ └── _category_.json │ │ │ ├── index.md │ │ │ ├── metadata.md │ │ │ ├── other-languages.md │ │ │ ├── rego │ │ │ ├── 01-intro-rego.md │ │ │ ├── 02-builtin-support.md │ │ │ ├── _category_.json │ │ │ ├── gatekeeper │ │ │ │ ├── 01-intro.md │ │ │ │ ├── 02-create-policy.md │ │ │ │ ├── 03-build-and-run.md │ │ │ │ ├── 04-distribute.md │ │ │ │ └── _category_.json │ │ │ └── open-policy-agent │ │ │ │ ├── 01-intro.md │ │ │ │ ├── 02-create-policy.md │ │ │ │ ├── 03-build-and-run.md │ │ │ │ ├── 04-distribute.md │ │ │ │ ├── 05-raw-policies.md │ │ │ │ └── _category_.json │ │ │ ├── rust │ │ │ ├── 01-intro-rust.md │ │ │ ├── 02-create-policy.md │ │ │ ├── 03-define-policy-settings.md │ │ │ ├── 04-write-validation-logic.md │ │ │ ├── 05-mutation-policy.md │ │ │ ├── 06-logging.md │ │ │ ├── 07-build-and-distribute.md │ │ │ ├── 08-raw-policies.md │ │ │ └── _category_.json │ │ │ ├── swift.md │ │ │ ├── typescript.md │ │ │ └── wasi │ │ │ ├── 01-intro-wasi.md │ │ │ ├── 02-raw-policies.md │ │ │ └── _category_.json │ └── use-cases.md ├── version-1.29 │ ├── disclosure.md │ ├── enterprise.md │ ├── explanations │ │ ├── _category_.json │ │ ├── architecture.md │ │ ├── audit-scanner │ │ │ ├── audit-scanner.md │ │ │ ├── limitations.md │ │ │ └── policy-reports.md │ │ ├── certificates.md │ │ ├── comparisons │ │ │ ├── _category_.json │ │ │ └── opa-comparison.md │ │ ├── context-aware-policies.md │ │ ├── distributing-policies.md │ │ ├── mutating-policies.md │ │ └── policy-groups.md │ ├── glossary.md │ ├── howtos │ │ ├── Rancher-Fleet.md │ │ ├── _category_.json │ │ ├── airgap │ │ │ ├── 01-requirements.md │ │ │ ├── 02-install.md │ │ │ ├── 03-hauler.md │ │ │ └── _category_.json │ │ ├── application-collection │ │ │ ├── 01-verify-images.md │ │ │ └── _category_.json │ │ ├── argocd-installation.md │ │ ├── audit-scanner.md │ │ ├── contribution-guide │ │ │ ├── _category_.json │ │ │ ├── contributing.md │ │ │ ├── contribution-guide.md │ │ │ └── suggesting-an-improvement.md │ │ ├── custom-certificate-authorities.md │ │ ├── deploy-at-scale.md │ │ ├── emergency-disable.md │ │ ├── gatekeeper-migration.md │ │ ├── install-kwctl.md │ │ ├── pod-security-admission-with-kubewarden.md │ │ ├── policies.md │ │ ├── policy-groups.md │ │ ├── policy-servers │ │ │ ├── 01-custom-cas.md │ │ │ ├── 02-private-registry.md │ │ │ ├── 03-production-deployments.md │ │ │ └── _category_.json │ │ ├── production-deployments.md │ │ ├── psp-migration.md │ │ ├── raw-policies.md │ │ ├── security-hardening │ │ │ ├── _category_.json │ │ │ ├── secure-supply-chain.md │ │ │ ├── security-hardening.md │ │ │ └── webhook-mtls.md │ │ ├── tasks.md │ │ ├── telemetry │ │ │ ├── 10-opentelemetry-qs.md │ │ │ ├── 20-tracing-qs.md │ │ │ ├── 30-metrics-qs.md │ │ │ ├── 40-custom-otel-collector.md │ │ │ └── _category_.json │ │ ├── ui-extension │ │ │ ├── 01-install.md │ │ │ ├── 02-metrics.md │ │ │ ├── 03-tracing.md │ │ │ └── _category_.json │ │ ├── vap-migration.md │ │ └── workarounds │ │ │ ├── _category_.json │ │ │ └── policy-server-certificate-expiry.md │ ├── images │ │ ├── architecture.png │ │ ├── architecture_sequence_01.png │ │ ├── architecture_sequence_02.png │ │ ├── architecture_sequence_03.png │ │ ├── architecture_sequence_04.png │ │ ├── architecture_sequence_05.png │ │ ├── grafana_dashboard_1.png │ │ ├── grafana_dashboard_2.png │ │ ├── grafana_dashboard_3.png │ │ ├── grafana_dashboard_4.png │ │ └── tasks-policy-hub.png │ ├── introduction.md │ ├── organization.md │ ├── personas.md │ ├── quick-start.md │ ├── reference │ │ ├── CRDs.md │ │ ├── _category_.json │ │ ├── artifacts.md │ │ ├── dependency-matrix.md │ │ ├── kwctl-cli.md │ │ ├── metrics-reference.md │ │ ├── monitor-mode.md │ │ ├── oci-registries-support.md │ │ ├── policy-evaluation-timeout.md │ │ ├── policy-server-cli.md │ │ ├── security-hardening │ │ │ ├── _category_.json │ │ │ └── webhooks-hardening.md │ │ ├── sources_yaml.md │ │ ├── spec │ │ │ ├── 01-intro-spec.md │ │ │ ├── 02-settings.md │ │ │ ├── 03-validating-policies.md │ │ │ ├── 04-mutating-policies.md │ │ │ ├── 05-context-aware-policies.md │ │ │ ├── _category_.json │ │ │ └── host-capabilities │ │ │ │ ├── 01-intro-host-capabilities.md │ │ │ │ ├── 02-signature-verifier-policies.md │ │ │ │ ├── 03-container-registry.md │ │ │ │ ├── 04-net.md │ │ │ │ ├── 05-crypto.md │ │ │ │ ├── 06-kubernetes.md │ │ │ │ └── _category_.json │ │ ├── threat-model.md │ │ ├── upgrade-path.md │ │ └── verification-config.md │ ├── tutorials │ │ ├── _category_.json │ │ ├── publish-policy-to-artifact-hub.md │ │ ├── testing-policies │ │ │ ├── 02-policy-authors.md │ │ │ ├── 03-cluster-operators.md │ │ │ ├── _category_.json │ │ │ └── index.md │ │ ├── verifying-kubewarden.md │ │ └── writing-policies │ │ │ ├── CEL │ │ │ ├── 01-intro-cel.md │ │ │ ├── 02-reusing-vap.md │ │ │ ├── 03-context-aware.md │ │ │ ├── 04-example-sigstore.md │ │ │ └── _category_.json │ │ │ ├── _category_.json │ │ │ ├── dotnet.md │ │ │ ├── go │ │ │ ├── 01-intro-go.md │ │ │ ├── 02-scaffold.md │ │ │ ├── 03-policy-settings.md │ │ │ ├── 04-validation.md │ │ │ ├── 05-e2e-tests.md │ │ │ ├── 06-logging.md │ │ │ ├── 07-automate.md │ │ │ ├── 08-distribute.md │ │ │ ├── 09-validation-with-queries.md │ │ │ ├── 10-raw-policies.md │ │ │ └── _category_.json │ │ │ ├── index.md │ │ │ ├── metadata.md │ │ │ ├── other-languages.md │ │ │ ├── rego │ │ │ ├── 01-intro-rego.md │ │ │ ├── 02-builtin-support.md │ │ │ ├── _category_.json │ │ │ ├── gatekeeper │ │ │ │ ├── 01-intro.md │ │ │ │ ├── 02-create-policy.md │ │ │ │ ├── 03-build-and-run.md │ │ │ │ ├── 04-distribute.md │ │ │ │ └── _category_.json │ │ │ └── open-policy-agent │ │ │ │ ├── 01-intro.md │ │ │ │ ├── 02-create-policy.md │ │ │ │ ├── 03-build-and-run.md │ │ │ │ ├── 04-distribute.md │ │ │ │ ├── 05-raw-policies.md │ │ │ │ └── _category_.json │ │ │ ├── rust │ │ │ ├── 01-intro-rust.md │ │ │ ├── 02-create-policy.md │ │ │ ├── 03-define-policy-settings.md │ │ │ ├── 04-write-validation-logic.md │ │ │ ├── 05-mutation-policy.md │ │ │ ├── 06-logging.md │ │ │ ├── 07-build-and-distribute.md │ │ │ ├── 08-raw-policies.md │ │ │ └── _category_.json │ │ │ ├── swift.md │ │ │ ├── typescript.md │ │ │ └── wasi │ │ │ ├── 01-intro-wasi.md │ │ │ ├── 02-raw-policies.md │ │ │ └── _category_.json │ └── use-cases.md ├── version-1.30 │ ├── disclosure.md │ ├── enterprise.md │ ├── explanations │ │ ├── _category_.json │ │ ├── architecture.md │ │ ├── audit-scanner │ │ │ ├── audit-scanner.md │ │ │ ├── limitations.md │ │ │ └── policy-reports.md │ │ ├── certificates.md │ │ ├── comparisons │ │ │ ├── _category_.json │ │ │ └── opa-comparison.md │ │ ├── context-aware-policies.md │ │ ├── distributing-policies.md │ │ ├── mutating-policies.md │ │ └── policy-groups.md │ ├── glossary.md │ ├── howtos │ │ ├── Rancher-Fleet.md │ │ ├── _category_.json │ │ ├── airgap │ │ │ ├── 01-requirements.md │ │ │ ├── 02-install.md │ │ │ ├── 03-hauler.md │ │ │ └── _category_.json │ │ ├── application-collection │ │ │ ├── 01-verify-images.md │ │ │ └── _category_.json │ │ ├── argocd-installation.md │ │ ├── audit-scanner.md │ │ ├── contribution-guide │ │ │ ├── _category_.json │ │ │ ├── contributing.md │ │ │ ├── contribution-guide.md │ │ │ └── suggesting-an-improvement.md │ │ ├── custom-certificate-authorities.md │ │ ├── deploy-at-scale.md │ │ ├── emergency-disable.md │ │ ├── gatekeeper-migration.md │ │ ├── install-kwctl.md │ │ ├── pod-security-admission-with-kubewarden.md │ │ ├── policies.md │ │ ├── policy-groups.md │ │ ├── policy-servers │ │ │ ├── 01-custom-cas.md │ │ │ ├── 02-private-registry.md │ │ │ ├── 03-production-deployments.md │ │ │ └── _category_.json │ │ ├── production-deployments.md │ │ ├── psp-migration.md │ │ ├── raw-policies.md │ │ ├── security-hardening │ │ │ ├── _category_.json │ │ │ ├── secure-supply-chain.md │ │ │ ├── security-hardening.md │ │ │ └── webhook-mtls.md │ │ ├── tasks.md │ │ ├── telemetry │ │ │ ├── 10-opentelemetry-qs.md │ │ │ ├── 20-tracing-qs.md │ │ │ ├── 30-metrics-qs.md │ │ │ ├── 40-custom-otel-collector.md │ │ │ └── _category_.json │ │ ├── ui-extension │ │ │ ├── 01-install.md │ │ │ ├── 02-metrics.md │ │ │ ├── 03-tracing.md │ │ │ └── _category_.json │ │ ├── vap-migration.md │ │ └── workarounds │ │ │ ├── _category_.json │ │ │ └── policy-server-certificate-expiry.md │ ├── images │ │ ├── architecture.png │ │ ├── architecture_sequence_01.png │ │ ├── architecture_sequence_02.png │ │ ├── architecture_sequence_03.png │ │ ├── architecture_sequence_04.png │ │ ├── architecture_sequence_05.png │ │ ├── grafana_dashboard_1.png │ │ ├── grafana_dashboard_2.png │ │ ├── grafana_dashboard_3.png │ │ ├── grafana_dashboard_4.png │ │ └── tasks-policy-hub.png │ ├── introduction.md │ ├── organization.md │ ├── personas.md │ ├── quick-start.md │ ├── reference │ │ ├── CRDs.md │ │ ├── _category_.json │ │ ├── artifacts.md │ │ ├── dependency-matrix.md │ │ ├── kwctl-cli.md │ │ ├── metrics-reference.md │ │ ├── monitor-mode.md │ │ ├── oci-registries-support.md │ │ ├── policy-evaluation-timeout.md │ │ ├── policy-server-cli.md │ │ ├── security-hardening │ │ │ ├── _category_.json │ │ │ └── webhooks-hardening.md │ │ ├── sources_yaml.md │ │ ├── spec │ │ │ ├── 01-intro-spec.md │ │ │ ├── 02-settings.md │ │ │ ├── 03-validating-policies.md │ │ │ ├── 04-mutating-policies.md │ │ │ ├── 05-context-aware-policies.md │ │ │ ├── _category_.json │ │ │ └── host-capabilities │ │ │ │ ├── 01-intro-host-capabilities.md │ │ │ │ ├── 02-signature-verifier-policies.md │ │ │ │ ├── 03-container-registry.md │ │ │ │ ├── 04-net.md │ │ │ │ ├── 05-crypto.md │ │ │ │ ├── 06-kubernetes.md │ │ │ │ └── _category_.json │ │ ├── threat-model.md │ │ ├── upgrade-path.md │ │ └── verification-config.md │ ├── tutorials │ │ ├── _category_.json │ │ ├── publish-policy-to-artifact-hub.md │ │ ├── testing-policies │ │ │ ├── 02-policy-authors.md │ │ │ ├── 03-cluster-operators.md │ │ │ ├── _category_.json │ │ │ └── index.md │ │ ├── verifying-kubewarden.md │ │ └── writing-policies │ │ │ ├── CEL │ │ │ ├── 01-intro-cel.md │ │ │ ├── 02-reusing-vap.md │ │ │ ├── 03-context-aware.md │ │ │ ├── 04-example-sigstore.md │ │ │ └── _category_.json │ │ │ ├── _category_.json │ │ │ ├── dotnet.md │ │ │ ├── go │ │ │ ├── 01-intro-go.md │ │ │ ├── 02-scaffold.md │ │ │ ├── 03-policy-settings.md │ │ │ ├── 04-validation.md │ │ │ ├── 05-e2e-tests.md │ │ │ ├── 06-logging.md │ │ │ ├── 07-automate.md │ │ │ ├── 08-distribute.md │ │ │ ├── 09-validation-with-queries.md │ │ │ ├── 10-raw-policies.md │ │ │ └── _category_.json │ │ │ ├── index.md │ │ │ ├── metadata.md │ │ │ ├── other-languages.md │ │ │ ├── rego │ │ │ ├── 01-intro-rego.md │ │ │ ├── 02-builtin-support.md │ │ │ ├── _category_.json │ │ │ ├── gatekeeper │ │ │ │ ├── 01-intro.md │ │ │ │ ├── 02-create-policy.md │ │ │ │ ├── 03-build-and-run.md │ │ │ │ ├── 04-distribute.md │ │ │ │ └── _category_.json │ │ │ └── open-policy-agent │ │ │ │ ├── 01-intro.md │ │ │ │ ├── 02-create-policy.md │ │ │ │ ├── 03-build-and-run.md │ │ │ │ ├── 04-distribute.md │ │ │ │ ├── 05-raw-policies.md │ │ │ │ └── _category_.json │ │ │ ├── rust │ │ │ ├── 01-intro-rust.md │ │ │ ├── 02-create-policy.md │ │ │ ├── 03-define-policy-settings.md │ │ │ ├── 04-write-validation-logic.md │ │ │ ├── 05-mutation-policy.md │ │ │ ├── 06-logging.md │ │ │ ├── 07-build-and-distribute.md │ │ │ ├── 08-raw-policies.md │ │ │ └── _category_.json │ │ │ ├── swift.md │ │ │ ├── typescript │ │ │ ├── 01-intro-typescript.md │ │ │ ├── 02-scaffold.md │ │ │ ├── 03-policy-settings.md │ │ │ ├── 04-validation.md │ │ │ ├── 05-e2e-tests.md │ │ │ └── _category_.json │ │ │ └── wasi │ │ │ ├── 01-intro-wasi.md │ │ │ ├── 02-raw-policies.md │ │ │ └── _category_.json │ └── use-cases.md ├── version-1.31 │ ├── disclosure.md │ ├── enterprise.md │ ├── explanations │ │ ├── _category_.json │ │ ├── architecture.md │ │ ├── audit-scanner │ │ │ ├── audit-scanner.md │ │ │ ├── limitations.md │ │ │ └── policy-reports.md │ │ ├── certificates.md │ │ ├── comparisons │ │ │ ├── _category_.json │ │ │ └── opa-comparison.md │ │ ├── context-aware-policies.md │ │ ├── distributing-policies.md │ │ ├── mutating-policies.md │ │ └── policy-groups.md │ ├── glossary.md │ ├── howtos │ │ ├── Rancher-Fleet.md │ │ ├── _category_.json │ │ ├── airgap │ │ │ ├── 01-requirements.md │ │ │ ├── 02-install.md │ │ │ ├── 03-hauler.md │ │ │ └── _category_.json │ │ ├── application-collection │ │ │ ├── 01-verify-images.md │ │ │ └── _category_.json │ │ ├── argocd-installation.md │ │ ├── audit-scanner.md │ │ ├── contribution-guide │ │ │ ├── _category_.json │ │ │ ├── contributing.md │ │ │ ├── contribution-guide.md │ │ │ └── suggesting-an-improvement.md │ │ ├── custom-certificate-authorities.md │ │ ├── deploy-at-scale.md │ │ ├── emergency-disable.md │ │ ├── gatekeeper-migration.md │ │ ├── install-kwctl.md │ │ ├── pod-security-admission-with-kubewarden.md │ │ ├── policies.md │ │ ├── policy-groups.md │ │ ├── policy-servers │ │ │ ├── 01-custom-cas.md │ │ │ ├── 02-private-registry.md │ │ │ ├── 03-production-deployments.md │ │ │ └── _category_.json │ │ ├── production-deployments.md │ │ ├── psp-migration.md │ │ ├── rancher-backup-operator.md │ │ ├── raw-policies.md │ │ ├── security-hardening │ │ │ ├── _category_.json │ │ │ ├── secure-supply-chain.md │ │ │ ├── security-hardening.md │ │ │ └── webhook-mtls.md │ │ ├── tasks.md │ │ ├── telemetry │ │ │ ├── 10-opentelemetry-qs.md │ │ │ ├── 20-tracing-qs.md │ │ │ ├── 30-metrics-qs.md │ │ │ ├── 40-custom-otel-collector.md │ │ │ └── _category_.json │ │ ├── ui-extension │ │ │ ├── 01-install.md │ │ │ ├── 02-metrics.md │ │ │ ├── 03-tracing.md │ │ │ └── _category_.json │ │ ├── vap-migration.md │ │ └── workarounds │ │ │ ├── _category_.json │ │ │ └── policy-server-certificate-expiry.md │ ├── images │ │ ├── architecture.png │ │ ├── architecture_sequence_01.png │ │ ├── architecture_sequence_02.png │ │ ├── architecture_sequence_03.png │ │ ├── architecture_sequence_04.png │ │ ├── architecture_sequence_05.png │ │ ├── grafana_dashboard_1.png │ │ ├── grafana_dashboard_2.png │ │ ├── grafana_dashboard_3.png │ │ ├── grafana_dashboard_4.png │ │ └── tasks-policy-hub.png │ ├── introduction.md │ ├── organization.md │ ├── personas.md │ ├── quick-start.md │ ├── reference │ │ ├── CRDs.md │ │ ├── _category_.json │ │ ├── artifacts.md │ │ ├── dependency-matrix.md │ │ ├── kwctl-cli.md │ │ ├── metrics-reference.md │ │ ├── monitor-mode.md │ │ ├── oci-registries-support.md │ │ ├── policy-evaluation-timeout.md │ │ ├── policy-server-cli.md │ │ ├── security-hardening │ │ │ ├── _category_.json │ │ │ └── webhooks-hardening.md │ │ ├── sources_yaml.md │ │ ├── spec │ │ │ ├── 01-intro-spec.md │ │ │ ├── 02-settings.md │ │ │ ├── 03-validating-policies.md │ │ │ ├── 04-mutating-policies.md │ │ │ ├── 05-context-aware-policies.md │ │ │ ├── _category_.json │ │ │ └── host-capabilities │ │ │ │ ├── 01-intro-host-capabilities.md │ │ │ │ ├── 02-signature-verifier-policies.md │ │ │ │ ├── 03-container-registry.md │ │ │ │ ├── 04-net.md │ │ │ │ ├── 05-crypto.md │ │ │ │ ├── 06-kubernetes.md │ │ │ │ └── _category_.json │ │ ├── threat-model.md │ │ ├── upgrade-path.md │ │ └── verification-config.md │ ├── tutorials │ │ ├── _category_.json │ │ ├── publish-policy-to-artifact-hub.md │ │ ├── testing-policies │ │ │ ├── 02-policy-authors.md │ │ │ ├── 03-cluster-operators.md │ │ │ ├── _category_.json │ │ │ └── index.md │ │ ├── validate-charts-with-kwctl.md │ │ ├── verifying-kubewarden.md │ │ └── writing-policies │ │ │ ├── CEL │ │ │ ├── 01-intro-cel.md │ │ │ ├── 02-reusing-vap.md │ │ │ ├── 03-context-aware.md │ │ │ ├── 04-example-sigstore.md │ │ │ └── _category_.json │ │ │ ├── _category_.json │ │ │ ├── dotnet.md │ │ │ ├── go │ │ │ ├── 01-intro-go.md │ │ │ ├── 02-scaffold.md │ │ │ ├── 03-policy-settings.md │ │ │ ├── 04-validation.md │ │ │ ├── 05-e2e-tests.md │ │ │ ├── 06-logging.md │ │ │ ├── 07-automate.md │ │ │ ├── 08-distribute.md │ │ │ ├── 09-validation-with-queries.md │ │ │ ├── 10-raw-policies.md │ │ │ └── _category_.json │ │ │ ├── index.md │ │ │ ├── metadata.md │ │ │ ├── other-languages.md │ │ │ ├── rego │ │ │ ├── 01-intro-rego.md │ │ │ ├── 02-builtin-support.md │ │ │ ├── _category_.json │ │ │ ├── gatekeeper │ │ │ │ ├── 01-intro.md │ │ │ │ ├── 02-create-policy.md │ │ │ │ ├── 03-build-and-run.md │ │ │ │ ├── 04-distribute.md │ │ │ │ └── _category_.json │ │ │ └── open-policy-agent │ │ │ │ ├── 01-intro.md │ │ │ │ ├── 02-create-policy.md │ │ │ │ ├── 03-build-and-run.md │ │ │ │ ├── 04-distribute.md │ │ │ │ ├── 05-raw-policies.md │ │ │ │ └── _category_.json │ │ │ ├── rust │ │ │ ├── 01-intro-rust.md │ │ │ ├── 02-create-policy.md │ │ │ ├── 03-define-policy-settings.md │ │ │ ├── 04-write-validation-logic.md │ │ │ ├── 05-mutation-policy.md │ │ │ ├── 06-logging.md │ │ │ ├── 07-build-and-distribute.md │ │ │ ├── 08-raw-policies.md │ │ │ └── _category_.json │ │ │ ├── swift.md │ │ │ ├── typescript │ │ │ ├── 01-intro-typescript.md │ │ │ ├── 02-scaffold.md │ │ │ ├── 03-policy-settings.md │ │ │ ├── 04-validation.md │ │ │ ├── 05-e2e-tests.md │ │ │ └── _category_.json │ │ │ └── wasi │ │ │ ├── 01-intro-wasi.md │ │ │ ├── 02-raw-policies.md │ │ │ └── _category_.json │ └── use-cases.md ├── version-1.7 │ ├── architecture.md │ ├── contribution-guide │ │ ├── contributing.md │ │ └── suggesting-an-improvement.md │ ├── distributing-policies.md │ ├── distributing-policies │ │ ├── custom-certificate-authorities.md │ │ ├── oci-registries-support.md │ │ ├── publish-policy-to-artifact-hub.md │ │ └── secure-supply-chain.md │ ├── explanations │ │ ├── audit-scanner │ │ │ ├── audit-scanner.md │ │ │ ├── limitations.md │ │ │ └── policy-reports.md │ │ ├── context-aware-policies.md │ │ └── opa-comparison.md │ ├── howtos │ │ └── audit-scanner.md │ ├── images │ │ ├── architecture.png │ │ ├── architecture_sequence_01.png │ │ ├── architecture_sequence_02.png │ │ ├── architecture_sequence_03.png │ │ ├── architecture_sequence_04.png │ │ ├── architecture_sequence_05.png │ │ ├── grafana_dashboard_1.png │ │ ├── grafana_dashboard_2.png │ │ ├── grafana_dashboard_3.png │ │ ├── grafana_dashboard_4.png │ │ └── tasks-policy-hub.png │ ├── introduction.md │ ├── operator-manual │ │ ├── 01-intro.md │ │ ├── CRDs.md │ │ ├── Rancher-Fleet.md │ │ ├── airgap │ │ │ ├── 01-requirements.md │ │ │ └── 02-install.md │ │ ├── monitor-mode.md │ │ ├── policy-evaluation-timeout.md │ │ ├── policy-servers │ │ │ ├── 01-custom-cas.md │ │ │ └── 02-private-registry.md │ │ ├── telemetry │ │ │ ├── metrics │ │ │ │ ├── 01-quickstart.md │ │ │ │ └── 02-reference.md │ │ │ ├── opentelemetry │ │ │ │ └── 01-quickstart.md │ │ │ └── tracing │ │ │ │ └── 01-quickstart.md │ │ ├── ui-extension │ │ │ ├── install.md │ │ │ ├── metrics.md │ │ │ └── tracing.md │ │ └── verification-config.md │ ├── quick-start.md │ ├── security │ │ ├── 01-intro.md │ │ ├── disclosure.md │ │ ├── threat-model.md │ │ └── verifying-kubewarden.md │ ├── tasks.md │ ├── tasksDir │ │ ├── mutating-policies.md │ │ ├── pod-security-admission-with-kubewarden.md │ │ └── psp-migration.md │ ├── testing-policies │ │ ├── 01-intro.md │ │ ├── 02-policy-authors.md │ │ └── 03-cluster-operators.md │ └── writing-policies │ │ ├── dotnet.md │ │ ├── dsl.md │ │ ├── go │ │ ├── 01-intro-go.md │ │ ├── 02-scaffold.md │ │ ├── 03-policy-settings.md │ │ ├── 04-validation.md │ │ ├── 05-e2e-tests.md │ │ ├── 06-logging.md │ │ ├── 07-automate.md │ │ ├── 08-distribute.md │ │ └── 09-validation-with-queries.md │ │ ├── index.md │ │ ├── javascript.md │ │ ├── metadata.md │ │ ├── other-languages.md │ │ ├── rego │ │ ├── 01-intro-rego.md │ │ ├── 02-builtin-support.md │ │ ├── gatekeeper │ │ │ ├── 01-intro.md │ │ │ ├── 02-create-policy.md │ │ │ ├── 03-build-and-run.md │ │ │ └── 04-distribute.md │ │ └── open-policy-agent │ │ │ ├── 01-intro.md │ │ │ ├── 02-create-policy.md │ │ │ ├── 03-build-and-run.md │ │ │ └── 04-distribute.md │ │ ├── rust │ │ ├── 01-intro-rust.md │ │ ├── 02-create-policy.md │ │ ├── 03-define-policy-settings.md │ │ ├── 04-write-validation-logic.md │ │ ├── 05-mutation-policy.md │ │ ├── 06-logging.md │ │ └── 07-build-and-distribute.md │ │ ├── spec │ │ ├── 01-intro-spec.md │ │ ├── 02-settings.md │ │ ├── 03-validating-policies.md │ │ ├── 04-mutating-policies.md │ │ ├── 05-context-aware-policies.mdx │ │ └── host-capabilities │ │ │ ├── 01-intro-host-capabilities.md │ │ │ ├── 02-signature-verifier-policies.md │ │ │ ├── 03-container-registry.md │ │ │ ├── 04-net.md │ │ │ ├── 05-crypto.md │ │ │ └── 06-kubernetes.md │ │ ├── swift.md │ │ ├── typescript.md │ │ └── wasi.md ├── version-1.8 │ ├── architecture.md │ ├── contribution-guide │ │ ├── contributing.md │ │ └── suggesting-an-improvement.md │ ├── distributing-policies.md │ ├── distributing-policies │ │ ├── custom-certificate-authorities.md │ │ ├── oci-registries-support.md │ │ ├── publish-policy-to-artifact-hub.md │ │ └── secure-supply-chain.md │ ├── explanations │ │ ├── audit-scanner │ │ │ ├── audit-scanner.md │ │ │ ├── limitations.md │ │ │ └── policy-reports.md │ │ ├── context-aware-policies.md │ │ └── opa-comparison.md │ ├── howtos │ │ └── audit-scanner.md │ ├── images │ │ ├── architecture.png │ │ ├── architecture_sequence_01.png │ │ ├── architecture_sequence_02.png │ │ ├── architecture_sequence_03.png │ │ ├── architecture_sequence_04.png │ │ ├── architecture_sequence_05.png │ │ ├── grafana_dashboard_1.png │ │ ├── grafana_dashboard_2.png │ │ ├── grafana_dashboard_3.png │ │ ├── grafana_dashboard_4.png │ │ └── tasks-policy-hub.png │ ├── introduction.md │ ├── operator-manual │ │ ├── 01-intro.md │ │ ├── CRDs.md │ │ ├── Rancher-Fleet.md │ │ ├── airgap │ │ │ ├── 01-requirements.md │ │ │ └── 02-install.md │ │ ├── monitor-mode.md │ │ ├── policy-evaluation-timeout.md │ │ ├── policy-servers │ │ │ ├── 01-custom-cas.md │ │ │ └── 02-private-registry.md │ │ ├── telemetry │ │ │ ├── metrics │ │ │ │ ├── 01-quickstart.md │ │ │ │ └── 02-reference.md │ │ │ ├── opentelemetry │ │ │ │ └── 01-quickstart.md │ │ │ └── tracing │ │ │ │ └── 01-quickstart.md │ │ ├── ui-extension │ │ │ ├── install.md │ │ │ ├── metrics.md │ │ │ └── tracing.md │ │ └── verification-config.md │ ├── quick-start.md │ ├── security │ │ ├── 01-intro.md │ │ ├── disclosure.md │ │ ├── threat-model.md │ │ └── verifying-kubewarden.md │ ├── tasks.md │ ├── tasksDir │ │ ├── mutating-policies.md │ │ ├── pod-security-admission-with-kubewarden.md │ │ └── psp-migration.md │ ├── testing-policies │ │ ├── 01-intro.md │ │ ├── 02-policy-authors.md │ │ └── 03-cluster-operators.md │ └── writing-policies │ │ ├── dotnet.md │ │ ├── dsl.md │ │ ├── go │ │ ├── 01-intro-go.md │ │ ├── 02-scaffold.md │ │ ├── 03-policy-settings.md │ │ ├── 04-validation.md │ │ ├── 05-e2e-tests.md │ │ ├── 06-logging.md │ │ ├── 07-automate.md │ │ ├── 08-distribute.md │ │ └── 09-validation-with-queries.md │ │ ├── index.md │ │ ├── javascript.md │ │ ├── metadata.md │ │ ├── other-languages.md │ │ ├── rego │ │ ├── 01-intro-rego.md │ │ ├── 02-builtin-support.md │ │ ├── gatekeeper │ │ │ ├── 01-intro.md │ │ │ ├── 02-create-policy.md │ │ │ ├── 03-build-and-run.md │ │ │ └── 04-distribute.md │ │ └── open-policy-agent │ │ │ ├── 01-intro.md │ │ │ ├── 02-create-policy.md │ │ │ ├── 03-build-and-run.md │ │ │ └── 04-distribute.md │ │ ├── rust │ │ ├── 01-intro-rust.md │ │ ├── 02-create-policy.md │ │ ├── 03-define-policy-settings.md │ │ ├── 04-write-validation-logic.md │ │ ├── 05-mutation-policy.md │ │ ├── 06-logging.md │ │ └── 07-build-and-distribute.md │ │ ├── spec │ │ ├── 01-intro-spec.md │ │ ├── 02-settings.md │ │ ├── 03-validating-policies.md │ │ ├── 04-mutating-policies.md │ │ ├── 05-context-aware-policies.mdx │ │ └── host-capabilities │ │ │ ├── 01-intro-host-capabilities.md │ │ │ ├── 02-signature-verifier-policies.md │ │ │ ├── 03-container-registry.md │ │ │ ├── 04-net.md │ │ │ ├── 05-crypto.md │ │ │ └── 06-kubernetes.md │ │ ├── swift.md │ │ ├── typescript.md │ │ └── wasi.md └── version-1.9 │ ├── architecture.md │ ├── contribution-guide │ ├── contributing.md │ └── suggesting-an-improvement.md │ ├── distributing-policies.md │ ├── distributing-policies │ ├── custom-certificate-authorities.md │ ├── oci-registries-support.md │ ├── publish-policy-to-artifact-hub.md │ └── secure-supply-chain.md │ ├── explanations │ ├── audit-scanner │ │ ├── audit-scanner.md │ │ ├── limitations.md │ │ └── policy-reports.md │ ├── context-aware-policies.md │ └── opa-comparison.md │ ├── howtos │ ├── audit-scanner.md │ └── raw-policies.md │ ├── images │ ├── architecture.png │ ├── architecture_sequence_01.png │ ├── architecture_sequence_02.png │ ├── architecture_sequence_03.png │ ├── architecture_sequence_04.png │ ├── architecture_sequence_05.png │ ├── grafana_dashboard_1.png │ ├── grafana_dashboard_2.png │ ├── grafana_dashboard_3.png │ ├── grafana_dashboard_4.png │ └── tasks-policy-hub.png │ ├── introduction.md │ ├── operator-manual │ ├── 01-intro.md │ ├── CRDs.md │ ├── Rancher-Fleet.md │ ├── airgap │ │ ├── 01-requirements.md │ │ └── 02-install.md │ ├── monitor-mode.md │ ├── policy-evaluation-timeout.md │ ├── policy-servers │ │ ├── 01-custom-cas.md │ │ └── 02-private-registry.md │ ├── telemetry │ │ ├── metrics │ │ │ ├── 01-quickstart.md │ │ │ └── 02-reference.md │ │ ├── opentelemetry │ │ │ └── 01-quickstart.md │ │ └── tracing │ │ │ └── 01-quickstart.md │ ├── ui-extension │ │ ├── install.md │ │ ├── metrics.md │ │ └── tracing.md │ └── verification-config.md │ ├── quick-start.md │ ├── security │ ├── 01-intro.md │ ├── disclosure.md │ ├── threat-model.md │ └── verifying-kubewarden.md │ ├── tasks.md │ ├── tasksDir │ ├── mutating-policies.md │ ├── pod-security-admission-with-kubewarden.md │ └── psp-migration.md │ ├── testing-policies │ ├── 01-intro.md │ ├── 02-policy-authors.md │ └── 03-cluster-operators.md │ └── writing-policies │ ├── dotnet.md │ ├── dsl.md │ ├── go │ ├── 01-intro-go.md │ ├── 02-scaffold.md │ ├── 03-policy-settings.md │ ├── 04-validation.md │ ├── 05-e2e-tests.md │ ├── 06-logging.md │ ├── 07-automate.md │ ├── 08-distribute.md │ ├── 09-validation-with-queries.md │ └── 10-raw-policies.md │ ├── index.md │ ├── javascript.md │ ├── metadata.md │ ├── other-languages.md │ ├── rego │ ├── 01-intro-rego.md │ ├── 02-builtin-support.md │ ├── gatekeeper │ │ ├── 01-intro.md │ │ ├── 02-create-policy.md │ │ ├── 03-build-and-run.md │ │ └── 04-distribute.md │ └── open-policy-agent │ │ ├── 01-intro.md │ │ ├── 02-create-policy.md │ │ ├── 03-build-and-run.md │ │ ├── 04-distribute.md │ │ └── 05-raw-policies.md │ ├── rust │ ├── 01-intro-rust.md │ ├── 02-create-policy.md │ ├── 03-define-policy-settings.md │ ├── 04-write-validation-logic.md │ ├── 05-mutation-policy.md │ ├── 06-logging.md │ ├── 07-build-and-distribute.md │ └── 08-raw-policies.md │ ├── spec │ ├── 01-intro-spec.md │ ├── 02-settings.md │ ├── 03-validating-policies.md │ ├── 04-mutating-policies.md │ ├── 05-context-aware-policies.md │ └── host-capabilities │ │ ├── 01-intro-host-capabilities.md │ │ ├── 02-signature-verifier-policies.md │ │ ├── 03-container-registry.md │ │ ├── 04-net.md │ │ ├── 05-crypto.md │ │ └── 06-kubernetes.md │ ├── swift.md │ ├── typescript.md │ └── wasi │ ├── 01-intro-wasi.md │ └── 02-raw-policies.md ├── versioned_sidebars ├── version-1.10-sidebars.json ├── version-1.11-sidebars.json ├── version-1.12-sidebars.json ├── version-1.13-sidebars.json ├── version-1.14-sidebars.json ├── version-1.15-sidebars.json ├── version-1.16-sidebars.json ├── version-1.17-sidebars.json ├── version-1.18-sidebars.json ├── version-1.19-sidebars.json ├── version-1.20-sidebars.json ├── version-1.21-sidebars.json ├── version-1.22-sidebars.json ├── version-1.23-sidebars.json ├── version-1.24-sidebars.json ├── version-1.25-sidebars.json ├── version-1.26-sidebars.json ├── version-1.27-sidebars.json ├── version-1.28-sidebars.json ├── version-1.29-sidebars.json ├── version-1.30-sidebars.json ├── version-1.31-sidebars.json ├── version-1.7-sidebars.json ├── version-1.8-sidebars.json └── version-1.9-sidebars.json ├── versions.json └── yarn.lock /CNAME: -------------------------------------------------------------------------------- 1 | docs.kubewarden.io 2 | -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @kubewarden/kubewarden-developers 2 | * @kubewarden/kubewarden-documentation 3 | -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: [require.resolve('@docusaurus/core/lib/babel/preset')], 3 | }; 4 | -------------------------------------------------------------------------------- /docs/explanations/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Explanations", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /docs/explanations/comparisons/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Comparisons", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /docs/howtos/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Howtos", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /docs/howtos/airgap/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Air gap", 3 | "position": 100, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /docs/howtos/application-collection/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rancher Application Collection", 3 | "position": 140, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /docs/howtos/contribution-guide/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Contribution guide", 3 | "position": 150, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /docs/howtos/policy-servers/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Configuring Policy Servers", 3 | "position": 32, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /docs/howtos/security-hardening/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Security", 3 | "position": 90, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /docs/howtos/telemetry/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Telemetry quick starts", 3 | "position": 120, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /docs/howtos/ui-extension/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rancher UI extension", 3 | "position": 130, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /docs/howtos/workarounds/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Workarounds", 3 | "position": 140, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /docs/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/docs/images/architecture.png -------------------------------------------------------------------------------- /docs/images/architecture_sequence_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/docs/images/architecture_sequence_01.png -------------------------------------------------------------------------------- /docs/images/architecture_sequence_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/docs/images/architecture_sequence_02.png -------------------------------------------------------------------------------- /docs/images/architecture_sequence_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/docs/images/architecture_sequence_03.png -------------------------------------------------------------------------------- /docs/images/architecture_sequence_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/docs/images/architecture_sequence_04.png -------------------------------------------------------------------------------- /docs/images/architecture_sequence_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/docs/images/architecture_sequence_05.png -------------------------------------------------------------------------------- /docs/images/grafana_dashboard_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/docs/images/grafana_dashboard_1.png -------------------------------------------------------------------------------- /docs/images/grafana_dashboard_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/docs/images/grafana_dashboard_2.png -------------------------------------------------------------------------------- /docs/images/grafana_dashboard_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/docs/images/grafana_dashboard_3.png -------------------------------------------------------------------------------- /docs/images/grafana_dashboard_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/docs/images/grafana_dashboard_4.png -------------------------------------------------------------------------------- /docs/images/tasks-policy-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/docs/images/tasks-policy-hub.png -------------------------------------------------------------------------------- /docs/reference/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Reference", 3 | "position": 70, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /docs/reference/security-hardening/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Security", 3 | "position": 70, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /docs/reference/spec/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Policy specification", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /docs/reference/spec/host-capabilities/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Host capabilities", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /docs/tutorials/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Tutorials", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /docs/tutorials/testing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Testing policies", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /docs/tutorials/writing-policies/CEL/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "CEL", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /docs/tutorials/writing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Writing policies", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /docs/tutorials/writing-policies/go/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Go", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /docs/tutorials/writing-policies/rego/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rego", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /docs/tutorials/writing-policies/rego/gatekeeper/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Gatekeeper", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /docs/tutorials/writing-policies/rego/open-policy-agent/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Open Policy Agent", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /docs/tutorials/writing-policies/rust/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rust", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /docs/tutorials/writing-policies/typescript/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "TypeScript", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /docs/tutorials/writing-policies/wasi/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "WASI", 3 | "position": 80, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /src/fonts/Poppins/Poppins-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/src/fonts/Poppins/Poppins-Bold.woff -------------------------------------------------------------------------------- /src/fonts/Poppins/Poppins-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/src/fonts/Poppins/Poppins-Bold.woff2 -------------------------------------------------------------------------------- /src/fonts/Roboto/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/src/fonts/Roboto/Roboto-Light.woff -------------------------------------------------------------------------------- /src/fonts/Roboto/Roboto-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/src/fonts/Roboto/Roboto-Light.woff2 -------------------------------------------------------------------------------- /src/fonts/Space_Mono/SpaceMono-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/src/fonts/Space_Mono/SpaceMono-Regular.woff -------------------------------------------------------------------------------- /src/fonts/Space_Mono/SpaceMono-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/src/fonts/Space_Mono/SpaceMono-Regular.woff2 -------------------------------------------------------------------------------- /static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/CNAME: -------------------------------------------------------------------------------- 1 | docs.kubewarden.io 2 | -------------------------------------------------------------------------------- /static/img/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/static/img/architecture.png -------------------------------------------------------------------------------- /static/img/architecture_sequence_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/static/img/architecture_sequence_01.png -------------------------------------------------------------------------------- /static/img/architecture_sequence_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/static/img/architecture_sequence_02.png -------------------------------------------------------------------------------- /static/img/architecture_sequence_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/static/img/architecture_sequence_03.png -------------------------------------------------------------------------------- /static/img/architecture_sequence_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/static/img/architecture_sequence_04.png -------------------------------------------------------------------------------- /static/img/architecture_sequence_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/static/img/architecture_sequence_05.png -------------------------------------------------------------------------------- /static/img/grafana_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/static/img/grafana_dashboard.png -------------------------------------------------------------------------------- /static/img/grafana_dashboard_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/static/img/grafana_dashboard_1.png -------------------------------------------------------------------------------- /static/img/grafana_dashboard_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/static/img/grafana_dashboard_2.png -------------------------------------------------------------------------------- /static/img/grafana_dashboard_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/static/img/grafana_dashboard_3.png -------------------------------------------------------------------------------- /static/img/grafana_dashboard_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/static/img/grafana_dashboard_4.png -------------------------------------------------------------------------------- /static/img/jaeger-custom-otel-collector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/static/img/jaeger-custom-otel-collector.png -------------------------------------------------------------------------------- /static/img/jaeger-ui-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/static/img/jaeger-ui-home.png -------------------------------------------------------------------------------- /static/img/policy-reporter_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/static/img/policy-reporter_dashboard.png -------------------------------------------------------------------------------- /static/img/policy-reporter_kubewarden-filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/static/img/policy-reporter_kubewarden-filter.png -------------------------------------------------------------------------------- /static/img/policy-reporter_per-resource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/static/img/policy-reporter_per-resource.png -------------------------------------------------------------------------------- /static/img/policy-reporter_policyreports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/static/img/policy-reporter_policyreports.png -------------------------------------------------------------------------------- /static/img/tasks-artifact-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/static/img/tasks-artifact-hub.png -------------------------------------------------------------------------------- /static/img/tasks-policy-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/static/img/tasks-policy-hub.png -------------------------------------------------------------------------------- /static/img/ui_airgap_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/static/img/ui_airgap_01.png -------------------------------------------------------------------------------- /static/img/ui_airgap_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/static/img/ui_airgap_02.png -------------------------------------------------------------------------------- /static/img/ui_airgap_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/static/img/ui_airgap_03.png -------------------------------------------------------------------------------- /static/img/ui_airgap_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/static/img/ui_airgap_04.png -------------------------------------------------------------------------------- /static/img/ui_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/static/img/ui_dashboard.png -------------------------------------------------------------------------------- /static/img/ui_policy_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/static/img/ui_policy_create.png -------------------------------------------------------------------------------- /static/img/ui_policy_custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/static/img/ui_policy_custom.png -------------------------------------------------------------------------------- /static/img/ui_policy_tracing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/static/img/ui_policy_tracing.png -------------------------------------------------------------------------------- /static/img/ui_policy_whitelist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/static/img/ui_policy_whitelist.png -------------------------------------------------------------------------------- /static/img/ui_policyserver_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/static/img/ui_policyserver_detail.png -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | 4 | Sitemap: https://docs.kubewarden.io/sitemap.xml -------------------------------------------------------------------------------- /versioned_docs/version-1.10/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.10/images/architecture.png -------------------------------------------------------------------------------- /versioned_docs/version-1.10/images/architecture_sequence_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.10/images/architecture_sequence_01.png -------------------------------------------------------------------------------- /versioned_docs/version-1.10/images/architecture_sequence_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.10/images/architecture_sequence_02.png -------------------------------------------------------------------------------- /versioned_docs/version-1.10/images/architecture_sequence_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.10/images/architecture_sequence_03.png -------------------------------------------------------------------------------- /versioned_docs/version-1.10/images/architecture_sequence_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.10/images/architecture_sequence_04.png -------------------------------------------------------------------------------- /versioned_docs/version-1.10/images/architecture_sequence_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.10/images/architecture_sequence_05.png -------------------------------------------------------------------------------- /versioned_docs/version-1.10/images/grafana_dashboard_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.10/images/grafana_dashboard_1.png -------------------------------------------------------------------------------- /versioned_docs/version-1.10/images/grafana_dashboard_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.10/images/grafana_dashboard_2.png -------------------------------------------------------------------------------- /versioned_docs/version-1.10/images/grafana_dashboard_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.10/images/grafana_dashboard_3.png -------------------------------------------------------------------------------- /versioned_docs/version-1.10/images/grafana_dashboard_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.10/images/grafana_dashboard_4.png -------------------------------------------------------------------------------- /versioned_docs/version-1.10/images/tasks-policy-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.10/images/tasks-policy-hub.png -------------------------------------------------------------------------------- /versioned_docs/version-1.11/explanations/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Explanations", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.11/explanations/comparisons/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Comparisons", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.11/howtos/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Howtos", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.11/howtos/airgap/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Airgap", 3 | "position": 100, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.11/howtos/contribution-guide/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Contribution guide", 3 | "position": 150, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.11/howtos/policy-servers/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Configuring Policy Servers", 3 | "position": 80, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.11/howtos/telemetry/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Telemetry quick starts", 3 | "position": 120, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.11/howtos/ui-extension/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rancher UI extension", 3 | "position": 110, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.11/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.11/images/architecture.png -------------------------------------------------------------------------------- /versioned_docs/version-1.11/images/architecture_sequence_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.11/images/architecture_sequence_01.png -------------------------------------------------------------------------------- /versioned_docs/version-1.11/images/architecture_sequence_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.11/images/architecture_sequence_02.png -------------------------------------------------------------------------------- /versioned_docs/version-1.11/images/architecture_sequence_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.11/images/architecture_sequence_03.png -------------------------------------------------------------------------------- /versioned_docs/version-1.11/images/architecture_sequence_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.11/images/architecture_sequence_04.png -------------------------------------------------------------------------------- /versioned_docs/version-1.11/images/architecture_sequence_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.11/images/architecture_sequence_05.png -------------------------------------------------------------------------------- /versioned_docs/version-1.11/images/grafana_dashboard_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.11/images/grafana_dashboard_1.png -------------------------------------------------------------------------------- /versioned_docs/version-1.11/images/grafana_dashboard_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.11/images/grafana_dashboard_2.png -------------------------------------------------------------------------------- /versioned_docs/version-1.11/images/grafana_dashboard_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.11/images/grafana_dashboard_3.png -------------------------------------------------------------------------------- /versioned_docs/version-1.11/images/grafana_dashboard_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.11/images/grafana_dashboard_4.png -------------------------------------------------------------------------------- /versioned_docs/version-1.11/images/tasks-policy-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.11/images/tasks-policy-hub.png -------------------------------------------------------------------------------- /versioned_docs/version-1.11/reference/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Reference", 3 | "position": 70, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.11/reference/spec/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Policy specification", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.11/reference/spec/host-capabilities/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Host capabilities", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.11/tutorials/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Tutorials", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.11/tutorials/testing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Testing policies", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.11/tutorials/writing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Writing policies", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.11/tutorials/writing-policies/go/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Go", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.11/tutorials/writing-policies/rego/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rego", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.11/tutorials/writing-policies/rego/gatekeeper/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Gatekeeper", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.11/tutorials/writing-policies/rust/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rust", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.11/tutorials/writing-policies/wasi/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "WASI", 3 | "position": 80, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.12/explanations/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Explanations", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.12/explanations/comparisons/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Comparisons", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.12/howtos/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Howtos", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.12/howtos/airgap/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Airgap", 3 | "position": 100, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.12/howtos/contribution-guide/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Contribution guide", 3 | "position": 150, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.12/howtos/policy-servers/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Configuring Policy Servers", 3 | "position": 80, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.12/howtos/telemetry/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Telemetry quick starts", 3 | "position": 120, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.12/howtos/ui-extension/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rancher UI extension", 3 | "position": 110, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.12/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.12/images/architecture.png -------------------------------------------------------------------------------- /versioned_docs/version-1.12/images/architecture_sequence_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.12/images/architecture_sequence_01.png -------------------------------------------------------------------------------- /versioned_docs/version-1.12/images/architecture_sequence_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.12/images/architecture_sequence_02.png -------------------------------------------------------------------------------- /versioned_docs/version-1.12/images/architecture_sequence_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.12/images/architecture_sequence_03.png -------------------------------------------------------------------------------- /versioned_docs/version-1.12/images/architecture_sequence_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.12/images/architecture_sequence_04.png -------------------------------------------------------------------------------- /versioned_docs/version-1.12/images/architecture_sequence_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.12/images/architecture_sequence_05.png -------------------------------------------------------------------------------- /versioned_docs/version-1.12/images/grafana_dashboard_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.12/images/grafana_dashboard_1.png -------------------------------------------------------------------------------- /versioned_docs/version-1.12/images/grafana_dashboard_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.12/images/grafana_dashboard_2.png -------------------------------------------------------------------------------- /versioned_docs/version-1.12/images/grafana_dashboard_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.12/images/grafana_dashboard_3.png -------------------------------------------------------------------------------- /versioned_docs/version-1.12/images/grafana_dashboard_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.12/images/grafana_dashboard_4.png -------------------------------------------------------------------------------- /versioned_docs/version-1.12/images/tasks-policy-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.12/images/tasks-policy-hub.png -------------------------------------------------------------------------------- /versioned_docs/version-1.12/reference/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Reference", 3 | "position": 70, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.12/reference/spec/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Policy specification", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.12/reference/spec/host-capabilities/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Host capabilities", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.12/tutorials/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Tutorials", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.12/tutorials/testing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Testing policies", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.12/tutorials/writing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Writing policies", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.12/tutorials/writing-policies/go/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Go", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.12/tutorials/writing-policies/rego/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rego", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.12/tutorials/writing-policies/rego/gatekeeper/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Gatekeeper", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.12/tutorials/writing-policies/rust/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rust", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.12/tutorials/writing-policies/wasi/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "WASI", 3 | "position": 80, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.13/explanations/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Explanations", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.13/explanations/comparisons/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Comparisons", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.13/howtos/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Howtos", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.13/howtos/airgap/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Airgap", 3 | "position": 100, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.13/howtos/contribution-guide/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Contribution guide", 3 | "position": 150, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.13/howtos/policy-servers/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Configuring Policy Servers", 3 | "position": 80, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.13/howtos/telemetry/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Telemetry quick starts", 3 | "position": 120, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.13/howtos/ui-extension/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rancher UI extension", 3 | "position": 110, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.13/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.13/images/architecture.png -------------------------------------------------------------------------------- /versioned_docs/version-1.13/images/architecture_sequence_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.13/images/architecture_sequence_01.png -------------------------------------------------------------------------------- /versioned_docs/version-1.13/images/architecture_sequence_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.13/images/architecture_sequence_02.png -------------------------------------------------------------------------------- /versioned_docs/version-1.13/images/architecture_sequence_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.13/images/architecture_sequence_03.png -------------------------------------------------------------------------------- /versioned_docs/version-1.13/images/architecture_sequence_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.13/images/architecture_sequence_04.png -------------------------------------------------------------------------------- /versioned_docs/version-1.13/images/architecture_sequence_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.13/images/architecture_sequence_05.png -------------------------------------------------------------------------------- /versioned_docs/version-1.13/images/grafana_dashboard_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.13/images/grafana_dashboard_1.png -------------------------------------------------------------------------------- /versioned_docs/version-1.13/images/grafana_dashboard_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.13/images/grafana_dashboard_2.png -------------------------------------------------------------------------------- /versioned_docs/version-1.13/images/grafana_dashboard_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.13/images/grafana_dashboard_3.png -------------------------------------------------------------------------------- /versioned_docs/version-1.13/images/grafana_dashboard_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.13/images/grafana_dashboard_4.png -------------------------------------------------------------------------------- /versioned_docs/version-1.13/images/tasks-policy-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.13/images/tasks-policy-hub.png -------------------------------------------------------------------------------- /versioned_docs/version-1.13/reference/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Reference", 3 | "position": 70, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.13/reference/spec/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Policy specification", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.13/reference/spec/host-capabilities/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Host capabilities", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.13/tutorials/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Tutorials", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.13/tutorials/testing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Testing policies", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.13/tutorials/writing-policies/CEL/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "CEL", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.13/tutorials/writing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Writing policies", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.13/tutorials/writing-policies/go/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Go", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.13/tutorials/writing-policies/rego/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rego", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.13/tutorials/writing-policies/rego/gatekeeper/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Gatekeeper", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.13/tutorials/writing-policies/rust/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rust", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.13/tutorials/writing-policies/wasi/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "WASI", 3 | "position": 80, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.14/explanations/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Explanations", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.14/explanations/comparisons/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Comparisons", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.14/howtos/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Howtos", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.14/howtos/airgap/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Airgap", 3 | "position": 100, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.14/howtos/contribution-guide/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Contribution guide", 3 | "position": 150, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.14/howtos/policy-servers/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Configuring Policy Servers", 3 | "position": 80, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.14/howtos/telemetry/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Telemetry quick starts", 3 | "position": 120, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.14/howtos/ui-extension/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rancher UI extension", 3 | "position": 110, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.14/howtos/workarounds/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Workarounds", 3 | "position": 15, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.14/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.14/images/architecture.png -------------------------------------------------------------------------------- /versioned_docs/version-1.14/images/architecture_sequence_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.14/images/architecture_sequence_01.png -------------------------------------------------------------------------------- /versioned_docs/version-1.14/images/architecture_sequence_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.14/images/architecture_sequence_02.png -------------------------------------------------------------------------------- /versioned_docs/version-1.14/images/architecture_sequence_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.14/images/architecture_sequence_03.png -------------------------------------------------------------------------------- /versioned_docs/version-1.14/images/architecture_sequence_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.14/images/architecture_sequence_04.png -------------------------------------------------------------------------------- /versioned_docs/version-1.14/images/architecture_sequence_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.14/images/architecture_sequence_05.png -------------------------------------------------------------------------------- /versioned_docs/version-1.14/images/grafana_dashboard_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.14/images/grafana_dashboard_1.png -------------------------------------------------------------------------------- /versioned_docs/version-1.14/images/grafana_dashboard_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.14/images/grafana_dashboard_2.png -------------------------------------------------------------------------------- /versioned_docs/version-1.14/images/grafana_dashboard_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.14/images/grafana_dashboard_3.png -------------------------------------------------------------------------------- /versioned_docs/version-1.14/images/grafana_dashboard_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.14/images/grafana_dashboard_4.png -------------------------------------------------------------------------------- /versioned_docs/version-1.14/images/tasks-policy-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.14/images/tasks-policy-hub.png -------------------------------------------------------------------------------- /versioned_docs/version-1.14/reference/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Reference", 3 | "position": 70, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.14/reference/spec/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Policy specification", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.14/reference/spec/host-capabilities/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Host capabilities", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.14/tutorials/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Tutorials", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.14/tutorials/testing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Testing policies", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.14/tutorials/writing-policies/CEL/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "CEL", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.14/tutorials/writing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Writing policies", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.14/tutorials/writing-policies/go/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Go", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.14/tutorials/writing-policies/rego/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rego", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.14/tutorials/writing-policies/rego/gatekeeper/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Gatekeeper", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.14/tutorials/writing-policies/rust/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rust", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.14/tutorials/writing-policies/wasi/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "WASI", 3 | "position": 80, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.15/explanations/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Explanations", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.15/explanations/comparisons/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Comparisons", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.15/howtos/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Howtos", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.15/howtos/airgap/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Airgap", 3 | "position": 100, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.15/howtos/contribution-guide/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Contribution guide", 3 | "position": 150, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.15/howtos/policy-servers/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Configuring Policy Servers", 3 | "position": 80, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.15/howtos/telemetry/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Telemetry quick starts", 3 | "position": 120, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.15/howtos/ui-extension/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rancher UI extension", 3 | "position": 110, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.15/howtos/workarounds/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Workarounds", 3 | "position": 15, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.15/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.15/images/architecture.png -------------------------------------------------------------------------------- /versioned_docs/version-1.15/images/architecture_sequence_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.15/images/architecture_sequence_01.png -------------------------------------------------------------------------------- /versioned_docs/version-1.15/images/architecture_sequence_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.15/images/architecture_sequence_02.png -------------------------------------------------------------------------------- /versioned_docs/version-1.15/images/architecture_sequence_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.15/images/architecture_sequence_03.png -------------------------------------------------------------------------------- /versioned_docs/version-1.15/images/architecture_sequence_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.15/images/architecture_sequence_04.png -------------------------------------------------------------------------------- /versioned_docs/version-1.15/images/architecture_sequence_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.15/images/architecture_sequence_05.png -------------------------------------------------------------------------------- /versioned_docs/version-1.15/images/grafana_dashboard_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.15/images/grafana_dashboard_1.png -------------------------------------------------------------------------------- /versioned_docs/version-1.15/images/grafana_dashboard_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.15/images/grafana_dashboard_2.png -------------------------------------------------------------------------------- /versioned_docs/version-1.15/images/grafana_dashboard_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.15/images/grafana_dashboard_3.png -------------------------------------------------------------------------------- /versioned_docs/version-1.15/images/grafana_dashboard_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.15/images/grafana_dashboard_4.png -------------------------------------------------------------------------------- /versioned_docs/version-1.15/images/tasks-policy-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.15/images/tasks-policy-hub.png -------------------------------------------------------------------------------- /versioned_docs/version-1.15/reference/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Reference", 3 | "position": 70, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.15/reference/spec/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Policy specification", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.15/reference/spec/host-capabilities/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Host capabilities", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.15/tutorials/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Tutorials", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.15/tutorials/testing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Testing policies", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.15/tutorials/writing-policies/CEL/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "CEL", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.15/tutorials/writing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Writing policies", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.15/tutorials/writing-policies/go/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Go", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.15/tutorials/writing-policies/rego/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rego", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.15/tutorials/writing-policies/rego/gatekeeper/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Gatekeeper", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.15/tutorials/writing-policies/rust/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rust", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.15/tutorials/writing-policies/wasi/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "WASI", 3 | "position": 80, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.16/explanations/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Explanations", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.16/explanations/comparisons/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Comparisons", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.16/howtos/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Howtos", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.16/howtos/airgap/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Airgap", 3 | "position": 100, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.16/howtos/contribution-guide/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Contribution guide", 3 | "position": 150, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.16/howtos/policy-servers/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Configuring Policy Servers", 3 | "position": 80, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.16/howtos/telemetry/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Telemetry quick starts", 3 | "position": 120, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.16/howtos/ui-extension/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rancher UI extension", 3 | "position": 110, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.16/howtos/workarounds/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Workarounds", 3 | "position": 15, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.16/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.16/images/architecture.png -------------------------------------------------------------------------------- /versioned_docs/version-1.16/images/architecture_sequence_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.16/images/architecture_sequence_01.png -------------------------------------------------------------------------------- /versioned_docs/version-1.16/images/architecture_sequence_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.16/images/architecture_sequence_02.png -------------------------------------------------------------------------------- /versioned_docs/version-1.16/images/architecture_sequence_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.16/images/architecture_sequence_03.png -------------------------------------------------------------------------------- /versioned_docs/version-1.16/images/architecture_sequence_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.16/images/architecture_sequence_04.png -------------------------------------------------------------------------------- /versioned_docs/version-1.16/images/architecture_sequence_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.16/images/architecture_sequence_05.png -------------------------------------------------------------------------------- /versioned_docs/version-1.16/images/grafana_dashboard_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.16/images/grafana_dashboard_1.png -------------------------------------------------------------------------------- /versioned_docs/version-1.16/images/grafana_dashboard_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.16/images/grafana_dashboard_2.png -------------------------------------------------------------------------------- /versioned_docs/version-1.16/images/grafana_dashboard_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.16/images/grafana_dashboard_3.png -------------------------------------------------------------------------------- /versioned_docs/version-1.16/images/grafana_dashboard_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.16/images/grafana_dashboard_4.png -------------------------------------------------------------------------------- /versioned_docs/version-1.16/images/tasks-policy-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.16/images/tasks-policy-hub.png -------------------------------------------------------------------------------- /versioned_docs/version-1.16/reference/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Reference", 3 | "position": 70, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.16/reference/spec/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Policy specification", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.16/reference/spec/host-capabilities/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Host capabilities", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.16/tutorials/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Tutorials", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.16/tutorials/testing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Testing policies", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.16/tutorials/writing-policies/CEL/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "CEL", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.16/tutorials/writing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Writing policies", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.16/tutorials/writing-policies/go/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Go", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.16/tutorials/writing-policies/rego/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rego", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.16/tutorials/writing-policies/rego/gatekeeper/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Gatekeeper", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.16/tutorials/writing-policies/rust/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rust", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.16/tutorials/writing-policies/wasi/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "WASI", 3 | "position": 80, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.17/explanations/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Explanations", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.17/explanations/comparisons/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Comparisons", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.17/howtos/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Howtos", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.17/howtos/airgap/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Airgap", 3 | "position": 100, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.17/howtos/contribution-guide/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Contribution guide", 3 | "position": 150, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.17/howtos/policy-servers/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Configuring Policy Servers", 3 | "position": 80, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.17/howtos/telemetry/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Telemetry quick starts", 3 | "position": 120, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.17/howtos/ui-extension/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rancher UI extension", 3 | "position": 110, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.17/howtos/workarounds/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Workarounds", 3 | "position": 15, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.17/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.17/images/architecture.png -------------------------------------------------------------------------------- /versioned_docs/version-1.17/images/architecture_sequence_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.17/images/architecture_sequence_01.png -------------------------------------------------------------------------------- /versioned_docs/version-1.17/images/architecture_sequence_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.17/images/architecture_sequence_02.png -------------------------------------------------------------------------------- /versioned_docs/version-1.17/images/architecture_sequence_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.17/images/architecture_sequence_03.png -------------------------------------------------------------------------------- /versioned_docs/version-1.17/images/architecture_sequence_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.17/images/architecture_sequence_04.png -------------------------------------------------------------------------------- /versioned_docs/version-1.17/images/architecture_sequence_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.17/images/architecture_sequence_05.png -------------------------------------------------------------------------------- /versioned_docs/version-1.17/images/grafana_dashboard_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.17/images/grafana_dashboard_1.png -------------------------------------------------------------------------------- /versioned_docs/version-1.17/images/grafana_dashboard_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.17/images/grafana_dashboard_2.png -------------------------------------------------------------------------------- /versioned_docs/version-1.17/images/grafana_dashboard_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.17/images/grafana_dashboard_3.png -------------------------------------------------------------------------------- /versioned_docs/version-1.17/images/grafana_dashboard_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.17/images/grafana_dashboard_4.png -------------------------------------------------------------------------------- /versioned_docs/version-1.17/images/tasks-policy-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.17/images/tasks-policy-hub.png -------------------------------------------------------------------------------- /versioned_docs/version-1.17/reference/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Reference", 3 | "position": 70, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.17/reference/spec/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Policy specification", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.17/reference/spec/host-capabilities/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Host capabilities", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.17/tutorials/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Tutorials", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.17/tutorials/testing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Testing policies", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.17/tutorials/writing-policies/CEL/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "CEL", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.17/tutorials/writing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Writing policies", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.17/tutorials/writing-policies/go/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Go", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.17/tutorials/writing-policies/rego/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rego", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.17/tutorials/writing-policies/rego/gatekeeper/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Gatekeeper", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.17/tutorials/writing-policies/rust/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rust", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.17/tutorials/writing-policies/wasi/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "WASI", 3 | "position": 80, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.18/explanations/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Explanations", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.18/explanations/comparisons/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Comparisons", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.18/howtos/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Howtos", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.18/howtos/airgap/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Airgap", 3 | "position": 100, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.18/howtos/contribution-guide/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Contribution guide", 3 | "position": 150, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.18/howtos/policy-servers/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Configuring Policy Servers", 3 | "position": 80, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.18/howtos/telemetry/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Telemetry quick starts", 3 | "position": 120, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.18/howtos/ui-extension/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rancher UI extension", 3 | "position": 110, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.18/howtos/workarounds/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Workarounds", 3 | "position": 15, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.18/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.18/images/architecture.png -------------------------------------------------------------------------------- /versioned_docs/version-1.18/images/architecture_sequence_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.18/images/architecture_sequence_01.png -------------------------------------------------------------------------------- /versioned_docs/version-1.18/images/architecture_sequence_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.18/images/architecture_sequence_02.png -------------------------------------------------------------------------------- /versioned_docs/version-1.18/images/architecture_sequence_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.18/images/architecture_sequence_03.png -------------------------------------------------------------------------------- /versioned_docs/version-1.18/images/architecture_sequence_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.18/images/architecture_sequence_04.png -------------------------------------------------------------------------------- /versioned_docs/version-1.18/images/architecture_sequence_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.18/images/architecture_sequence_05.png -------------------------------------------------------------------------------- /versioned_docs/version-1.18/images/grafana_dashboard_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.18/images/grafana_dashboard_1.png -------------------------------------------------------------------------------- /versioned_docs/version-1.18/images/grafana_dashboard_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.18/images/grafana_dashboard_2.png -------------------------------------------------------------------------------- /versioned_docs/version-1.18/images/grafana_dashboard_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.18/images/grafana_dashboard_3.png -------------------------------------------------------------------------------- /versioned_docs/version-1.18/images/grafana_dashboard_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.18/images/grafana_dashboard_4.png -------------------------------------------------------------------------------- /versioned_docs/version-1.18/images/tasks-policy-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.18/images/tasks-policy-hub.png -------------------------------------------------------------------------------- /versioned_docs/version-1.18/reference/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Reference", 3 | "position": 70, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.18/reference/spec/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Policy specification", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.18/reference/spec/host-capabilities/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Host capabilities", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.18/tutorials/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Tutorials", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.18/tutorials/testing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Testing policies", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.18/tutorials/writing-policies/CEL/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "CEL", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.18/tutorials/writing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Writing policies", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.18/tutorials/writing-policies/go/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Go", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.18/tutorials/writing-policies/rego/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rego", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.18/tutorials/writing-policies/rego/gatekeeper/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Gatekeeper", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.18/tutorials/writing-policies/rust/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rust", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.18/tutorials/writing-policies/wasi/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "WASI", 3 | "position": 80, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.19/explanations/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Explanations", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.19/explanations/comparisons/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Comparisons", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.19/howtos/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Howtos", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.19/howtos/airgap/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Airgap", 3 | "position": 100, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.19/howtos/contribution-guide/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Contribution guide", 3 | "position": 150, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.19/howtos/policy-servers/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Configuring Policy Servers", 3 | "position": 80, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.19/howtos/telemetry/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Telemetry quick starts", 3 | "position": 120, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.19/howtos/ui-extension/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rancher UI extension", 3 | "position": 110, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.19/howtos/workarounds/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Workarounds", 3 | "position": 15, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.19/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.19/images/architecture.png -------------------------------------------------------------------------------- /versioned_docs/version-1.19/images/architecture_sequence_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.19/images/architecture_sequence_01.png -------------------------------------------------------------------------------- /versioned_docs/version-1.19/images/architecture_sequence_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.19/images/architecture_sequence_02.png -------------------------------------------------------------------------------- /versioned_docs/version-1.19/images/architecture_sequence_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.19/images/architecture_sequence_03.png -------------------------------------------------------------------------------- /versioned_docs/version-1.19/images/architecture_sequence_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.19/images/architecture_sequence_04.png -------------------------------------------------------------------------------- /versioned_docs/version-1.19/images/architecture_sequence_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.19/images/architecture_sequence_05.png -------------------------------------------------------------------------------- /versioned_docs/version-1.19/images/grafana_dashboard_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.19/images/grafana_dashboard_1.png -------------------------------------------------------------------------------- /versioned_docs/version-1.19/images/grafana_dashboard_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.19/images/grafana_dashboard_2.png -------------------------------------------------------------------------------- /versioned_docs/version-1.19/images/grafana_dashboard_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.19/images/grafana_dashboard_3.png -------------------------------------------------------------------------------- /versioned_docs/version-1.19/images/grafana_dashboard_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.19/images/grafana_dashboard_4.png -------------------------------------------------------------------------------- /versioned_docs/version-1.19/images/tasks-policy-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.19/images/tasks-policy-hub.png -------------------------------------------------------------------------------- /versioned_docs/version-1.19/reference/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Reference", 3 | "position": 70, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.19/reference/spec/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Policy specification", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.19/reference/spec/host-capabilities/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Host capabilities", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.19/tutorials/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Tutorials", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.19/tutorials/testing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Testing policies", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.19/tutorials/writing-policies/CEL/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "CEL", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.19/tutorials/writing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Writing policies", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.19/tutorials/writing-policies/go/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Go", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.19/tutorials/writing-policies/rego/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rego", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.19/tutorials/writing-policies/rego/gatekeeper/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Gatekeeper", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.19/tutorials/writing-policies/rust/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rust", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.19/tutorials/writing-policies/wasi/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "WASI", 3 | "position": 80, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.20/explanations/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Explanations", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.20/explanations/comparisons/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Comparisons", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.20/howtos/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Howtos", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.20/howtos/airgap/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Airgap", 3 | "position": 100, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.20/howtos/contribution-guide/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Contribution guide", 3 | "position": 150, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.20/howtos/policy-servers/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Configuring Policy Servers", 3 | "position": 80, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.20/howtos/telemetry/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Telemetry quick starts", 3 | "position": 120, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.20/howtos/ui-extension/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rancher UI extension", 3 | "position": 110, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.20/howtos/workarounds/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Workarounds", 3 | "position": 15, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.20/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.20/images/architecture.png -------------------------------------------------------------------------------- /versioned_docs/version-1.20/images/architecture_sequence_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.20/images/architecture_sequence_01.png -------------------------------------------------------------------------------- /versioned_docs/version-1.20/images/architecture_sequence_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.20/images/architecture_sequence_02.png -------------------------------------------------------------------------------- /versioned_docs/version-1.20/images/architecture_sequence_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.20/images/architecture_sequence_03.png -------------------------------------------------------------------------------- /versioned_docs/version-1.20/images/architecture_sequence_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.20/images/architecture_sequence_04.png -------------------------------------------------------------------------------- /versioned_docs/version-1.20/images/architecture_sequence_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.20/images/architecture_sequence_05.png -------------------------------------------------------------------------------- /versioned_docs/version-1.20/images/grafana_dashboard_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.20/images/grafana_dashboard_1.png -------------------------------------------------------------------------------- /versioned_docs/version-1.20/images/grafana_dashboard_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.20/images/grafana_dashboard_2.png -------------------------------------------------------------------------------- /versioned_docs/version-1.20/images/grafana_dashboard_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.20/images/grafana_dashboard_3.png -------------------------------------------------------------------------------- /versioned_docs/version-1.20/images/grafana_dashboard_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.20/images/grafana_dashboard_4.png -------------------------------------------------------------------------------- /versioned_docs/version-1.20/images/tasks-policy-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.20/images/tasks-policy-hub.png -------------------------------------------------------------------------------- /versioned_docs/version-1.20/reference/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Reference", 3 | "position": 70, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.20/reference/spec/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Policy specification", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.20/reference/spec/host-capabilities/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Host capabilities", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.20/tutorials/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Tutorials", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.20/tutorials/testing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Testing policies", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.20/tutorials/writing-policies/CEL/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "CEL", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.20/tutorials/writing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Writing policies", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.20/tutorials/writing-policies/go/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Go", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.20/tutorials/writing-policies/rego/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rego", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.20/tutorials/writing-policies/rego/gatekeeper/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Gatekeeper", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.20/tutorials/writing-policies/rust/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rust", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.20/tutorials/writing-policies/wasi/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "WASI", 3 | "position": 80, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.21/explanations/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Explanations", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.21/explanations/comparisons/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Comparisons", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.21/howtos/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Howtos", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.21/howtos/airgap/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Airgap", 3 | "position": 100, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.21/howtos/contribution-guide/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Contribution guide", 3 | "position": 150, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.21/howtos/policy-servers/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Configuring Policy Servers", 3 | "position": 80, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.21/howtos/telemetry/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Telemetry quick starts", 3 | "position": 120, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.21/howtos/ui-extension/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rancher UI extension", 3 | "position": 110, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.21/howtos/workarounds/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Workarounds", 3 | "position": 15, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.21/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.21/images/architecture.png -------------------------------------------------------------------------------- /versioned_docs/version-1.21/images/grafana_dashboard_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.21/images/grafana_dashboard_1.png -------------------------------------------------------------------------------- /versioned_docs/version-1.21/images/grafana_dashboard_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.21/images/grafana_dashboard_2.png -------------------------------------------------------------------------------- /versioned_docs/version-1.21/images/grafana_dashboard_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.21/images/grafana_dashboard_3.png -------------------------------------------------------------------------------- /versioned_docs/version-1.21/images/grafana_dashboard_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.21/images/grafana_dashboard_4.png -------------------------------------------------------------------------------- /versioned_docs/version-1.21/images/tasks-policy-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.21/images/tasks-policy-hub.png -------------------------------------------------------------------------------- /versioned_docs/version-1.21/reference/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Reference", 3 | "position": 70, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.21/reference/spec/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Policy specification", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.21/reference/spec/host-capabilities/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Host capabilities", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.21/tutorials/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Tutorials", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.21/tutorials/testing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Testing policies", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.21/tutorials/writing-policies/CEL/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "CEL", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.21/tutorials/writing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Writing policies", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.21/tutorials/writing-policies/go/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Go", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.21/tutorials/writing-policies/rego/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rego", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.21/tutorials/writing-policies/rego/gatekeeper/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Gatekeeper", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.21/tutorials/writing-policies/rust/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rust", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.21/tutorials/writing-policies/wasi/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "WASI", 3 | "position": 80, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.22/explanations/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Explanations", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.22/explanations/comparisons/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Comparisons", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.22/howtos/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Howtos", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.22/howtos/airgap/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Airgap", 3 | "position": 100, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.22/howtos/contribution-guide/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Contribution guide", 3 | "position": 150, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.22/howtos/policy-servers/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Configuring Policy Servers", 3 | "position": 80, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.22/howtos/telemetry/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Telemetry quick starts", 3 | "position": 120, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.22/howtos/ui-extension/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rancher UI extension", 3 | "position": 110, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.22/howtos/workarounds/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Workarounds", 3 | "position": 15, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.22/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.22/images/architecture.png -------------------------------------------------------------------------------- /versioned_docs/version-1.22/images/grafana_dashboard_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.22/images/grafana_dashboard_1.png -------------------------------------------------------------------------------- /versioned_docs/version-1.22/images/grafana_dashboard_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.22/images/grafana_dashboard_2.png -------------------------------------------------------------------------------- /versioned_docs/version-1.22/images/grafana_dashboard_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.22/images/grafana_dashboard_3.png -------------------------------------------------------------------------------- /versioned_docs/version-1.22/images/grafana_dashboard_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.22/images/grafana_dashboard_4.png -------------------------------------------------------------------------------- /versioned_docs/version-1.22/images/tasks-policy-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.22/images/tasks-policy-hub.png -------------------------------------------------------------------------------- /versioned_docs/version-1.22/reference/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Reference", 3 | "position": 70, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.22/reference/spec/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Policy specification", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.22/reference/spec/host-capabilities/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Host capabilities", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.22/tutorials/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Tutorials", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.22/tutorials/testing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Testing policies", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.22/tutorials/writing-policies/CEL/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "CEL", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.22/tutorials/writing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Writing policies", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.22/tutorials/writing-policies/go/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Go", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.22/tutorials/writing-policies/rego/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rego", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.22/tutorials/writing-policies/rego/gatekeeper/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Gatekeeper", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.22/tutorials/writing-policies/rust/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rust", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.22/tutorials/writing-policies/wasi/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "WASI", 3 | "position": 80, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.23/explanations/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Explanations", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.23/explanations/comparisons/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Comparisons", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.23/howtos/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Howtos", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.23/howtos/airgap/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Air gap", 3 | "position": 100, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.23/howtos/contribution-guide/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Contribution guide", 3 | "position": 150, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.23/howtos/policy-servers/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Configuring Policy Servers", 3 | "position": 32, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.23/howtos/security-hardening/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Security", 3 | "position": 90, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.23/howtos/telemetry/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Telemetry quick starts", 3 | "position": 120, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.23/howtos/ui-extension/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rancher UI extension", 3 | "position": 130, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.23/howtos/workarounds/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Workarounds", 3 | "position": 140, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.23/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.23/images/architecture.png -------------------------------------------------------------------------------- /versioned_docs/version-1.23/images/grafana_dashboard_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.23/images/grafana_dashboard_1.png -------------------------------------------------------------------------------- /versioned_docs/version-1.23/images/grafana_dashboard_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.23/images/grafana_dashboard_2.png -------------------------------------------------------------------------------- /versioned_docs/version-1.23/images/grafana_dashboard_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.23/images/grafana_dashboard_3.png -------------------------------------------------------------------------------- /versioned_docs/version-1.23/images/grafana_dashboard_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.23/images/grafana_dashboard_4.png -------------------------------------------------------------------------------- /versioned_docs/version-1.23/images/tasks-policy-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.23/images/tasks-policy-hub.png -------------------------------------------------------------------------------- /versioned_docs/version-1.23/reference/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Reference", 3 | "position": 70, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.23/reference/security-hardening/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Security", 3 | "position": 70, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.23/reference/spec/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Policy specification", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.23/reference/spec/host-capabilities/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Host capabilities", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.23/tutorials/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Tutorials", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.23/tutorials/testing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Testing policies", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.23/tutorials/writing-policies/CEL/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "CEL", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.23/tutorials/writing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Writing policies", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.23/tutorials/writing-policies/go/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Go", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.23/tutorials/writing-policies/rego/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rego", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.23/tutorials/writing-policies/rego/gatekeeper/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Gatekeeper", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.23/tutorials/writing-policies/rust/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rust", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.23/tutorials/writing-policies/wasi/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "WASI", 3 | "position": 80, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.24/explanations/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Explanations", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.24/explanations/comparisons/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Comparisons", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.24/howtos/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Howtos", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.24/howtos/airgap/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Air gap", 3 | "position": 100, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.24/howtos/contribution-guide/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Contribution guide", 3 | "position": 150, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.24/howtos/policy-servers/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Configuring Policy Servers", 3 | "position": 32, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.24/howtos/security-hardening/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Security", 3 | "position": 90, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.24/howtos/telemetry/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Telemetry quick starts", 3 | "position": 120, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.24/howtos/ui-extension/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rancher UI extension", 3 | "position": 130, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.24/howtos/workarounds/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Workarounds", 3 | "position": 140, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.24/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.24/images/architecture.png -------------------------------------------------------------------------------- /versioned_docs/version-1.24/images/grafana_dashboard_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.24/images/grafana_dashboard_1.png -------------------------------------------------------------------------------- /versioned_docs/version-1.24/images/grafana_dashboard_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.24/images/grafana_dashboard_2.png -------------------------------------------------------------------------------- /versioned_docs/version-1.24/images/grafana_dashboard_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.24/images/grafana_dashboard_3.png -------------------------------------------------------------------------------- /versioned_docs/version-1.24/images/grafana_dashboard_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.24/images/grafana_dashboard_4.png -------------------------------------------------------------------------------- /versioned_docs/version-1.24/images/tasks-policy-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.24/images/tasks-policy-hub.png -------------------------------------------------------------------------------- /versioned_docs/version-1.24/reference/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Reference", 3 | "position": 70, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.24/reference/security-hardening/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Security", 3 | "position": 70, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.24/reference/spec/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Policy specification", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.24/reference/spec/host-capabilities/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Host capabilities", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.24/tutorials/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Tutorials", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.24/tutorials/testing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Testing policies", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.24/tutorials/writing-policies/CEL/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "CEL", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.24/tutorials/writing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Writing policies", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.24/tutorials/writing-policies/go/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Go", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.24/tutorials/writing-policies/rego/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rego", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.24/tutorials/writing-policies/rego/gatekeeper/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Gatekeeper", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.24/tutorials/writing-policies/rust/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rust", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.24/tutorials/writing-policies/wasi/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "WASI", 3 | "position": 80, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.25/explanations/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Explanations", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.25/explanations/comparisons/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Comparisons", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.25/howtos/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Howtos", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.25/howtos/airgap/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Air gap", 3 | "position": 100, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.25/howtos/contribution-guide/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Contribution guide", 3 | "position": 150, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.25/howtos/policy-servers/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Configuring Policy Servers", 3 | "position": 32, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.25/howtos/security-hardening/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Security", 3 | "position": 90, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.25/howtos/telemetry/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Telemetry quick starts", 3 | "position": 120, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.25/howtos/ui-extension/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rancher UI extension", 3 | "position": 130, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.25/howtos/workarounds/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Workarounds", 3 | "position": 140, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.25/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.25/images/architecture.png -------------------------------------------------------------------------------- /versioned_docs/version-1.25/images/grafana_dashboard_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.25/images/grafana_dashboard_1.png -------------------------------------------------------------------------------- /versioned_docs/version-1.25/images/grafana_dashboard_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.25/images/grafana_dashboard_2.png -------------------------------------------------------------------------------- /versioned_docs/version-1.25/images/grafana_dashboard_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.25/images/grafana_dashboard_3.png -------------------------------------------------------------------------------- /versioned_docs/version-1.25/images/grafana_dashboard_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.25/images/grafana_dashboard_4.png -------------------------------------------------------------------------------- /versioned_docs/version-1.25/images/tasks-policy-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.25/images/tasks-policy-hub.png -------------------------------------------------------------------------------- /versioned_docs/version-1.25/reference/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Reference", 3 | "position": 70, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.25/reference/security-hardening/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Security", 3 | "position": 70, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.25/reference/spec/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Policy specification", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.25/reference/spec/host-capabilities/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Host capabilities", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.25/tutorials/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Tutorials", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.25/tutorials/testing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Testing policies", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.25/tutorials/writing-policies/CEL/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "CEL", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.25/tutorials/writing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Writing policies", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.25/tutorials/writing-policies/go/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Go", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.25/tutorials/writing-policies/rego/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rego", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.25/tutorials/writing-policies/rego/gatekeeper/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Gatekeeper", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.25/tutorials/writing-policies/rust/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rust", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.25/tutorials/writing-policies/wasi/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "WASI", 3 | "position": 80, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.26/explanations/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Explanations", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.26/explanations/comparisons/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Comparisons", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.26/howtos/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Howtos", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.26/howtos/airgap/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Air gap", 3 | "position": 100, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.26/howtos/contribution-guide/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Contribution guide", 3 | "position": 150, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.26/howtos/policy-servers/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Configuring Policy Servers", 3 | "position": 32, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.26/howtos/security-hardening/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Security", 3 | "position": 90, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.26/howtos/telemetry/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Telemetry quick starts", 3 | "position": 120, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.26/howtos/ui-extension/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rancher UI extension", 3 | "position": 130, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.26/howtos/workarounds/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Workarounds", 3 | "position": 140, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.26/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.26/images/architecture.png -------------------------------------------------------------------------------- /versioned_docs/version-1.26/images/grafana_dashboard_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.26/images/grafana_dashboard_1.png -------------------------------------------------------------------------------- /versioned_docs/version-1.26/images/grafana_dashboard_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.26/images/grafana_dashboard_2.png -------------------------------------------------------------------------------- /versioned_docs/version-1.26/images/grafana_dashboard_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.26/images/grafana_dashboard_3.png -------------------------------------------------------------------------------- /versioned_docs/version-1.26/images/grafana_dashboard_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.26/images/grafana_dashboard_4.png -------------------------------------------------------------------------------- /versioned_docs/version-1.26/images/tasks-policy-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.26/images/tasks-policy-hub.png -------------------------------------------------------------------------------- /versioned_docs/version-1.26/reference/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Reference", 3 | "position": 70, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.26/reference/security-hardening/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Security", 3 | "position": 70, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.26/reference/spec/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Policy specification", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.26/reference/spec/host-capabilities/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Host capabilities", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.26/tutorials/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Tutorials", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.26/tutorials/testing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Testing policies", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.26/tutorials/writing-policies/CEL/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "CEL", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.26/tutorials/writing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Writing policies", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.26/tutorials/writing-policies/go/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Go", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.26/tutorials/writing-policies/rego/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rego", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.26/tutorials/writing-policies/rego/gatekeeper/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Gatekeeper", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.26/tutorials/writing-policies/rust/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rust", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.26/tutorials/writing-policies/wasi/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "WASI", 3 | "position": 80, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.27/explanations/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Explanations", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.27/explanations/comparisons/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Comparisons", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.27/howtos/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Howtos", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.27/howtos/airgap/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Air gap", 3 | "position": 100, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.27/howtos/contribution-guide/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Contribution guide", 3 | "position": 150, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.27/howtos/policy-servers/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Configuring Policy Servers", 3 | "position": 32, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.27/howtos/security-hardening/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Security", 3 | "position": 90, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.27/howtos/telemetry/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Telemetry quick starts", 3 | "position": 120, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.27/howtos/ui-extension/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rancher UI extension", 3 | "position": 130, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.27/howtos/workarounds/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Workarounds", 3 | "position": 140, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.27/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.27/images/architecture.png -------------------------------------------------------------------------------- /versioned_docs/version-1.27/images/grafana_dashboard_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.27/images/grafana_dashboard_1.png -------------------------------------------------------------------------------- /versioned_docs/version-1.27/images/grafana_dashboard_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.27/images/grafana_dashboard_2.png -------------------------------------------------------------------------------- /versioned_docs/version-1.27/images/grafana_dashboard_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.27/images/grafana_dashboard_3.png -------------------------------------------------------------------------------- /versioned_docs/version-1.27/images/grafana_dashboard_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.27/images/grafana_dashboard_4.png -------------------------------------------------------------------------------- /versioned_docs/version-1.27/images/tasks-policy-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.27/images/tasks-policy-hub.png -------------------------------------------------------------------------------- /versioned_docs/version-1.27/reference/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Reference", 3 | "position": 70, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.27/reference/security-hardening/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Security", 3 | "position": 70, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.27/reference/spec/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Policy specification", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.27/reference/spec/host-capabilities/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Host capabilities", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.27/tutorials/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Tutorials", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.27/tutorials/testing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Testing policies", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.27/tutorials/writing-policies/CEL/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "CEL", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.27/tutorials/writing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Writing policies", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.27/tutorials/writing-policies/go/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Go", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.27/tutorials/writing-policies/rego/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rego", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.27/tutorials/writing-policies/rego/gatekeeper/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Gatekeeper", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.27/tutorials/writing-policies/rust/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rust", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.27/tutorials/writing-policies/wasi/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "WASI", 3 | "position": 80, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.28/explanations/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Explanations", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.28/explanations/comparisons/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Comparisons", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.28/howtos/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Howtos", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.28/howtos/airgap/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Air gap", 3 | "position": 100, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.28/howtos/contribution-guide/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Contribution guide", 3 | "position": 150, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.28/howtos/policy-servers/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Configuring Policy Servers", 3 | "position": 32, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.28/howtos/security-hardening/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Security", 3 | "position": 90, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.28/howtos/telemetry/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Telemetry quick starts", 3 | "position": 120, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.28/howtos/ui-extension/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rancher UI extension", 3 | "position": 130, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.28/howtos/workarounds/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Workarounds", 3 | "position": 140, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.28/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.28/images/architecture.png -------------------------------------------------------------------------------- /versioned_docs/version-1.28/images/grafana_dashboard_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.28/images/grafana_dashboard_1.png -------------------------------------------------------------------------------- /versioned_docs/version-1.28/images/grafana_dashboard_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.28/images/grafana_dashboard_2.png -------------------------------------------------------------------------------- /versioned_docs/version-1.28/images/grafana_dashboard_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.28/images/grafana_dashboard_3.png -------------------------------------------------------------------------------- /versioned_docs/version-1.28/images/grafana_dashboard_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.28/images/grafana_dashboard_4.png -------------------------------------------------------------------------------- /versioned_docs/version-1.28/images/tasks-policy-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.28/images/tasks-policy-hub.png -------------------------------------------------------------------------------- /versioned_docs/version-1.28/reference/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Reference", 3 | "position": 70, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.28/reference/security-hardening/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Security", 3 | "position": 70, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.28/reference/spec/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Policy specification", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.28/reference/spec/host-capabilities/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Host capabilities", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.28/tutorials/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Tutorials", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.28/tutorials/testing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Testing policies", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.28/tutorials/writing-policies/CEL/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "CEL", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.28/tutorials/writing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Writing policies", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.28/tutorials/writing-policies/go/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Go", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.28/tutorials/writing-policies/rego/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rego", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.28/tutorials/writing-policies/rego/gatekeeper/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Gatekeeper", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.28/tutorials/writing-policies/rust/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rust", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.28/tutorials/writing-policies/wasi/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "WASI", 3 | "position": 80, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.29/explanations/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Explanations", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.29/explanations/comparisons/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Comparisons", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.29/howtos/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Howtos", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.29/howtos/airgap/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Air gap", 3 | "position": 100, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.29/howtos/contribution-guide/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Contribution guide", 3 | "position": 150, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.29/howtos/policy-servers/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Configuring Policy Servers", 3 | "position": 32, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.29/howtos/security-hardening/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Security", 3 | "position": 90, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.29/howtos/telemetry/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Telemetry quick starts", 3 | "position": 120, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.29/howtos/ui-extension/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rancher UI extension", 3 | "position": 130, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.29/howtos/workarounds/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Workarounds", 3 | "position": 140, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.29/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.29/images/architecture.png -------------------------------------------------------------------------------- /versioned_docs/version-1.29/images/grafana_dashboard_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.29/images/grafana_dashboard_1.png -------------------------------------------------------------------------------- /versioned_docs/version-1.29/images/grafana_dashboard_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.29/images/grafana_dashboard_2.png -------------------------------------------------------------------------------- /versioned_docs/version-1.29/images/grafana_dashboard_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.29/images/grafana_dashboard_3.png -------------------------------------------------------------------------------- /versioned_docs/version-1.29/images/grafana_dashboard_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.29/images/grafana_dashboard_4.png -------------------------------------------------------------------------------- /versioned_docs/version-1.29/images/tasks-policy-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.29/images/tasks-policy-hub.png -------------------------------------------------------------------------------- /versioned_docs/version-1.29/reference/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Reference", 3 | "position": 70, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.29/reference/security-hardening/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Security", 3 | "position": 70, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.29/reference/spec/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Policy specification", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.29/reference/spec/host-capabilities/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Host capabilities", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.29/tutorials/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Tutorials", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.29/tutorials/testing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Testing policies", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.29/tutorials/writing-policies/CEL/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "CEL", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.29/tutorials/writing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Writing policies", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.29/tutorials/writing-policies/go/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Go", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.29/tutorials/writing-policies/rego/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rego", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.29/tutorials/writing-policies/rego/gatekeeper/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Gatekeeper", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.29/tutorials/writing-policies/rust/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rust", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.29/tutorials/writing-policies/wasi/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "WASI", 3 | "position": 80, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.30/explanations/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Explanations", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.30/explanations/comparisons/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Comparisons", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.30/howtos/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Howtos", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.30/howtos/airgap/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Air gap", 3 | "position": 100, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.30/howtos/contribution-guide/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Contribution guide", 3 | "position": 150, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.30/howtos/policy-servers/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Configuring Policy Servers", 3 | "position": 32, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.30/howtos/security-hardening/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Security", 3 | "position": 90, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.30/howtos/telemetry/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Telemetry quick starts", 3 | "position": 120, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.30/howtos/ui-extension/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rancher UI extension", 3 | "position": 130, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.30/howtos/workarounds/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Workarounds", 3 | "position": 140, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.30/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.30/images/architecture.png -------------------------------------------------------------------------------- /versioned_docs/version-1.30/images/grafana_dashboard_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.30/images/grafana_dashboard_1.png -------------------------------------------------------------------------------- /versioned_docs/version-1.30/images/grafana_dashboard_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.30/images/grafana_dashboard_2.png -------------------------------------------------------------------------------- /versioned_docs/version-1.30/images/grafana_dashboard_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.30/images/grafana_dashboard_3.png -------------------------------------------------------------------------------- /versioned_docs/version-1.30/images/grafana_dashboard_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.30/images/grafana_dashboard_4.png -------------------------------------------------------------------------------- /versioned_docs/version-1.30/images/tasks-policy-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.30/images/tasks-policy-hub.png -------------------------------------------------------------------------------- /versioned_docs/version-1.30/reference/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Reference", 3 | "position": 70, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.30/reference/security-hardening/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Security", 3 | "position": 70, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.30/reference/spec/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Policy specification", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.30/reference/spec/host-capabilities/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Host capabilities", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.30/tutorials/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Tutorials", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.30/tutorials/testing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Testing policies", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.30/tutorials/writing-policies/CEL/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "CEL", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.30/tutorials/writing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Writing policies", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.30/tutorials/writing-policies/go/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Go", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.30/tutorials/writing-policies/rego/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rego", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.30/tutorials/writing-policies/rego/gatekeeper/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Gatekeeper", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.30/tutorials/writing-policies/rust/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rust", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.30/tutorials/writing-policies/typescript/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "TypeScript", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.30/tutorials/writing-policies/wasi/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "WASI", 3 | "position": 80, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.31/explanations/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Explanations", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.31/explanations/comparisons/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Comparisons", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.31/howtos/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Howtos", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.31/howtos/airgap/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Air gap", 3 | "position": 100, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.31/howtos/contribution-guide/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Contribution guide", 3 | "position": 150, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.31/howtos/policy-servers/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Configuring Policy Servers", 3 | "position": 32, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.31/howtos/security-hardening/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Security", 3 | "position": 90, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.31/howtos/telemetry/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Telemetry quick starts", 3 | "position": 120, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.31/howtos/ui-extension/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rancher UI extension", 3 | "position": 130, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.31/howtos/workarounds/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Workarounds", 3 | "position": 140, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.31/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.31/images/architecture.png -------------------------------------------------------------------------------- /versioned_docs/version-1.31/images/grafana_dashboard_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.31/images/grafana_dashboard_1.png -------------------------------------------------------------------------------- /versioned_docs/version-1.31/images/grafana_dashboard_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.31/images/grafana_dashboard_2.png -------------------------------------------------------------------------------- /versioned_docs/version-1.31/images/grafana_dashboard_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.31/images/grafana_dashboard_3.png -------------------------------------------------------------------------------- /versioned_docs/version-1.31/images/grafana_dashboard_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.31/images/grafana_dashboard_4.png -------------------------------------------------------------------------------- /versioned_docs/version-1.31/images/tasks-policy-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.31/images/tasks-policy-hub.png -------------------------------------------------------------------------------- /versioned_docs/version-1.31/reference/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Reference", 3 | "position": 70, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.31/reference/security-hardening/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Security", 3 | "position": 70, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.31/reference/spec/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Policy specification", 3 | "position": 60, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.31/reference/spec/host-capabilities/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Host capabilities", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.31/tutorials/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Tutorials", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.31/tutorials/testing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Testing policies", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.31/tutorials/writing-policies/CEL/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "CEL", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.31/tutorials/writing-policies/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Writing policies", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.31/tutorials/writing-policies/go/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Go", 3 | "position": 20, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.31/tutorials/writing-policies/rego/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rego", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.31/tutorials/writing-policies/rego/gatekeeper/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Gatekeeper", 3 | "position": 30, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.31/tutorials/writing-policies/rust/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Rust", 3 | "position": 10, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.31/tutorials/writing-policies/typescript/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "TypeScript", 3 | "position": 40, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.31/tutorials/writing-policies/wasi/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "WASI", 3 | "position": 80, 4 | "collapsed": true 5 | } 6 | -------------------------------------------------------------------------------- /versioned_docs/version-1.7/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.7/images/architecture.png -------------------------------------------------------------------------------- /versioned_docs/version-1.7/images/grafana_dashboard_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.7/images/grafana_dashboard_1.png -------------------------------------------------------------------------------- /versioned_docs/version-1.7/images/grafana_dashboard_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.7/images/grafana_dashboard_2.png -------------------------------------------------------------------------------- /versioned_docs/version-1.7/images/grafana_dashboard_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.7/images/grafana_dashboard_3.png -------------------------------------------------------------------------------- /versioned_docs/version-1.7/images/grafana_dashboard_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.7/images/grafana_dashboard_4.png -------------------------------------------------------------------------------- /versioned_docs/version-1.7/images/tasks-policy-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.7/images/tasks-policy-hub.png -------------------------------------------------------------------------------- /versioned_docs/version-1.8/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.8/images/architecture.png -------------------------------------------------------------------------------- /versioned_docs/version-1.8/images/grafana_dashboard_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.8/images/grafana_dashboard_1.png -------------------------------------------------------------------------------- /versioned_docs/version-1.8/images/grafana_dashboard_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.8/images/grafana_dashboard_2.png -------------------------------------------------------------------------------- /versioned_docs/version-1.8/images/grafana_dashboard_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.8/images/grafana_dashboard_3.png -------------------------------------------------------------------------------- /versioned_docs/version-1.8/images/grafana_dashboard_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.8/images/grafana_dashboard_4.png -------------------------------------------------------------------------------- /versioned_docs/version-1.8/images/tasks-policy-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.8/images/tasks-policy-hub.png -------------------------------------------------------------------------------- /versioned_docs/version-1.9/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.9/images/architecture.png -------------------------------------------------------------------------------- /versioned_docs/version-1.9/images/grafana_dashboard_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.9/images/grafana_dashboard_1.png -------------------------------------------------------------------------------- /versioned_docs/version-1.9/images/grafana_dashboard_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.9/images/grafana_dashboard_2.png -------------------------------------------------------------------------------- /versioned_docs/version-1.9/images/grafana_dashboard_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.9/images/grafana_dashboard_3.png -------------------------------------------------------------------------------- /versioned_docs/version-1.9/images/grafana_dashboard_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.9/images/grafana_dashboard_4.png -------------------------------------------------------------------------------- /versioned_docs/version-1.9/images/tasks-policy-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubewarden/docs/HEAD/versioned_docs/version-1.9/images/tasks-policy-hub.png -------------------------------------------------------------------------------- /versioned_sidebars/version-1.11-sidebars.json: -------------------------------------------------------------------------------- 1 | { 2 | "docs": [ 3 | { 4 | "type": "autogenerated", 5 | "dirName": "." 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /versioned_sidebars/version-1.12-sidebars.json: -------------------------------------------------------------------------------- 1 | { 2 | "docs": [ 3 | { 4 | "type": "autogenerated", 5 | "dirName": "." 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /versioned_sidebars/version-1.13-sidebars.json: -------------------------------------------------------------------------------- 1 | { 2 | "docs": [ 3 | { 4 | "type": "autogenerated", 5 | "dirName": "." 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /versioned_sidebars/version-1.14-sidebars.json: -------------------------------------------------------------------------------- 1 | { 2 | "docs": [ 3 | { 4 | "type": "autogenerated", 5 | "dirName": "." 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /versioned_sidebars/version-1.15-sidebars.json: -------------------------------------------------------------------------------- 1 | { 2 | "docs": [ 3 | { 4 | "type": "autogenerated", 5 | "dirName": "." 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /versioned_sidebars/version-1.16-sidebars.json: -------------------------------------------------------------------------------- 1 | { 2 | "docs": [ 3 | { 4 | "type": "autogenerated", 5 | "dirName": "." 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /versioned_sidebars/version-1.17-sidebars.json: -------------------------------------------------------------------------------- 1 | { 2 | "docs": [ 3 | { 4 | "type": "autogenerated", 5 | "dirName": "." 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /versioned_sidebars/version-1.18-sidebars.json: -------------------------------------------------------------------------------- 1 | { 2 | "docs": [ 3 | { 4 | "type": "autogenerated", 5 | "dirName": "." 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /versioned_sidebars/version-1.19-sidebars.json: -------------------------------------------------------------------------------- 1 | { 2 | "docs": [ 3 | { 4 | "type": "autogenerated", 5 | "dirName": "." 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /versioned_sidebars/version-1.20-sidebars.json: -------------------------------------------------------------------------------- 1 | { 2 | "docs": [ 3 | { 4 | "type": "autogenerated", 5 | "dirName": "." 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /versioned_sidebars/version-1.21-sidebars.json: -------------------------------------------------------------------------------- 1 | { 2 | "docs": [ 3 | { 4 | "type": "autogenerated", 5 | "dirName": "." 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /versioned_sidebars/version-1.22-sidebars.json: -------------------------------------------------------------------------------- 1 | { 2 | "docs": [ 3 | { 4 | "type": "autogenerated", 5 | "dirName": "." 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /versioned_sidebars/version-1.23-sidebars.json: -------------------------------------------------------------------------------- 1 | { 2 | "docs": [ 3 | { 4 | "type": "autogenerated", 5 | "dirName": "." 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /versioned_sidebars/version-1.24-sidebars.json: -------------------------------------------------------------------------------- 1 | { 2 | "docs": [ 3 | { 4 | "type": "autogenerated", 5 | "dirName": "." 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /versioned_sidebars/version-1.25-sidebars.json: -------------------------------------------------------------------------------- 1 | { 2 | "docs": [ 3 | { 4 | "type": "autogenerated", 5 | "dirName": "." 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /versioned_sidebars/version-1.26-sidebars.json: -------------------------------------------------------------------------------- 1 | { 2 | "docs": [ 3 | { 4 | "type": "autogenerated", 5 | "dirName": "." 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /versioned_sidebars/version-1.27-sidebars.json: -------------------------------------------------------------------------------- 1 | { 2 | "docs": [ 3 | { 4 | "type": "autogenerated", 5 | "dirName": "." 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /versioned_sidebars/version-1.28-sidebars.json: -------------------------------------------------------------------------------- 1 | { 2 | "docs": [ 3 | { 4 | "type": "autogenerated", 5 | "dirName": "." 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /versioned_sidebars/version-1.29-sidebars.json: -------------------------------------------------------------------------------- 1 | { 2 | "docs": [ 3 | { 4 | "type": "autogenerated", 5 | "dirName": "." 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /versioned_sidebars/version-1.30-sidebars.json: -------------------------------------------------------------------------------- 1 | { 2 | "docs": [ 3 | { 4 | "type": "autogenerated", 5 | "dirName": "." 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /versioned_sidebars/version-1.31-sidebars.json: -------------------------------------------------------------------------------- 1 | { 2 | "docs": [ 3 | { 4 | "type": "autogenerated", 5 | "dirName": "." 6 | } 7 | ] 8 | } 9 | --------------------------------------------------------------------------------