kubewarden / ingress-policy

Policy to enforce requirements on Kubernetes Ingress resources.
https://kubewarden.io
Apache License 2.0
4 stars 3 forks source link
hacktoberfest ingress ingresses-resources kubernetes kubernetes-security kubewarden-policy policy-as-code webassembly

Kubewarden Policy Repository Stable

Kubewarden policy that allows to restrict ingress resources.

What the policy allows to restrict

The policy configuration allows to set several properties:

If allowPorts and denyPorts are provided together (and are not empty), denyPorts is prioritized.

Examples

{
  "requireTLS": true
}
{
  "requireTLS": true,
  "denyPorts": [80]
}
{
  "requireTLS": true,
  "allowPorts": [443]
}