Deploy Kong Gateway in Hybrid Mode

Prerequisites

To get started with a Hybrid mode deployment, first install an instance of Kong Gateway with TLS to be your Control Plane (CP) node. See the installation documentation for details.

We will bring up any subsequent Data Plane (DP) instances in this topic.

Note: For a Hybrid mode deployment on Kubernetes, see Hybrid mode in the kong/charts repository.

Generate a certificate/key pair

In Hybrid mode, a mutual TLS handshake (mTLS) is used for authentication so the actual private key is never transferred on the network, and communication between CP and DP nodes is secure.

Before using Hybrid mode, you need a certificate/key pair. Kong Gateway provides two modes for handling certificate/key pairs:

  • Shared mode: (Default) Use the Kong CLI to generate a certificate/key pair, then distribute copies across nodes. The certificate/key pair is shared by both CP and DP nodes.
  • PKI mode: Provide certificates signed by a central certificate authority (CA). Kong validates both sides by checking if they are from the same CA. This eliminates the risks associated with transporting private keys.

Warning: If you have a TLS-aware proxy between the DP and CP nodes, you must use PKI mode and set cluster_server_name to the CP hostname in kong.conf. Do not use shared mode, as it uses a non-standard value for TLS server name indication, and this will confuse TLS-aware proxies that rely on SNI to route traffic.

For a breakdown of the properties used by these modes, see the configuration reference.

Shared mode

PKI mode

Warning: Protect the Private Key. Ensure the private key file can only be accessed by Kong nodes belonging to the cluster. If the key is compromised, you must regenerate and replace certificates and keys on all CP and DP nodes.

  1. On an existing Kong Gateway instance, create a certificate/key pair:

    1. kong hybrid gen_cert

    This will generate cluster.crt and cluster.key files and save them to the current directory. By default, the certificate/key pair is valid for three years, but can be adjusted with the --days option. See kong hybrid --help for more usage information.

  2. Copy the cluster.crt and cluster.key files to the same directory on all Kong CP and DP nodes; e.g., /cluster/cluster. Set appropriate permissions on the key file so it can only be read by Kong.

With PKI mode, the Hybrid cluster can use certificates signed by a central certificate authority (CA).

In this mode, the Control Plane and Data Plane don’t need to use the same cluster_cert and cluster_cert_key. Instead, Kong validates both sides by checking if they are from the same CA.

Prepare your CA certificates on the hosts where Kong will be running.

CA Certificate Example

CA Certificate on CP

CA Certificate on DP

Typically, a CA certificate will look like this:

  1. Certificate:
  2. Data:
  3. Version: 3 (0x2)
  4. Serial Number:
  5. 5d:29:73:bf:c3:da:5f:60:69:da:73:ed:0e:2e:97:6f:7f:4c:db:4b
  6. Signature Algorithm: ecdsa-with-SHA256
  7. Issuer: O = Kong Inc., CN = Hybrid Root CA
  8. Validity
  9. Not Before: Jul 7 12:36:10 2020 GMT
  10. Not After : Jul 7 12:36:40 2023 GMT
  11. Subject: O = Kong Inc., CN = Hybrid Root CA
  12. Subject Public Key Info:
  13. Public Key Algorithm: id-ecPublicKey
  14. Public-Key: (256 bit)
  15. pub:
  16. 04:df:49:9f:39:e6:2c:52:9f:46:7a:df:ae:7b:9b:
  17. 87:1e:76:bb:2e:1d:9c:61:77:07:e5:8a:ba:34:53:
  18. 3a:27:4c:1e:76:23:b4:a2:08:80:b4:1f:18:7a:0b:
  19. 79:de:ea:8c:23:94:e6:2f:57:cf:27:b4:0a:52:59:
  20. 90:2c:2b:86:03
  21. ASN1 OID: prime256v1
  22. NIST CURVE: P-256
  23. X509v3 extensions:
  24. X509v3 Key Usage: critical
  25. Certificate Sign, CRL Sign
  26. X509v3 Basic Constraints: critical
  27. CA:TRUE
  28. X509v3 Subject Key Identifier:
  29. 8A:0F:07:61:1A:0F:F4:B4:5D:B7:F3:B7:28:D1:C5:4B:81:A2:B9:25
  30. X509v3 Authority Key Identifier:
  31. keyid:8A:0F:07:61:1A:0F:F4:B4:5D:B7:F3:B7:28:D1:C5:4B:81:A2:B9:25
  32. Signature Algorithm: ecdsa-with-SHA256
  33. 30:45:02:20:68:3c:d1:f3:63:a2:aa:b4:59:c9:52:af:33:b7:
  34. 3f:ca:3a:2b:1c:9d:87:0c:c0:47:ff:a2:c4:af:3e:b0:36:29:
  35. 02:21:00:86:ce:d0:fc:ba:92:e9:59:16:1c:c3:b2:11:11:ed:
  36. 01:5d:16:49:d0:f9:0c:1d:35:0d:40:ba:19:98:31:76:57

Here is an example of a CA certificate on a Control Plane:

  1. Certificate:
  2. Data:
  3. Version: 3 (0x2)
  4. Serial Number:
  5. 18:cc:a3:6b:aa:77:0a:69:c6:d5:ff:12:be:be:c0:ac:5c:ff:f1:1e
  6. Signature Algorithm: ecdsa-with-SHA256
  7. Issuer: CN = Hybrid Intermediate CA
  8. Validity
  9. Not Before: Jul 31 00:59:29 2020 GMT
  10. Not After : Oct 29 00:59:59 2020 GMT
  11. Subject: CN = control-plane.kong.yourcorp.tld
  12. Subject Public Key Info:
  13. Public Key Algorithm: id-ecPublicKey
  14. Public-Key: (256 bit)
  15. pub:
  16. 04:f8:3a:a9:d2:e2:79:19:19:f3:1c:58:a0:23:60:
  17. 78:04:1f:7e:e2:bb:60:d2:29:50:ad:7c:9b:8e:22:
  18. 1c:54:c2:ce:68:b8:6c:8a:f6:92:9d:0c:ce:08:d3:
  19. aa:0c:20:67:41:32:18:63:c9:dd:50:31:60:d6:8b:
  20. 8d:f9:7b:b5:37
  21. ASN1 OID: prime256v1
  22. NIST CURVE: P-256
  23. X509v3 extensions:
  24. X509v3 Key Usage: critical
  25. Digital Signature, Key Encipherment, Key Agreement
  26. X509v3 Extended Key Usage:
  27. TLS Web Client Authentication
  28. X509v3 Subject Key Identifier:
  29. 70:C7:F0:3B:CD:EB:8D:1B:FF:6A:7C:E0:A4:F0:C6:4C:4A:19:B8:7F
  30. X509v3 Authority Key Identifier:
  31. keyid:16:0D:CF:92:3B:31:B0:61:E5:AB:EE:91:42:B9:60:56:0A:88:92:82
  32. X509v3 Subject Alternative Name:
  33. DNS:control-plane.kong.yourcorp.tld, DNS:alternate-control-plane.kong.yourcorp.tld
  34. X509v3 CRL Distribution Points:
  35. Full Name:
  36. URI:https://crl-service.yourcorp.tld/v1/pki/crl
  37. Signature Algorithm: ecdsa-with-SHA256
  38. 30:44:02:20:5d:dd:ec:a8:4f:e7:5b:7d:2f:3f:ec:b5:40:d7:
  39. de:5e:96:e1:db:b7:73:d6:84:2e:be:89:93:77:f1:05:07:f3:
  40. 02:20:16:56:d9:90:06:cf:98:07:87:33:dc:ef:f4:cc:6b:d1:
  41. 19:8f:64:ee:82:a6:e8:e6:de:57:a7:24:82:72:82:49

Here is an example of a CA certificate on a Data Plane:

  1. Certificate:
  2. Data:
  3. Version: 3 (0x2)
  4. Serial Number:
  5. 4d:8b:eb:89:a2:ed:b5:29:80:94:31:e4:94:86:ce:4f:98:5a:ad:a0
  6. Signature Algorithm: ecdsa-with-SHA256
  7. Issuer: CN = Hybrid Intermediate CA
  8. Validity
  9. Not Before: Jul 31 00:57:01 2020 GMT
  10. Not After : Oct 29 00:57:31 2020 GMT
  11. Subject: CN = kong-dp-ce39edecp.service
  12. Subject Public Key Info:
  13. Public Key Algorithm: id-ecPublicKey
  14. Public-Key: (256 bit)
  15. pub:
  16. 04:19:51:80:4c:6d:8c:a8:05:63:42:71:a2:9a:23:
  17. 34:34:92:c6:2a:d3:e5:15:6e:36:44:85:64:0a:4c:
  18. 12:16:82:3f:b7:4c:e1:a1:5a:49:5d:4c:5e:af:3c:
  19. c1:37:e7:91:e2:b5:52:41:a0:51:ac:13:7b:cc:69:
  20. 93:82:9b:2f:e2
  21. ASN1 OID: prime256v1
  22. NIST CURVE: P-256
  23. X509v3 extensions:
  24. X509v3 Key Usage: critical
  25. Digital Signature, Key Encipherment, Key Agreement
  26. X509v3 Extended Key Usage:
  27. TLS Web Client Authentication
  28. X509v3 Subject Key Identifier:
  29. 25:82:8C:93:85:35:C3:D6:34:CF:CB:7B:D6:14:97:46:84:B9:2B:87
  30. X509v3 Authority Key Identifier:
  31. keyid:16:0D:CF:92:3B:31:B0:61:E5:AB:EE:91:42:B9:60:56:0A:88:92:82
  32. X509v3 CRL Distribution Points:
  33. Full Name:
  34. URI:https://crl-service.yourcorp.tld/v1/pki/crl
  35. Signature Algorithm: ecdsa-with-SHA256
  36. 30:44:02:20:65:2f:5e:30:f7:a4:28:14:88:53:58:c5:85:24:
  37. 35:50:25:c9:fe:db:2f:72:9f:ad:7d:a0:67:67:36:32:2b:d2:
  38. 02:20:2a:27:7d:eb:75:a6:ee:65:8b:f1:66:a4:99:32:56:7c:
  39. ad:ca:3a:d5:50:8f:cf:aa:6d:c2:1c:af:a4:ca:75:e8

Note: Certificates on CP and DP must contain the TLS Web Server Authentication and TLS Web Client Authentication as X509v3 Extended Key Usage extension, respectively.

Kong doesn’t validate the CommonName (CN) in the DP certificate; it can take an arbitrary value.

Set up the control plane

Next, give the Control Plane node the control_plane role, and set certificate/key parameters to point at the location of your certificates and keys.

Using Docker

Using kong.conf

  1. In your Docker container, set the following environment variables:

    For shared certificate mode, use:

    1. KONG_ROLE=control_plane
    2. KONG_CLUSTER_CERT=/<path-to-file>/cluster.crt
    3. KONG_CLUSTER_CERT_KEY=/<path-to-file>/cluster.key

    For pki certificate mode, use:

    1. KONG_ROLE=control_plane
    2. KONG_CLUSTER_MTLS=pki
    3. KONG_CLUSTER_CA_CERT=/<path-to-file>/ca-cert.pem
    4. KONG_CLUSTER_CERT=/<path-to-file>/control-plane.crt
    5. KONG_CLUSTER_CERT_KEY=/<path-to-file>/control-plane.key

    By setting the role of the node to control_plane, this node will listen on port 0.0.0.0:8005 by default for Data Plane connections, and on port 0.0.0.0:8006 for telemetry data. These ports on the Control Plane will need to be accessible by all Data Planes it controls through any firewalls you may have in place.

    For PKI mode, KONG_CLUSTER_CA_CERT specifies the root CA certificate for KONG_CLUSTER_CERT and KONG_CLUSTER_CERT_KEY. This certificate must be the root CA certificate and not any of an intermediate CA. Kong allows a maximum of three levels of intermediate CAs to be used between the root CA and the cluster certificate.

    If you need to change the ports that the Control Plane listens on, set:

    1. KONG_CLUSTER_LISTEN=0.0.0.0:<port>
    2. KONG_CLUSTER_TELEMETRY_LISTEN=0.0.0.0:<port>
  2. Next, start Kong, or reload Kong if it’s already running:

    1. kong start
    1. kong reload
  3. In kong.conf, set the following configuration parameters:

    For shared certificate mode, use:

    1. role = control_plane
    2. cluster_cert = /<path-to-file>/cluster.crt
    3. cluster_cert_key = /<path-to-file>/cluster.key

    For pki certificate mode, use:

    1. role = control_plane
    2. cluster_mtls = pki
    3. cluster_ca_cert = /<path-to-file>/ca-cert.pem
    4. cluster_cert = /<path-to-file>/control-plane.crt
    5. cluster_cert_key = /<path-to-file>/control-plane.key

    By setting the role of the node to control_plane, this node will listen on port 0.0.0.0:8005 by default for Data Plane connections, and on port 0.0.0.0:8006 for telemetry data. These ports on the Control Plane will need to be accessible by all Data Planes it controls through any firewalls you may have in place.

    For PKI mode, cluster_ca_cert specifies the root CA certificate for cluster_cert and cluster_cert_key. This certificate must be the root CA certificate and not any of an intermediate CA. Kong allows a maximum of three levels of intermediate CAs to be used between the root CA and the cluster certificate.

    If you need to change the ports that the Control Plane listens on, set:

    1. cluster_listen=0.0.0.0:<port>
    2. cluster_telemetry_listen=0.0.0.0:<port>
  4. Restart Kong for the settings to take effect:

    1. kong restart

Note that the Control Plane still needs a database (Postgres or Cassandra) to store the central configurations, although the database never needs to be accessed by Data Plane nodes. You may run multiple Control Plane nodes to provide load balancing and redundancy, as long as they all point to the same backend database.

Note: Control Plane nodes cannot be used for proxying.

(Optional) Revocation checks of Data Plane certificates

When Kong is running Hybrid mode with PKI mode, the Control Plane can be configured to optionally check for revocation status of the connecting Data Plane certificate.

The supported method is through Online Certificate Status Protocol (OCSP) responders. Issued data plane certificates must contain the Certificate Authority Information Access extension that references the URI of OCSP responder that can be reached from the Control Plane.

To enable OCSP checks, set the cluster_ocsp config on the Control Plane to one of the following values:

  • on: OCSP revocation check is enabled and the Data Plane must pass the revocation check to establish connection with the Control Plane. This implies that certificates without the OCSP extension or unreachable OCSP responder also prevents a connection from being established.
  • off: OCSP revocation check is disabled (default).
  • optional: OCSP revocation check will be attempted, however, if the OCSP responder URI is not found inside the Data Plane-provided certificate or communication with the OCSP responder failed, then Data Plane is still allowed through.

Note that OCSP checks are only performed on the Control Plane against certificates provided by incoming Data Plane nodes. The cluster_ocsp config has no effect on Data Plane nodes. cluster_oscp affects all Hybrid mode connections established from a Data Plane to its Control Plane.

Install and start data planes

Now that the Control Plane is running, you can attach Data Plane nodes to it to start serving traffic.

In this step, you will give all Data Plane nodes the data_plane role, point them to the Control Plane, set certificate/key parameters to point at the location of your certificates and keys, and ensure the database is disabled.

In addition, the certificate from cluster_cert (in shared mode) or cluster_ca_cert (in pki mode) is automatically added to the trusted chain in lua_ssl_trusted_certificate.

See the DP node start sequence for more information on how data plane nodes process configuration.

Using Docker

Using kong.conf

  1. Using the Docker installation documentation, follow the instructions to:

    1. Download Kong Gateway.
    2. Create a Docker network.

    Warning: Do not start or create a database on this node.

  2. Bring up your Data Plane container with the following settings:

    For shared certificate mode, use:

    Kong Gateway

    Kong Gateway (OSS)

    1. docker run -d --name kong-dp --network=kong-net \
    2. -e "KONG_ROLE=data_plane" \
    3. -e "KONG_DATABASE=off" \
    4. -e "KONG_PROXY_LISTEN=0.0.0.0:8000" \
    5. -e "KONG_CLUSTER_CONTROL_PLANE=control-plane.<admin-hostname>.com:8005" \
    6. -e "KONG_CLUSTER_TELEMETRY_ENDPOINT=control-plane.<admin-hostname>.com:8006" \
    7. -e "KONG_CLUSTER_CERT=/<path-to-file>/cluster.crt" \
    8. -e "KONG_CLUSTER_CERT_KEY=/<path-to-file>/cluster.key" \
    9. --mount type=bind,source="$(pwd)"/cluster,target=<path-to-keys-and-certs>,readonly \
    10. -p 8000:8000 \
    11. kong/kong-gateway:2.6.0.4-alpine
    1. docker run -d --name kong-dp --network=kong-net \
    2. -e "KONG_ROLE=data_plane" \
    3. -e "KONG_DATABASE=off" \
    4. -e "KONG_PROXY_LISTEN=0.0.0.0:8000" \
    5. -e "KONG_CLUSTER_CONTROL_PLANE=control-plane.<admin-hostname>.com:8005" \
    6. -e "KONG_CLUSTER_TELEMETRY_ENDPOINT=control-plane.<admin-hostname>.com:8006" \
    7. -e "KONG_CLUSTER_CERT=/<path-to-file>/cluster.crt" \
    8. -e "KONG_CLUSTER_CERT_KEY=/<path-to-file>/cluster.key" \
    9. --mount type=bind,source="$(pwd)"/cluster,target=<path-to-keys-and-certs>,readonly \
    10. -p 8000:8000 \
    11. kong:2.6.0-alpine

    For pki certificate mode, use:

    Kong Gateway

    Kong Gateway (OSS)

    1. docker run -d --name kong-dp --network=kong-net \
    2. -e "KONG_ROLE=data_plane" \
    3. -e "KONG_DATABASE=off" \
    4. -e "KONG_PROXY_LISTEN=0.0.0.0:8000" \
    5. -e "KONG_CLUSTER_CONTROL_PLANE=control-plane.<admin-hostname>.com:8005" \
    6. -e "KONG_CLUSTER_TELEMETRY_ENDPOINT=control-plane.<admin-hostname>.com:8006" \
    7. -e "KONG_CLUSTER_MTLS=pki" \
    8. -e "KONG_CLUSTER_SERVER_NAME=control-plane.kong.yourcorp.tld" \
    9. -e "KONG_CLUSTER_CERT=data-plane.crt" \
    10. -e "KONG_CLUSTER_CERT_KEY=/<path-to-file>/data-plane.crt" \
    11. -e "KONG_CLUSTER_CA_CERT=/<path-to-file>/ca-cert.pem" \
    12. --mount type=bind,source="$(pwd)"/cluster,target=<path-to-keys-and-certs>,readonly \
    13. -p 8000:8000 \
    14. kong/kong-gateway:2.6.0.4-alpine
    1. docker run -d --name kong-dp --network=kong-net \
    2. -e "KONG_ROLE=data_plane" \
    3. -e "KONG_DATABASE=off" \
    4. -e "KONG_PROXY_LISTEN=0.0.0.0:8000" \
    5. -e "KONG_CLUSTER_CONTROL_PLANE=control-plane.<admin-hostname>.com:8005" \
    6. -e "KONG_CLUSTER_TELEMETRY_ENDPOINT=control-plane.<admin-hostname>.com:8006" \
    7. -e "KONG_CLUSTER_MTLS=pki" \
    8. -e "KONG_CLUSTER_SERVER_NAME=control-plane.kong.yourcorp.tld" \
    9. -e "KONG_CLUSTER_CERT=data-plane.crt" \
    10. -e "KONG_CLUSTER_CERT_KEY=/<path-to-file>/data-plane.crt" \
    11. -e "KONG_CLUSTER_CA_CERT=/<path-to-file>/ca-cert.pem" \
    12. --mount type=bind,source="$(pwd)"/cluster,target=<path-to-keys-and-certs>,readonly \
    13. -p 8000:8000 \
    14. kong:2.6.0-alpine

    Where:

    --name and --network

    The tag of the Kong Gateway image that you’re using, and the Docker network it communicates on.

    KONG_CLUSTER_CONTROL_PLANE

    Sets the address and port of the Control Plane (port 8005 by defaut).

    KONG_DATABASE

    Specifies whether this node connects directly to a database.

    <path-to-file> and target=<path-to-keys-and-certs>

    Are the same path, pointing to the location of the cluster.key and cluster.crt files.

    KONG_CLUSTER_SERVER_NAME

    Specifies the SNI (Server Name Indication extension) to use for Data Plane connections to the Control Plane through TLS. When not set, Data Plane will use kong_clustering as the SNI.

    You can also optionally use KONG_CLUSTER_TELEMETRY_SERVER_NAME to set a custom SNI for telemetry data. If not set, it defaults to KONG_CLUSTER_SERVER_NAME.

    KONG_CLUSTER_TELEMETRY_ENDPOINT

    Optional setting, needed for telemetry gathering. Not available in open-source deployments.

  3. If needed, bring up any subsequent Data Planes using the same settings.

  4. Find the documentation for your platform, and follow the instructions in Steps 1 and 2 only to download Kong Gateway and install Kong.

    Note: for Docker, see the Docker tab above. For Kubernetes, see the Hybrid mode documentation in the kong/charts repository.

    Do not start or create a database on this node.

  5. In kong.conf, set the following configuration parameters:

    For shared certificate mode, use:

    1. role = data_plane
    2. database = off
    3. proxy_listen = 0.0.0.0:8000
    4. cluster_control_plane = control-plane.<admin-hostname>.com:8005
    5. cluster_telemetry_endpoint = control-plane.<admin-hostname>.com:8006
    6. cluster_cert = /<path-to-file>/cluster.crt
    7. cluster_cert_key = /<path-to-file>/cluster.key

    For pki certificate mode, use:

    1. role = data_plane
    2. database = off
    3. proxy_listen = 0.0.0.0:8000
    4. cluster_control_plane = control-plane.<admin-hostname>.com:8005
    5. cluster_telemetry_endpoint = control-plane.<admin-hostname>.com:8006
    6. cluster_mtls = pki
    7. cluster_server_name = control-plane.kong.yourcorp.tld
    8. cluster_cert = /<path-to-file>/data-plane.crt
    9. cluster_cert_key = /<path-to-file>/data-plane.crt
    10. cluster_ca_cert = /<path-to-file>/ca-cert.pem

    Where:

    cluster_control_plane

    Sets the address and port of the Control Plane (port 8005 by defaut).

    database

    Specifies whether this node connects directly to a database.

    <path-to-file>

    Specifies the location of the cluster.key and cluster.crt files.

    cluster_server_name

    Specifies the SNI (Server Name Indication extension) to use for Data Plane connections to the Control Plane through TLS. When not set, Data Plane will use kong_clustering as the SNI.

    You can also optionally use cluster_telemetry_server_name to set a custom SNI for telemetry data. If not set, it defaults to cluster_server_name.

    cluster_telemetry_endpoint

    Optional setting, needed for telemetry gathering. Not available in open-source deployments.

  6. Restart Kong for the settings to take effect:

    1. kong restart

Verify that nodes are connected

Use the Control Plane’s Cluster Status API to monitor your Data Planes. It provides:

  • The name of the node
  • The last time the node synced with the Control Plane
  • The version of the config currently running on each Data Plane

To check whether the CP and DP nodes you just brought up are connected, run the following on a Control Plane:

Using cURL

Using HTTPie

  1. curl -i -X GET http://<admin-hostname>:8001/clustering/data-planes
  1. http :8001/clustering/data-planes

The output shows all of the connected Data Plane instances in the cluster:

  1. {
  2. "data": [
  3. {
  4. "config_hash": "a9a166c59873245db8f1a747ba9a80a7",
  5. "hostname": "data-plane-2",
  6. "id": "ed58ac85-dba6-4946-999d-e8b5071607d4",
  7. "ip": "192.168.10.3",
  8. "last_seen": 1580623199,
  9. "status": "connected"
  10. },
  11. {
  12. "config_hash": "a9a166c59873245db8f1a747ba9a80a7",
  13. "hostname": "data-plane-1",
  14. "id": "ed58ac85-dba6-4946-999d-e8b5071607d4",
  15. "ip": "192.168.10.4",
  16. "last_seen": 1580623200,
  17. "status": "connected"
  18. }
  19. ],
  20. "next": null
  21. }

References

DP node start sequence

When set as a DP node, Kong Gateway processes configuration in the following order:

  1. Config cache: If the file config.json.gz exists in the kong_prefix path (/usr/local/kong by default), the DP node loads it as configuration.
  2. declarative_config exists: If there is no config cache and the declarative_config parameter is set, the DP node loads the specified file.
  3. Empty config: If there is no config cache or declarative configuration file available, the node starts with empty configuration. In this state, it returns 404 to all requests.
  4. Contact CP Node: In all cases, the DP node contacts the CP node to retrieve the latest configuration. If successful, it gets stored in the local config cache (config.json.gz).

Configuration reference

Use the following configuration properties to configure Kong Gateway in Hybrid mode.

ParameterDescriptionCP or DP {:width=10%:}
role
Required
Determines whether the Kong Gateway instance is a Control Plane or a Data Plane. Valid values are control_plane or data_plane.Both
cluster_listen
Optional

Default: 0.0.0.0:8005
List of addresses and ports on which the Control Plane will listen for incoming Data Plane connections. This port is always protected with Mutual TLS (mTLS) encryption. Ignored on Data Plane nodes.CP
proxy_listen
Required
Comma-separated list of addresses and ports on which the proxy server should listen for HTTP/HTTPS traffic. Ignored on Control Plane nodes.DP
cluster_telemetry_listen
Optional

Default: 0.0.0.0:8006
List of addresses and ports on which the Control Plane will listen for Data Plane telemetry data. This port is always protected with Mutual TLS (mTLS) encryption. Ignored on Data Plane nodes.CP
cluster_telemetry_endpoint
Required for Enterprise deployments
The port that the Data Plane uses to send telemetry data to the Control Plane. Ignored on Control Plane nodes.DP
cluster_control_plane
Required
Address and port that the Data Plane nodes use to connect to the Control Plane. Must point to the port configured using the cluster_listen property on the Control Plane node. Ignored on Control Plane nodes.DP
cluster_mtls
Optional

Default: “shared”
One of “shared” or “pki”. Indicates whether Hybrid Mode will use a shared certificate/key pair for CP/DP mTLS or if PKI mode will be used. See below sections for differences in mTLS modes.Both

The following properties are used differently between shared and pki modes:

ParameterDescriptionShared Mode {:width=12%:}PKI Mode {:width=30%:}
cluster_cert and cluster_cert_key
Required
Certificate/key pair used for mTLS between CP/DP nodes.Same between CP/DP nodes.Unique certificate for each node, generated from the CA specified by cluster_ca_cert.
cluster_ca_cert
Required in PKI mode
The trusted CA certificate file in PEM format used to verify the cluster_cert.IgnoredCA certificate used to verify cluster_cert, same between CP/DP nodes. Required
cluster_server_name
Required in PKI mode
The SNI presented by the DP node mTLS handshake.IgnoredIn PKI mode, the DP nodes will also verify that the Common Name (CN) or Subject Alternative Name (SAN) inside the certificate presented by CP matches the cluster_server_name value.
cluster_telemetry_server_nameThe telemetry SNI presented by the DP node mTLS handshake. If not specified, falls back on SNI set in cluster_server_name.IgnoredIn PKI mode, the DP nodes will also verify that the Common Name (CN) or Subject Alternative Name (SAN) inside the certificate presented by CP matches the cluster_telemetry_server_name value.

Next steps

Now, you can start managing the cluster using the Control Plane. Once all instances are set up, use the Admin API on the Control Plane as usual, and these changes will be synced and updated on the Data Plane nodes automatically within seconds.