J release changes
[ric-plt/ric-dep.git] / helm / infrastructure / subcharts / kong / example-values / minimal-kong-gd-controller.yaml
1 deployment:
2   kong:
3     enabled: false
4
5 proxy:
6   ## This must match the gateway release's proxy Service name.
7   ## The Service name uses the pattern "<release name>-kong-proxy".
8   ## In this example, the companion gateway release is named "gw"
9   nameOverride: gw-kong-proxy
10
11 ingressController:
12   enabled: true
13
14   gatewayDiscovery:
15     enabled: true
16     adminApiService:
17       ## This must match the gateway release's admin Service name.
18       ## The Service name uses the pattern "<release name>-kong-admin".
19       ## In this example, the companion gateway release is named "gw"
20       name: gw-kong-admin
21
22   adminApi:
23     tls:
24       client:
25         # Enable TLS client authentication for the Admin API.
26         enabled: true
27         # We're specifying the name of the secret to have a static name that we
28         # will use in the gateway release.
29         caSecretName: "admin-api-ca-cert"
30
31   env:
32     # This must match the gateway release's proxy Service HTTPs port name.
33     kong_admin_svc_port_names: "kong-admin-tls"