Update Kong ingress controller to version 1.4. It fixes the occasional 404 error.
[ric-plt/ric-dep.git] / helm / infrastructure / subcharts / kong / ci / test2-values.yaml
1 # This tests the following unrealted aspects of Ingress Controller
2 # - ingressController deploys with a database
3 ingressController:
4   enabled: true
5 postgresql:
6   enabled: true
7   postgresqlUsername: kong
8   postgresqlDatabase: kong
9   service:
10     port: 5432
11 env:
12   database: "postgres"
13 # - ingress resources are created without hosts
14 admin:
15   type: NodePort
16   ingress:
17     enabled: true
18     hosts: []
19     path: /
20 proxy:
21   type: NodePort
22   ingress:
23     enabled: true
24     hosts: []
25     annotations: {}
26     path: /
27   useTLS: true
28
29 # - PDB is enabled
30 podDisruptionBudget:
31   enabled: true
32 # update strategy
33 updateStrategy:
34   type: "RollingUpdate"
35   rollingUpdate:
36     maxSurge: 1
37     maxUnavailable: 0