Kong Gateway Operator reconciles Gateway
resources differently to Kong Ingress Controller. Kong Gateway Operator’s approach is known as managed gateways, and the Kong Ingress Controller approach is referred to as unmanaged gateways.
When Kong Gateway Operator detects a new Gateway
, it creates a ControlPlane
(Kong Ingress Controller) and a DataPlane
(Kong Gateway). This ControlPlane
reconciles exactly one Gateway
.
As Kong Gateway Operator manages the lifecycle of Kong Gateway deployments, it can dynamically configure the DataPlane
based on information in the Gateway
listeners.
For example, when creating a Gateway with only one HTTP listener on port 80, the DataPlane
ingress service will be configured so that only port 80 will be exposed. If you add a Gateway
HTTPS listener on port 443, this change will be taken by Kong Gateway Operator and applied to the DataPlane
. The final result will be an ingress service exposing ports 80 for HTTP traffic and 443 for HTTPS traffic.
Ports 80 and 443 are examples. You can configure any combination of
Gateway
listeners that you need, and Kong Gateway Operator will configure yourDataPlane
appropriately.