-
I want to setup Kong (Enterprise with trial license) in Hybrid Mode. The CP is up and running. While the DP tries to start I get the following error:
The installation is done using Helm with the following configuration: image:
repository: kong/kong-gateway
secretVolumes:
- kong-cluster-cert
env:
role: data_plane
cluster_cert: /etc/secrets/kong-cluster-cert/tls.crt
cluster_cert_key: /etc/secrets/kong-cluster-cert/tls.key
admin_api_uri: https://admin.dev.kong.example.com
admin_gui_url: https://manager.dev.kong.example.com
lua_ssl_trusted_certificate: /etc/secrets/kong-cluster-cert/tls.crt
cluster_server_name: cluster.dev.kong.example.com
cluster_control_plane: cluster.dev.kong.example.com:443
admin_listen: cluster.dev.kong.example.com:443
database: "off"
admin:
enabled: false As you can see I want to configure the DP to connect to the CP using a Domain. The CP runs in a different Kubernetes Cluster. The CP exposes the cluster endpoint on Why is Kong DP still trying to fetch anything from localhost? I added the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Whoops. This was due to fact that the DP had the ingress controller enabled. Adding |
Beta Was this translation helpful? Give feedback.
Whoops. This was due to fact that the DP had the ingress controller enabled. Adding
ingressController.enabled: false
helped.