J release changes
[ric-plt/ric-dep.git] / helm / infrastructure / subcharts / kong / example-values / minimal-kong-standalone.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
15 admin:
16   enabled: true
17   http:
18     enabled: true
19     servicePort: 8001
20     containerPort: 8001
21
22 postgresql:
23   enabled: true
24   auth:
25     username: kong
26     database: kong
27
28 ingressController:
29   enabled: false