J release changes
[ric-plt/ric-dep.git] / helm / infrastructure / subcharts / kong / ci / test5-values.yaml
1 # This tests the following unrelated aspects of Ingress Controller
2 # - ingressController deploys with a database
3 # - TODO remove this test when https://github.com/Kong/charts/issues/295 is solved
4 #   and its associated wait-for-db workaround is removed.
5 #   This test is similar to test2-values.yaml, but lacks a stream listen.
6 #   wait-for-db will _not_ create a socket file. This test ensures the workaround
7 #   does not interfere with startup when there is no file to remove.
8
9 ingressController:
10   enabled: true
11   env:
12     anonymous_reports: "false"
13 postgresql:
14   enabled: true
15   auth:
16     username: kong
17     password: kong
18   service:
19     ports:
20       postgresql: 5432
21 env:
22   anonymous_reports: "off"
23   database: "postgres"
24 # Added example for customEnv
25 customEnv:
26   client_id: "exampleId"
27 # - ingress resources are created without hosts
28 admin:
29   ingress:
30     enabled: true
31     hosts: []
32     path: /
33 proxy:
34   ingress:
35     enabled: true
36     hostname: proxy.kong.example
37     annotations: {}
38     path: /
39
40 # update strategy
41 updateStrategy:
42   type: "RollingUpdate"
43   rollingUpdate:
44     maxSurge: 1
45     maxUnavailable: 0