J release changes
[ric-plt/ric-dep.git] / helm / infrastructure / subcharts / kong / example-values / minimal-kong-hybrid-data.yaml
1 # Basic configuration for Kong as a hybrid mode data plane node.
2 # It depends on the presence of a control plane release, as shown in
3 # https://github.com/Kong/charts/blob/main/charts/kong/example-values/minimal-kong-hybrid-control.yaml
4 #
5 # The "env.cluster_control_plane" value must be changed to your control plane
6 # instance's cluster Service hostname. Search "CHANGEME" to find it in this
7 # example.
8 #
9 # Hybrid mode requires a certificate. See https://github.com/Kong/charts/blob/main/charts/kong/README.md#certificates
10 # to create one.
11
12 image:
13   repository: kong
14   tag: "3.5"
15
16 env:
17   prefix: /kong_prefix/
18   database: "off"
19   role: data_plane
20   cluster_control_plane: CHANGEME-control-service.CHANGEME-namespace.svc.cluster.local:8005
21   lua_ssl_trusted_certificate: /etc/secrets/kong-cluster-cert/tls.crt
22   cluster_cert: /etc/secrets/kong-cluster-cert/tls.crt
23   cluster_cert_key: /etc/secrets/kong-cluster-cert/tls.key
24
25 admin:
26   enabled: false
27
28 secretVolumes:
29 - kong-cluster-cert
30
31 ingressController:
32   enabled: false