J release changes
[ric-plt/ric-dep.git] / helm / infrastructure / subcharts / kong / example-values / minimal-kong-hybrid-control.yaml
1 # Basic configuration for Kong without the ingress controller, using the Postgres subchart
2 # This installation does not create an Ingress or LoadBalancer Service for
3 # the Admin API. It requires port-forwards to access without further
4 # configuration to add them, e.g.:
5 # kubectl port-forward deploy/your-deployment-kong 8001:8001
6
7 image:
8   repository: kong
9   tag: "3.5"
10
11 env:
12   prefix: /kong_prefix/
13   database: postgres
14   role: control_plane
15   cluster_cert: /etc/secrets/kong-cluster-cert/tls.crt
16   cluster_cert_key: /etc/secrets/kong-cluster-cert/tls.key
17
18 admin:
19   enabled: true
20   http:
21     enabled: true
22     servicePort: 8001
23     containerPort: 8001
24
25 cluster:
26   enabled: true
27   tls:
28     enabled: true
29     servicePort: 8005
30     containerPort: 8005
31
32 proxy:
33   enabled: false
34
35 secretVolumes:
36 - kong-cluster-cert
37
38 postgresql:
39   enabled: true
40   auth:
41     username: kong
42     database: kong
43
44 ingressController:
45   enabled: false