J release changes
[ric-plt/ric-dep.git] / helm / infrastructure / subcharts / kong / example-values / minimal-k4k8s-with-kong-enterprise.yaml
1 # Basic values.yaml for Kong for Kubernetes with Kong Enterprise
2 # Several settings (search for the string "CHANGEME") require user-provided
3 # Secrets. These Secrets must be created before installation.
4 #
5 # This installation does not create an Ingress or LoadBalancer Service for
6 # the Admin API or Kong Manager. They require port-forwards to access without
7 # further configuration to add them:
8 # kubectl port-forward deploy/your-deployment-kong 8001:8001 8002:8002
9
10 image:
11   repository: kong/kong-gateway
12   tag: "3.5"
13
14 admin:
15   enabled: true
16   http:
17     enabled: true
18     servicePort: 8001
19     containerPort: 8001
20
21 enterprise:
22   enabled: true
23   # CHANGEME: https://github.com/Kong/charts/blob/main/charts/kong/README.md#kong-enterprise-license
24   license_secret: kong-enterprise-license
25   vitals:
26     enabled: false
27   portal:
28     enabled: false
29   rbac:
30     enabled: false
31   smtp:
32     enabled: false
33
34 portal:
35   enabled: false
36
37 portalapi:
38   enabled: false
39
40 env:
41   prefix: /kong_prefix/
42   database: postgres
43   password:
44     valueFrom:
45       secretKeyRef:
46         name: kong-enterprise-superuser-password #CHANGEME
47         key: password #CHANGEME
48
49 postgresql:
50   enabled: true
51   auth:
52     username: kong
53     database: kong
54
55 ingressController:
56   enabled: true