J release changes
[ric-plt/ric-dep.git] / helm / infrastructure / subcharts / kong / example-values / minimal-kong-enterprise-hybrid-control.yaml
1 # Basic configuration for Kong Enterprise 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 # Before installing:
7 # * Several settings (search for the string "CHANGEME") require user-provided
8 #   Secrets. These Secrets must be created before installation.
9 # * Ensure that your session configurations create cookies that are usable
10 #   across your services. The admin session configuration must create cookies
11 #   that are sent to both the admin API and Kong Manager, and any Dev Portal
12 #   instances with authentication must create cookies that are sent to both
13 #   the Portal and Portal API.
14
15 image:
16   repository: kong/kong-gateway
17   tag: "3.5"
18
19 env:
20   database: postgres
21   role: control_plane
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: true
27   http:
28     enabled: true
29
30 cluster:
31   enabled: true
32   tls:
33     enabled: true
34
35 clustertelemetry:
36   enabled: true
37   tls:
38     containerPort: 8006
39     enabled: true
40     servicePort: 8006
41     type: ClusterIP
42
43 proxy:
44   enabled: false
45
46 secretVolumes:
47 - kong-cluster-cert
48
49 postgresql:
50   enabled: true
51
52 ingressController:
53   enabled: false
54
55 enterprise:
56   enabled: true
57   # See instructions regarding enterprise licenses at https://github.com/Kong/charts/blob/master/charts/kong/README.md#kong-enterprise-license
58   license_secret: kong-enterprise-license # CHANGEME
59   vitals:
60     enabled: false
61
62 portal:
63   enabled: false
64
65 portalapi:
66   enabled: false