Gateway API Integration

1 minute read

By default, cert-manager GatewayAPI integration is not enabled. This is the part that monitors the Gateway API resources to issue certificates for them.

Enable the Gateway API integration:

kubectl patch deployment -n cert-manager cert-manager --type='json' --patch '
[
  {
    "op": "add",
    "path": "/spec/template/spec/containers/0/args/-",
    "value": "--enable-gateway-api"
  }
]'