Deploy a Data Plane
In order to bind a Kong DataPlane
to a Konnect ControlPlane
, you can use the KonnectExtension
(CRD reference can be found here).
Create the DataPlane
Configure a Kong DataPlane
by using your KonnectExtension
reference.
echo '
apiVersion: gateway-operator.konghq.com/v1beta1
kind: DataPlane
metadata:
name: dataplane-example
spec:
extensions:
- kind: KonnectExtension
name: my-konnect-config
group: konnect.konghq.com
deployment:
podTemplateSpec:
spec:
containers:
- name: proxy
image: kong/kong-gateway:3.10.0.0
' | kubectl apply -f -